/* ==========================================================================
   VARIÁVEIS DE DESIGN E CORES PREMIUM
   ========================================================================== */
:root {
    --primary: #5cb85c;
    --primary-hover: #4cae4c;
    --primary-light: #e2f3ec;
    --dark: #1a1a1a;
    --grey-text: #555555;
    --grey-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #eeeeee;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.text-center { text-align: center; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   HEADER (ALTURA SLIM OTMIZADA COMPACTADA E NEGRITO APLICADO)
   ========================================================================== */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 700;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    padding: 2px 0; /* Reduzido de 5px para 2px para zerar espaçamentos verticais excessivos */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* AJUSTADO: Logomarca redimensionada para 100x100 de forma precisa */
.logo-img {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
}

.logo-slogan {
    font-size: 8.5px; /* Reduzido de 10px para ajustar harmoniosamente à nova proporção da imagem */
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px; /* Alinhamento mais próximo e justo */
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--grey-text);
    font-weight: 700;
    font-size: 14.5px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-sm, .btn-main, .btn-secondary, .btn-card-buy {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-sm {
    background-color: var(--dark);
    color: var(--white);
    padding: 10px 22px;
    font-size: 14px;
}

.btn-sm:hover {
    background-color: var(--primary);
}

/* ==========================================================================
   HERO BANNER (OTIMIZADO PARA IMAGEM ACIMA DO TEXTO)
   ========================================================================== */
.hero-premium {
    background: linear-gradient(135deg, #f2f9f5 0%, #edf6f1 100%);
    padding: 70px 0;
}

/* AJUSTADO: Mudado para Flexbox Vertical para alinhar perfeitamente a imagem antes do texto */
.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-text-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-text-content p {
    font-size: 16px;
    color: var(--grey-text);
    margin-bottom: 30px;
}

.hero-badges-group {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.h-badge {
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 6px;
}

.h-badge .icon { color: var(--primary); }

.cta-actions { display: flex; gap: 15px; }

.btn-main {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(92, 184, 92, 0.2);
}

.btn-main:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 14px 28px;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: var(--dark);
    color: var(--white);
}

.hero-image-gallery {
    width: 100%;
    max-width: 700px;
    display: flex;
    justify-content: center;
}

/* AJUSTADO: Forçado o tamanho de 700x550 sem distorcer o conteúdo da foto */
.main-hero-img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.07);
    width: 100% !important;
    max-width: 700px !important;
    height: 550px !important;
    object-fit: contain;
}

/* ==========================================================================
   RESUMO EXECUTIVO
   ========================================================================== */
.executive-summary { padding: 60px 0 20px 0; }
.summary-box {
    background-color: var(--grey-bg);
    border-left: 6px solid var(--primary);
    padding: 40px;
    border-radius: 0 16px 16px 0;
    box-shadow: var(--shadow);
}
.summary-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ==========================================================================
   SEÇÕES GERAIS E TABELAS
   ========================================================================== */
section { padding: 75px 0; }
.centered-title { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.centered-title .sub { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 2px; display: block; margin-bottom: 10px; }
.centered-title h2 { font-family: 'Montserrat', sans-serif; font-size: 32px; font-weight: 700; margin-bottom: 15px; }

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.b-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.01);
}
.b-icon { font-size: 32px; margin-bottom: 15px; }
.b-card h3 { font-size: 19px; margin-bottom: 12px; }
.b-card p { color: var(--grey-text); font-size: 15px; }

/* TABELA COMPARATIVA RESPONSIVA */
.table-responsive { width: 100%; overflow-x: auto; margin-top: 20px; }
.comparison-table { width: 100%; border-collapse: collapse; text-align: left; background-color: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.comparison-table th, .comparison-table td { padding: 18px 24px; font-size: 15px; border-bottom: 1px solid var(--border-color); }
.comparison-table th { background-color: var(--dark); color: var(--white); font-weight: 600; font-family: 'Montserrat', sans-serif; }
.comparison-table td.positive { color: #2e7d32; font-weight: 600; }
.comparison-table td.negative { color: #c62828; }

/* ==========================================================================
   SEÇÃO SABORES
   ========================================================================== */
.flavors-section { background-color: var(--grey-bg); }
.flavor-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
}
.flavor-img-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 20px auto;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flavor-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   SEÇÃO PREPARO
   ========================================================================== */
.grid-2-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.rounded-img { border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.05); }
.step-list { list-style: none; margin-top: 25px; }
.step-list li { position: relative; padding-left: 35px; margin-bottom: 20px; font-size: 15px; color: var(--grey-text); }
.step-list li::before { content: "•"; position: absolute; left: 12px; color: var(--primary); font-size: 24px; top: -4px; }
.step-list li strong { color: var(--dark); display: block; font-size: 16.5px; margin-bottom: 2px; }

/* ==========================================================================
   KITS E OFERTAS MÓVEL-FIRST
   ========================================================================== */
.pricing-section { background-color: var(--grey-bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 35px; }
.price-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}
.card-header-tag { position: absolute; top: 20px; right: 25px; background-color: rgba(0,0,0,0.05); color: var(--dark); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 12px; }

.price-card.premium-featured { border: 2px solid var(--primary); transform: scale(1.02); }
.card-header-tag.special { background-color: var(--primary); color: var(--white); }

.p-img-box {
    width: 100%;
    max-width: 650px;
    margin: 15px auto 25px auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-img { 
    width: 100%;
    max-width: 650px;
    height: auto; 
    object-fit: contain; 
}

.price-card h3 { font-family: 'Montserrat', sans-serif; font-size: 21px; margin-bottom: 12px; font-weight: 700; }
.p-description { font-size: 14px; color: var(--grey-text); margin-bottom: 20px; min-height: 65px; }

.card-features { list-style: none; margin-bottom: 25px; border-top: 1px solid var(--border-color); padding-top: 15px; }
.card-features li { font-size: 14px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.card-features li::before { content: "✓"; color: var(--primary); font-weight: 700; }

.price-box { margin-top: auto; margin-bottom: 25px; text-align: center; }
.old-price { font-size: 13px; color: #a0a0a0; text-decoration: line-through; margin-bottom: 2px; }
.main-p-row { display: flex; align-items: baseline; justify-content: center; }
.price-box .currency { font-size: 16px; font-weight: 700; }
.price-box .value { font-size: 46px; font-weight: 700; line-height: 1; }
.price-box .cents { font-size: 18px; font-weight: 700; }

.btn-card-buy { background-color: var(--dark); color: var(--white); padding: 14px 20px; font-size: 15px; width: 100%; text-align: center; font-weight: 700; border: none; cursor: pointer; }
.btn-card-buy:hover { background-color: var(--primary); }
.btn-card-buy.featured-btn { background-color: var(--primary); }
.btn-card-buy.featured-btn:hover { background-color: var(--primary-hover); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-accordion-container { max-width: 800px; margin: 0 auto; }
.faq-block { background-color: var(--grey-bg); padding: 25px; border-radius: 16px; margin-bottom: 15px; }
.faq-block h3 { font-size: 17px; margin-bottom: 10px; font-weight: 600; }
.faq-block p { color: var(--grey-text); font-size: 14.5px; }

/* ==========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================== */
.whatsapp-premium-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: var(--transition);
}
.whatsapp-premium-float:hover { transform: scale(1.06) translateY(-2px); }

/* ==========================================================================
   FOOTER INSTITUCIONAL
   ========================================================================== */
.main-footer { background-color: var(--dark); color: rgba(255,255,255,0.7); padding: 50px 0 30px 0; font-size: 14px; border-top: 4px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; margin-bottom: 35px; }
.footer-info h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.footer-info h3 span { color: var(--primary); }
.footer-disclaimer p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 25px; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   SISTEMA DE MEDIA QUERIES RESPONSIVAS
   ========================================================================== */
@media (max-width: 992px) {
    .hero-text-content h1 { font-size: 34px; }
    .hero-badges-group, .cta-actions { justify-content: center; }
    .hero-image-gallery { max-width: 700px; margin: 0 auto; }
    .grid-2-equal { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .how-media { max-width: 400px; margin: 0 auto; }
    .step-list li { text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
}

@media (max-width: 768px) {
    .header-flex { 
        flex-direction: column; 
        gap: 4px; /* Elementos empilhados mais próximos para um visual slim */
        text-align: center; 
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .logo-box { align-items: center; }
    
    /* AJUSTADO: Mantém consistência com o tamanho mobile proporcional */
    .logo-img {
        width: 100px !important;
        height: 100px !important;
    }
    .logo-slogan {
        font-size: 8px;
    }
    
    /* AJUSTADO: Evita que a proporção 700x550 quebre ou corte em telas de celulares */
    .main-hero-img {
        height: auto !important;
    }
    
    .nav-menu { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 8px 12px; /* Margem interna reduzida entre os botões */
    }
    .header-cta { display: none; }
    
    .flavor-img-wrapper {
        width: 100%;
        max-width: 600px;
    }
    .p-img-box {
        max-width: 100%;
    }
    .price-card.premium-featured { transform: none; }
}

@media (max-width: 480px) {
    .hero-text-content h1 { font-size: 26px; }
    .cta-actions { flex-direction: column; gap: 10px; }
    .btn-main, .btn-secondary { width: 100%; text-align: center; }
}

/* ==========================================================================
     MÓDULO ISOLADO EEAT/LLM - SEM ALTERAÇÃO DE DESIGN GLOBAL
   ========================================================================== */

.eeat-block-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.eeat-bg-light {
    background-color: #f9f9f9;
}

/* 1. Estilos do Resumo Executivo */
.eeat-summary-box {
    background-color: #f9f9f9;
    border-left: 6px solid #5cb85c;
    padding: 35px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.eeat-title-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.eeat-text-p {
    font-size: 15.5px;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.eeat-text-p:last-child {
    margin-bottom: 0;
}

/* 2. Estilos dos Componentes */
.eeat-centered-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.eeat-sub {
    color: #5cb85c;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.eeat-subtitle-p {
    font-size: 14px;
    color: #777777;
    font-style: italic;
    margin-top: -5px;
}

.eeat-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.eeat-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.eeat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.eeat-card-h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.eeat-card-p {
    color: #555555;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 10px;
}
.eeat-card-p:last-child {
    margin-bottom: 0;
}

/* 3. Estilos de Tabela Nutricional */
.eeat-table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #eeeeee;
}

.eeat-comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: #ffffff;
}

.eeat-comparison-table th, 
.eeat-comparison-table td {
    padding: 16px 20px;
    font-size: 14.5px;
    border-bottom: 1px solid #eeeeee;
}

.eeat-comparison-table th {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.eeat-comparison-table td.eeat-positive {
    color: #2e7d32;
    font-weight: 600;
}

.eeat-comparison-table tr:hover {
    background-color: rgba(92, 184, 92, 0.01);
}

/* Responsividade do Módulo */
@media (max-width: 768px) {
    .eeat-grid-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .eeat-title-main {
        font-size: 24px;
    }
    .eeat-summary-box {
        padding: 25px;
    }
}

/* Estilização complementar para as imagens dos produtos nos cards */
.eeat-product-img-box {
    width: 100%;
    max-width: 650px;
    height: 400px;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fdfdfd; /* Fundo suave caso a proporção mude no mobile */
}

.eeat-product-img {
    width: 100% !important;
    max-width: 650px !important;
    height: 400px !important;
    object-fit: contain; /* Garante que a foto não corte e mantenha a proporção */
    display: block;
}

/* Ajuste mobile para evitar que uma altura fixa quebre o esquadro */
@media (max-width: 768px) {
    .eeat-product-img-box {
        height: auto;
    }
    .eeat-product-img {
        height: auto !important;
    }
}

/* Estilização para as redes sociais no rodapé */
.footer-social-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    background-color: var(--primary); /* Usa o verde original do seu site */
    transform: translateY(-2px);
}