/* ===== CATEGORIAS (MENU) ===== */
.menu a,
.menu li > a {
    color: #D4AF37 !important;
    font-weight: bold;
}

/* HOVER CATEGORIAS */
.menu a:hover {
    color: #A8892F !important;
}


/* ===== NOME DOS PRODUTOS ===== */
.nome-produto,
.produto .nome-produto,
.listagem .titulo {
    color: #D4AF37 !important;
    font-weight: 600;
}


/* ===== PREÇOS ===== */
.preco,
.preco-promocional,
.preco-venda,
.listagem .preco {
    color: #3B2A26 !important;
    font-weight: bold;
}


/* ===== PARCELAMENTO (opcional mais suave) ===== */
.preco-parcelado {
    color: #777 !important;
}/* LINHA ABAIXO DO MENU AO PASSAR */
.menu a {
    position: relative;
}

.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #D4AF37;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}/* FUNDO GERAL SUAVE */
body {
    background-color: #F4E7C3;
}

/* ÁREA PRINCIPAL (onde ficam produtos) */
#corpo, .conteudo, .container {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
}body {
    font-family: 'Poppins', Arial, sans-serif;
}

/* TÍTULOS */
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: 0.5px;
}.botao-comprar, .botao {
    background: linear-gradient(135deg, #E6C96A, #D4AF37, #A8892F) !important;
    color: #3B2A26 !important;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

/* HOVER */
.botao-comprar:hover {
    transform: scale(1.05);
}.produto {
    border-radius: 12px;
    background: #FFFFFF;
    padding: 12px;
    transition: 0.3s;
}

/* HOVER PREMIUM */
.produto:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}.menu {
    border-bottom: 1px solid #e5d6a5;
}

/* ESPAÇAMENTO */
.menu li {
    margin: 0 10px;
}/* REMOVE VISUAL AMADOR */
.produto, .box, .card {
    border: none !important;
}