/* =========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    --primary-color: #1e8449;    /* Verde premium mais escuro */
    --primary-hover: #155934;
    --text-dark: #0d0d0d;
    --text-muted: #444;
    --text-light: #666;
    --bg-light: #f0ede8;    /* Bege premium ao invés de branco pálido */
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-display: swap;
}

body {
    background-color: var(--bg-light);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    font-display: swap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   SITE STRIP (BARRA DE TRANSPARÊNCIA)
   ========================================= */
.site-strip {
    background: #1e8449;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid #155934;
    color: #ffffff;
    font-weight: 500;
}

.site-strip strong {
    color: #ffeb3b;
}

/* =========================================
   HEADER (LOGOTIPO)
   ========================================= */
.site-header {
    background: linear-gradient(135deg, var(--white) 0%, #f5f2ed 100%);
    padding: 20px 0;
    border-bottom: 1px solid #d4ccc0;
    text-align: center;
}

.brand {
    text-decoration: none;
    display: inline-block;
}

.brand-mark {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: block;
    line-height: 1;
}

.brand-sub {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================================
   CONTEÚDO PRINCIPAL (HERO)
   ========================================= */
.hero {
    padding: 40px 20px 80px;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 30%, #ede8df 70%, #e0d7c8 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin: 25px 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-lead {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 600;
}

/* CAIXA DE BENEFÍCIOS (ACIMA DA FOTO) */
.benefit-box {
    margin: 30px auto 40px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 6px solid var(--primary-color);
    text-align: left;
    backdrop-filter: blur(10px);
}

.benefit-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.benefit-sub {
    font-size: 1.05rem;
    color: #444;
}

.benefit-sub strong {
    color: var(--primary-color);
}

/* IMAGEM DO PRODUTO */
.hero-product {
    width: 560px;
    max-width: 100%;
    height: auto;
    margin: 40px auto 35px;
    display: block;
    filter: drop-shadow(0 40px 70px rgba(0,0,0,0.3));
    transition: transform 0.4s ease;
    border-radius: 20px;
    contain: layout style paint;
}

.hero-product:hover {
    transform: scale(1.04) translateY(-8px);
    filter: drop-shadow(0 50px 85px rgba(0,0,0,0.35));
}

.hero-product:not([src]) {
    aspect-ratio: 440 / 550;
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
}

/* MENSAGEM DE ERRO DE IMAGEM */
.hero-product-error {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 30px;
    border-radius: 8px;
    margin: 35px auto;
    max-width: 440px;
    font-weight: 500;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

/* =========================================
   BOTÃO E CERTIFICAÇÕES
   ========================================= */
.button-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #155934 100%);
    color: var(--white);
    padding: 25px 60px;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 15px 35px rgba(30, 132, 73, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
    letter-spacing: 0.5px;
    margin: 15px 0 40px 0;
}

.button-primary:hover {
    background: linear-gradient(135deg, #155934 0%, #0d3d26 100%);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(30, 132, 73, 0.5);
}

.certifications {
    margin: 60px auto 35px;
    padding: 40px 50px;
    background: rgba(30, 132, 73, 0.06);
    border-radius: 20px;
    border: 2px solid rgba(30, 132, 73, 0.12);
    max-width: 100%;
    width: 100%;
}

.cert-img {
    max-width: 520px;
    width: 100%;
    height: auto;
    opacity: 1;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
    margin: 0 auto;
    display: block;
}

.secure-badge {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(30, 132, 73, 0.1);
    border-radius: 25px;
    display: inline-block;
}

/* =========================================
   FOOTER (COMPLIANCE E ADS)
   ========================================= */
.site-footer {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8e0d5 100%);
    padding: 60px 20px;
    border-top: 2px solid var(--primary-color);
    text-align: center;
}

.footer-shell {
    max-width: 900px;
    margin: 0 auto;
}

.footer-nav {
    margin-bottom: 35px;
}

.footer-nav a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #0d3d26;
    text-decoration: underline;
}

.medical-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.copyright {
    font-size: 13px;
    color: #bbb;
}

.fb-disclaimer {
    font-size: 11px;
    color: #ccc;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f9f9f9;
}

/* =========================================
   ANIMAÇÕES E RESPONSIVIDADE
   ========================================= */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2rem; margin-bottom: 10px; }
    .hero-lead { font-size: 1.1rem; }
    .benefit-box { padding: 15px; text-align: center; border-left: none; border-top: 4px solid var(--primary-color); }
    .benefit-main { font-size: 1.1rem; }
    .hero-product { width: 320px; margin: 0 auto 40px; }
    .button-primary { font-size: 1.25rem; padding: 18px 30px; width: 100%; }
    .cert-img { max-width: 380px; }
    .certifications { padding: 25px; margin: 50px auto 30px; }
    .footer-nav a { display: block; margin: 12px 0; }
}