/* =========================================
   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: 30px 20px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 30%, #ede8df 70%, #e0d7c8 100%);
    text-align: center;
    min-height: auto;
    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.2;
    margin: 15px 0 10px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.benefit-box {
    margin: 20px auto 30px;
    max-width: 700px;
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    text-align: left;
    will-change: transform;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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);
}

.objection-breaker {
    margin: 30px auto 40px;
    max-width: 700px;
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.15);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.objection-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: center;
}

.objection-list {
    list-style: none;
    padding: 0;
}

.objection-list li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.objection-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA SECUNDÁRIO - FOOTER */
.footer-cta {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-top: 30px;
    padding: 20px;
    background: rgba(30, 132, 73, 0.05);
    border-radius: 10px;
    line-height: 1.6;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #155934;
    background-color: rgba(30, 132, 73, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.hero-product {
    width: 560px;
    max-width: 100%;
    height: auto;
    margin: 30px auto 25px;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
    border-radius: 16px;
    contain: layout style paint;
}

.hero-product:hover {
    transform: scale(1.02) translateY(-4px);
    filter: drop-shadow(0 35px 60px rgba(0,0,0,0.28));
}

.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: 22px 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 12px 28px rgba(30, 132, 73, 0.35);
    transition: all 0.25s ease;
    animation: pulse 2.5s infinite;
    letter-spacing: 0.3px;
    margin: 12px 0 30px 0;
    border: none;
    cursor: pointer;
}

.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: 50px auto 30px;
    padding: 35px 40px;
    background: rgba(30, 132, 73, 0.05);
    border-radius: 16px;
    border: 1px 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;
}

.owner-line {
    margin: 0 0 12px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.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: 768px) {
    .hero { padding: 25px 15px 50px; }
    .hero-title { font-size: 1.8rem; margin-bottom: 8px; letter-spacing: 0; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 4px; }
    .hero-lead { font-size: 1rem; margin-bottom: 15px; }
    .hero-product { width: 280px; margin: 15px auto 20px; }
    .benefit-box { padding: 12px 15px; margin: 15px auto 20px; border-left: none; border-top: 4px solid var(--primary-color); text-align: center; }
    .benefit-title { font-size: 0.9rem; margin-bottom: 6px; }
    .benefit-main { font-size: 1rem; }
    .benefit-sub { font-size: 0.95rem; }
    .button-primary { font-size: 1.2rem; padding: 16px 28px; width: 95%; margin: 10px 0 25px 0; }
    .objection-breaker { padding: 18px 20px; margin: 20px auto 30px; }
    .objection-title { font-size: 1rem; margin-bottom: 12px; }
    .objection-list li { font-size: 0.9rem; padding-left: 22px; margin: 10px 0; }
    .cert-img { max-width: 320px; }
    .certifications { padding: 20px; margin: 40px auto 25px; }
    .secure-badge { font-size: 0.85rem; padding: 10px 18px; }
    .footer-cta { font-size: 0.9rem; padding: 12px; margin-top: 15px; }
    .footer-nav a { display: block; margin: 10px 0; font-size: 13px; }
    .hero-note { font-size: 0.9rem; margin-bottom: 20px; }

    .header-nav { gap: 15px; }
    .header-nav a { font-size: 12px; padding: 6px 12px; }
    .official-box { padding: 20px; margin: 25px auto; }
    .official-content h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .official-benefits h3 { font-size: 1.4rem; margin-bottom: 20px; }
    .benefit-card { gap: 15px; flex-direction: column; align-items: center; text-align: center; }
    .details-section { padding: 20px; margin-bottom: 25px; }
    .details-section h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .how-works, .benefits-grid, .usage-steps { grid-template-columns: 1fr; gap: 15px; }
    .cta-section { padding: 25px; margin: 30px auto; }
    .cta-section h3 { font-size: 1.4rem; margin-bottom: 12px; }
    .button-jumbo { font-size: 1.4rem !important; padding: 20px 40px !important; }
}

/* =========================================
   NAVEGAÇÃO NO HEADER
   ========================================= */
.header-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 12px;
}

.header-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.header-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.header-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* =========================================
   OFFICIAL PAGE STYLES
   ========================================= */
.official-box {
    margin: 40px auto;
    padding: 35px;
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    border: 2px solid rgba(30, 132, 73, 0.2);
    border-radius: 16px;
    max-width: 800px;
}

.official-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.official-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.info-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.info-highlight p {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.info-highlight ul {
    list-style: none;
    padding: 0;
}

.info-highlight li {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
}

.info-highlight li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.affiliate-notice {
    background: rgba(255, 235, 59, 0.1);
    border: 1px solid rgba(255, 235, 59, 0.3);
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.button-jumbo {
    font-size: 1.8rem !important;
    padding: 28px 60px !important;
    margin: 25px 0 !important;
}

.official-benefits {
    margin-top: 40px;
}

.official-benefits h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   DETAILS PAGE STYLES
   ========================================= */
.details-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
}

.details-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.details-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.how-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.work-step {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.work-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #155934);
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.work-step h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.work-step p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.ingredient-card {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.05) 0%, rgba(30, 132, 73, 0.02) 100%);
    padding: 20px 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    margin: 15px 0;
}

.ingredient-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ingredient-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.15);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(30, 132, 73, 0.15);
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #155934);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.evidence-section {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    border: 2px solid rgba(30, 132, 73, 0.2);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-rating {
    font-size: 1rem;
    font-weight: 800;
    color: #ffa500;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.evidence-note {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1), rgba(255, 235, 59, 0.05));
    border: 2px solid rgba(255, 235, 59, 0.3);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.evidence-note p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-step {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(30, 132, 73, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.usage-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #155934);
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.usage-step p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.1) 0%, rgba(255, 235, 59, 0.05) 100%);
    border: 2px solid rgba(255, 235, 59, 0.3);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.features-list li {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.features-list strong {
    color: var(--text-dark);
    font-weight: 800;
}

.cta-section {
    background: linear-gradient(135deg, rgba(30, 132, 73, 0.08) 0%, rgba(30, 132, 73, 0.04) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px auto;
    max-width: 700px;
    border: 2px solid rgba(30, 132, 73, 0.2);
}

.cta-section h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 30px;
}
