/* --- ESTILO GLOBAL --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6; 
    background-color: #fcfaf7;
    color: #333333; /* Texto escuro para leitura no fundo claro */
}

/* --- ESTILO PARA TÍTULOS (PADRONIZAÇÃO) --- */
.titulo-padrao {
    color: #8b0000; /* Cor vinho aplicada globalmente aos títulos */
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 800;
}

/* O truque do | antes do título */
.titulo-padrao::before {
    content: "| "; 
    color: #8b0000; 
    margin-right: 10px;
    font-weight: 800;
}

/* --- CABEÇALHO SUPER COMPACTO --- */
.main-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
}

.logo-bar {
    display: flex;
    justify-content: center;
    padding: 0; 
    margin: 0;
}

.logo-img-header {
    max-height: 125px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.menu-bar {
    background-color: #ffffff;
    padding: 5px 0;
}

.menu-items {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.menu-items li a {
    text-decoration: none;
    color: #444; 
    font-weight: 700;
    font-size: 0.70em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SEÇÃO HERO (TEXTO BRANCO) --- */
.hero { 
    min-height: 100vh; 
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.png');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px; 
}

/* Forçando o branco apenas no Hero para contraste com o fundo escuro */
.hero h1 {
    font-size: 2.0em;
    margin-bottom: 10px;
    font-weight: 800;
    color: #FFFFFF !important; 
}

.hero .impact-phrase {
    font-size: 1.25em;
    max-width: 750px;
    margin: 0 auto 30px;
    font-weight: 300;
    color: #FFFFFF !important;
}

/* Destaque verde no texto do Hero */
.impact-phrase strong {
    color: #25d366 !important; 
    font-weight: 600;
}

.hero .btn-whatsapp {
    display: inline-block; 
    background: #25d366; 
    color: white;
    padding: 16px 32px;
    font-weight: 700; 
    text-transform: uppercase;
    text-decoration: none; 
    border-radius: 50px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero .btn-whatsapp:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    background-color: #20ba5a;
}

/* --- GRID DE PRODUTOS E CARDS --- */
.section { padding: 80px 20px; max-width: 1200px; margin: auto; }

.categoria-titulo { 
    border-left: 6px solid #8b0000; 
    padding-left: 20px; 
    margin: 60px 0 35px; 
    text-transform: uppercase; 
    color: #2c3e50; 
    font-weight: 800;
}

.grid-produtos { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
}

.card { 
    background: #fff; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: transform 0.3s; 
}
.card:hover { transform: translateY(-10px); }

.produto-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.card-content { padding: 25px; }
.card-content h4 { margin-bottom: 12px; color: #2c3e50; font-size: 1.2em; }
.sabores { font-size: 0.95em; color: #555; margin-bottom: 10px; font-style: italic; }
.desc { font-size: 0.9em; color: #777; margin-bottom: 15px; }
.badge { background: #f8f9fa; border: 1px solid #ddd; color: #333; padding: 6px 14px; border-radius: 20px; font-size: 0.85em; font-weight: bold; }

/* --- ESTILO SEÇÃO DIFERENCIAIS --- */
.grid-diferenciais { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}
.card-diferencial { 
    background: #fff; 
    padding: 30px; 
    border-radius: 15px; 
    text-align: center; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid #8b0000;
}
.card-diferencial .icon { font-size: 2.5em; margin-bottom: 15px; }
.card-diferencial h4 { color: #2c3e50; margin-bottom: 10px; }
.card-diferencial p { font-size: 0.9em; color: #666; }

/* --- SEÇÃO SOBRE (MINHA HISTÓRIA) --- */
.sobre-section { background-color: #fff; }
.sobre-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; align-items: center; }
.sobre-equipe-img { width: 100%; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

.sobre-content p {
    color: #444; 
    margin-bottom: 20px;
    font-size: 1.1em;
}

.sobre-content strong {
    color: #8b0000; 
}

/* --- ESTILO DEPOIMENTOS --- */
.section-depoimentos { background-color: #fff; padding: 80px 20px; text-align: center; }
.grid-depoimentos { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; margin-top: 40px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.card-depoimento { 
    background: #f9f9f9; padding: 30px; border-radius: 15px; 
    border-top: 4px solid #8b0000; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.quote { font-size: 2em; color: #8b0000; margin-bottom: 10px; }
.depoimento-texto { font-style: italic; color: #555; margin-bottom: 20px; }
.autor-depoimento { font-weight: 800; color: #2c3e50; text-transform: uppercase; } 

/* --- ESTILO SEÇÃO FAQ --- */
.faq-section { background-color: #f8f9fa; }
.faq-container { max-width: 800px; margin: 40px auto 0; text-align: left; }
.faq-item { margin-bottom: 30px; }
.faq-item h4 { color: #8b0000; font-size: 1.1em; margin-bottom: 10px; }
.faq-item p { color: #555; line-height: 1.6; }

/* --- SEÇÃO CONTATO --- */
.contato-section { background-color: #2c3e50; color: white; text-align: center; }
.contato-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; margin-top: 40px; }
.social-link { color: #25d366; text-decoration: none; font-weight: bold; font-size: 1.2em; display: block; margin-top: 15px; }

/* --- BOTÃO WHATSAPP FIXO --- */
.btn-whatsapp-fixed { 
    position: fixed; bottom: 30px; right: 30px; background: #25d366;
    width: 65px; height: 65px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; z-index: 1001; box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2em; } 
    .hero p.impact-phrase { font-size: 1.1em; }
    .hero { margin-top: 0; padding: 70px 20px; }
    .main-header { position: relative; }
    .menu-items { gap: 15px; font-size: 0.75em; }
    .logo-img-header { max-height: 90px; }
}