/* --- CONFIGURAÇÃO BÁSICA --- */

/* Fonte Global */
body, html {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Cor padrão do texto */
}

/* Fundo e Espaçamento Global */
body {
    background: #f9f9f9; /* Fundo leve e neutro */
    line-height: 1.6; /* Espaçamento entre linhas */
}

/* Limitar a Largura do Site */
.conteiner-principal .conteiner { max-width: 100%;}


/* --- VITRINE DE PRODUTOS --- */

.vitrine-produto {
    background: #fff; /* Fundo branco para destacar produtos */
    border: 1px solid #ddd; /* Borda leve */
    border-radius: 10px; /* Bordas arredondadas */
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.vitrine-produto:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra ao passar o mouse */
    transform: translateY(-5px); /* Leve movimento ao passar o mouse */
}

.vitrine-produto img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}


.vitrine-produto .preco {
    font-size: 20px;
    font-weight: bold;
    color: #ae549e; /* Rosa como destaque */
    margin-bottom: 10px;
}

.vitrine-produto .botao-comprar {
    background: #5093c4; /* Azul */
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.vitrine-produto .botao-comprar:hover {
    background: #ae549e; /* Rosa como destaque */
    color: #fff;
}

/* --- RODAPÉ --- */

#rodape {
    background: #333; /* Fundo escuro */
    color: #5093c4; /* Texto claro */
    padding: 20px 0;
}

#rodape .conteiner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
 


/* Estilo para os links do rodapé */
#rodape a {
    color: #5093c4 !important; /* Cor padrão: Azul claro */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse */
#rodape a:hover {
    color: #ae549e !important; /* Cor ao passar o mouse: Rosa violeta */
    text-decoration: underline; /* Opcional: sublinhado no hover */
}

/* Fundo do rodapé */
#rodape {
    background-color: #5093c4 !important; /* Azul claro como fundo */
    color: #ffffff !important; /* Texto branco padrão */
}

/* Links do rodapé */
#rodape a {
    color: #ffffff !important; /* Links em branco por padrão */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Efeito ao passar o mouse */
#rodape a:hover {
    color: #ae549e !important; /* Rosa violeta no hover */
    text-decoration: underline; /* Opcional: sublinhado no hover */
}



/* --- RESPONSIVIDADE --- */

@media (max-width: 768px) {
    #cabecalho .conteiner {
        flex-direction: column;
        align-items: center;
    }

    .menu-superior a {
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    #rodape .conteiner {
        flex-direction: column;
        text-align: center;
    }
}
