/* CONFIGURAÇÕES GERAIS (Mantidas) */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #fff; color: #1a1a1a; line-height: 1.6; }
.limite-largura { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* BARRA DE PROMOÇÃO */
.promo-header { background: #000; color: #fff; text-align: center; padding: 8px 0; font-size: 11px; font-weight: 600; letter-spacing: 1px; }

/* CABEÇALHO E LOGO */
.topo-site { background: #fff; border-bottom: 1px solid #f0f0f0; padding: 20px 0; }
.topo-flex-superior { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.centro-logo { flex: 1; text-align: center; }
.main-logo { height: 60px; width: auto; transition: 0.3s; }

/* BOTÕES DO TOPO */
.btn-admin-discreto { text-decoration: none; color: #999; font-size: 11px; font-weight: 700; border: 1px solid #eee; padding: 6px 12px; border-radius: 4px; transition: 0.3s; }
.btn-admin-discreto:hover { border-color: #bf953f; color: #bf953f; }

.btn-vip-destaque { text-decoration: none; background: #bf953f; color: #fff; font-size: 12px; font-weight: 800; padding: 10px 20px; border-radius: 50px; box-shadow: 0 4px 15px rgba(191, 149, 63, 0.2); transition: 0.3s; }
.btn-vip-destaque:hover { background: #000; transform: translateY(-2px); }

/* NAVEGAÇÃO DINÂMICA */
.navegacao-principal { border-top: 1px solid #f9f9f9; padding-top: 15px; }
.menu-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }

.links-setores { display: flex; gap: 20px; align-items: center; }
.links-setores a { 
    text-decoration: none; 
    color: #666; 
    font-size: 13px; 
    font-weight: 600; 
    transition: 0.3s;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}
.links-setores a:hover, .links-setores a.ativo { color: #000; }
.links-setores a.ativo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #bf953f;
}
.divisor { color: #ddd; font-weight: 300; }

/* BARRA DE BUSCA */
.container-busca input { border: 1px solid #eee; padding: 8px 15px; border-radius: 20px; width: 200px; font-size: 13px; outline: none; background: #fcfcfc; transition: 0.3s; }
.container-busca input:focus { border-color: #bf953f; width: 250px; }

/* VITRINES E CARDS - AJUSTADO PARA ALINHAMENTO */
.vitrine-container { padding: 50px 0; border-bottom: 1px solid #f5f5f5; }
.vitrine-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 25px; padding: 0 20px; }
.vitrine-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; text-transform: uppercase; }
.link-ver-mais { color: #bf953f; text-decoration: none; font-weight: 700; font-size: 12px; border-bottom: 2px solid #bf953f; padding-bottom: 3px; }

.feed-horizontal { display: flex; overflow-x: auto; gap: 20px; padding: 10px 20px 30px; scrollbar-width: none; }
.feed-horizontal::-webkit-scrollbar { display: none; }

/* CARD DE PRODUTO */
.card-produto { 
    min-width: 260px; 
    background: #fff; 
    transition: 0.3s; 
    position: relative;
    display: flex; /* Adicionado para permitir alinhamento vertical */
    flex-direction: column; /* Conteúdo em coluna */
    height: 100%; /* Ocupa altura total do container */
    border: 1px solid #f0f0f0;
    border-radius: 8px;
}

.capa-foto { 
    position: relative; 
    height: 350px; 
    overflow: hidden; 
    border-radius: 8px 8px 0 0; 
}
.capa-foto img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card-produto:hover img { transform: scale(1.05); }

/* --- ETIQUETAS SOBRE A FOTO --- */
.tag-tamanhos {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 2px;
    border: 1px solid #eee;
    z-index: 10;
}

/* Estilo para a etiqueta de Esgotado */
.tag-esgotado {
    position: absolute;
    top: 0;
    left: 0;
    background: #ff0000;
    color: #fff;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 800;
    z-index: 20;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* INFO DO PRODUTO */
.info-produto {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz a área de texto crescer para empurrar o botão */
}

.info-produto h3 { 
    font-size: 14px; 
    margin-bottom: 10px; 
    color: #1a1a1a;
    height: 40px; /* Mantém espaço para 2 linhas de título sempre */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 20px;
}

.preco-container { 
    margin-top: auto; /* Empurra o preço para baixo */
    margin-bottom: 12px; 
}

.info-preco-extra {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: -4px;
}
.valor { font-weight: 800; color: #bf953f; font-size: 18px; }

/* --- NOVO: BOTÃO TENHO INTERESSE P&B --- */
.btn-whats-novo { 
    display: block; 
    text-align: center; 
    text-decoration: none; 
    background: #000; 
    color: #fff; 
    padding: 14px; 
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 1px;
    border: 1px solid #000;
    border-radius: 4px; 
    transition: 0.3s;
    width: 100%;
}
.btn-whats-novo:hover { background: #fff; color: #000; }

/* HERO BANNER - ALTERADO AQUI */
.hero-full { 
    height: 50vh; /* Altura reduzida (era 80vh) */
    min-height: 400px; /* Garante tamanho mínimo para não cortar texto */
    background: url('hero-bg.jpg') center/cover no-repeat; 
    background-color: #f5f5f5; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
}

.hero-conteudo h1 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1; margin-bottom: 20px; }
.btn-hero { display: inline-block; padding: 15px 40px; background: #000; color: #fff; text-decoration: none; font-weight: 700; letter-spacing: 2px; transition: 0.3s; }
.btn-hero:hover { background: #bf953f; }

/* RODAPÉ */
.rodape-black { padding: 40px 0; border-top: 1px solid #eee; text-align: center; }

/* RESPONSIVO */
@media (max-width: 768px) {
    .topo-flex-superior { flex-direction: column; gap: 20px; }
    .links-setores { overflow-x: auto; width: 100%; padding-bottom: 10px; gap: 15px; }
    .hero-full h1 { font-size: 40px; }
    .card-produto { min-width: 220px; }
}