/* =========================================
   VARIÁVEIS & RESET (DESIGN PREMIUM / AWWWARDS STYLE)
========================================= */
:root {
    /* Cores Editoriais */
    --color-bg: #F9F8F6; /* Cream/Off-white elegante */
    --color-text: #2C332F; /* Charcoal/Dark Grey */
    --color-text-light: #5A635E;
    
    --color-primary: #0A2A1A; /* Verde floresta muito profundo */
    --color-primary-light: #16402A;
    --color-accent: #D95A2B; /* Terracotta/Burnt Orange */
    --color-accent-hover: #BF4C22;
    --color-white: #FFFFFF;
    
    /* Tipografia */
    --font-sans: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Espaçamento */
    --space-section: 60px; /* Reduzido o default para mobile */
    --space-section-desktop: 140px;
    
    /* Bordas e Sombras Suaves */
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    
    --shadow-subtle: 0 10px 40px rgba(10, 42, 26, 0.06);
    --shadow-hover: 0 20px 50px rgba(10, 42, 26, 0.12);
    
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture para profundidade */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   TIPOGRAFIA & UTILITÁRIOS
========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.italic-serif {
    font-style: italic;
    font-weight: 400;
}

.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-accent { color: var(--color-accent) !important; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.w-100 { width: 100%; }
.justify-center { justify-content: center; }

.dark-section {
    background-color: var(--color-primary);
    color: var(--color-bg);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-family: var(--font-sans);
}

/* =========================================
   BOTÕES PREMIUM
========================================= */
.btn-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: var(--color-bg);
    padding: 16px 20px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-slow);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    width: 100%; /* Botões sempre 100% no mobile */
    text-align: center;
}

.btn-premium.btn-accent {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn-premium.btn-light {
    background-color: transparent;
    border-color: var(--color-bg);
    color: var(--color-bg);
}

.btn-premium.btn-light:hover {
    background-color: var(--color-bg);
    color: var(--color-primary);
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-subtle);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition-slow);
}

.btn-premium:hover .btn-icon {
    transform: translateX(5px);
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-premium.btn-accent:hover .btn-icon {
    color: var(--color-accent);
}

.btn-large {
    padding: 18px 24px;
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    transition: var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    border-bottom-color: currentColor;
}
.link-arrow:hover i {
    transform: translateX(5px);
}

/* =========================================
   1. HERO SECTION
========================================= */
.hero-section {
    padding: 5rem 0 3rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 40px;
}

.badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent);
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-subtitle p {
    margin-bottom: 1rem;
}

.hero-visual {
    position: relative;
}

.image-arch {
    border-radius: 120px 120px 0 0;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-subtle);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1); /* para parallax */
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(255,255,255,0.5);
}

.floating-card .stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.floating-card p {
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

/* =========================================
   2. BENEFÍCIOS
========================================= */
.benefits-section {
    padding: var(--space-section) 0;
    border-top: 1px solid rgba(10, 42, 26, 0.1);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.text-wrap {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.text-wrap strong {
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.benefits-gallery {
    display: flex;
    gap: 10px;
    height: 350px;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.gallery-col img {
    border-radius: var(--radius-md);
    object-fit: cover;
    height: 100%;
    box-shadow: var(--shadow-subtle);
}

/* Asymmetric grid */
.img-down { transform: translateY(40px); }
.img-up { transform: translateY(-20px); }

/* =========================================
   3. EXEMPLOS DE SALADAS
========================================= */
.examples-section {
    padding: var(--space-section) 0;
}

.recipes-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.recipe-card-premium {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
}

.recipe-card-premium:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-10px);
}

.recipe-img {
    height: 250px;
    overflow: hidden;
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.recipe-card-premium:hover .recipe-img img {
    transform: scale(1.05);
}

.recipe-info {
    padding: 2rem;
}

.recipe-info h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.recipe-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.recipe-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--color-bg);
}

.recipe-meta i {
    color: var(--color-accent);
}

/* =========================================
   4. BÔNUS
========================================= */
.bonus-section {
    padding: var(--space-section) 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.bonus-card-premium {
    background-color: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.05);
}

.bonus-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bonus-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(217, 90, 43, 0.1); /* Accent com opacidade */
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 0;
}

.bonus-card-premium h3, .bonus-card-premium p, .bonus-price {
    position: relative;
    z-index: 1;
}

.bonus-card-premium h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.bonus-card-premium p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.bonus-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.bonus-price .old {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.bonus-price .new {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.4rem;
}

/* =========================================
   5. SEÇÃO DE DOR
========================================= */
.pain-section {
    padding: var(--space-section) 0;
    background-color: #F0EBE1; /* Tom mais terroso/quente */
}

.pain-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.pain-list-premium {
    list-style: none;
    margin-bottom: 3rem;
}

.pain-list-premium li {
    font-size: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 30px;
}

.pain-list-premium li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.pain-conclusion {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--color-accent);
}

.pain-conclusion em {
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

/* =========================================
   6. A SOLUÇÃO
========================================= */
.solution-section {
    padding: var(--space-section) 0;
}

.solution-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-list-premium {
    list-style: none;
    margin-top: 2rem;
}

.solution-list-premium li {
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
}

.solution-list-premium li strong {
    color: var(--color-white);
}

.solution-list-premium li.has-plus {
    color: var(--color-accent);
    font-weight: 500;
}
.solution-list-premium li.has-plus::before {
    content: "+ ";
}

.price-box-elegant {
    background-color: var(--color-bg);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-text);
}

.price-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.price-value {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--color-primary);
    line-height: 1;
}

.urgency-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.timer-display {
    color: var(--color-accent);
    font-variant-numeric: tabular-nums;
}

/* =========================================
   7. PREÇO + OFERTA
========================================= */
.offer-section {
    padding: var(--space-section) 0;
    background-color: var(--color-bg);
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.offer-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 2rem 1.5rem;
}

.offer-header h2 {
    color: var(--color-white);
    margin: 0;
}

.offer-body {
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.price-strike {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 1rem;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 1rem;
}

.price-main .currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price-main .amount {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-primary);
}

.price-cash {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    background-color: #F9F8F6;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 3rem 0;
    border-left: 3px solid var(--color-primary);
}

.seal-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
}

.seal-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.seal-text span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-bar i {
    color: var(--color-accent);
}

.trust-bar .dot {
    color: #ccc;
}

/* =========================================
   8. SOBRE A AUTORA + PROVA SOCIAL
========================================= */
.author-section {
    padding: var(--space-section) 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.author-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--space-section);
}

.author-photo {
    position: relative;
    border-radius: 120px 120px 0 0;
    overflow: hidden;
    height: 400px;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-subtle);
}

.author-bio p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.testimonial-item {
    background-color: var(--color-white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    position: relative;
}

.quote-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
}

/* =========================================
   9. FAQ
========================================= */
.faq-section {
    padding: var(--space-section) 0;
    background-color: #F0EBE1;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-premium {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 2rem 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 14px;
    height: 14px;
    position: relative;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after { top: 0; left: 6px; width: 2px; height: 14px; }

.faq-item-premium.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-panel-inner {
    padding-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* =========================================
   10. ÚLTIMO CTA & FOOTER
========================================= */
.final-cta {
    padding: var(--space-section) 0;
    text-align: center;
}

.final-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
}

.footer-premium {
    background-color: #05150C;
    color: rgba(255,255,255,0.5);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
}

.disclaimer {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

/* =========================================
   ANIMAÇÕES DE SCROLL (REVEAL)
========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (TABLET & DESKTOP)
========================================= */
@media (min-width: 768px) {
    .section-title {
        font-size: clamp(3rem, 5vw, 4rem);
    }
    
    .hero-title {
        font-size: clamp(3.5rem, 7vw, 5.5rem);
        margin-bottom: 2rem;
    }

    .hero-section {
        padding: 8rem 0 6rem;
        min-height: 90vh;
    }

    .image-arch {
        border-radius: 200px 200px 0 0;
        height: 600px;
    }

    .author-photo {
        border-radius: 200px 200px 0 0;
        height: 500px;
    }

    .benefits-gallery {
        gap: 20px;
        height: 500px;
    }

    .price-value {
        font-size: 5rem;
    }
    
    .price-main .amount {
        font-size: 5.5rem;
    }

    .btn-premium {
        width: auto;
        padding: 18px 32px;
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 22px 40px;
        font-size: 1.2rem;
    }

    .floating-card {
        bottom: 40px;
        left: -40px;
        right: auto;
        text-align: left;
    }

    .price-box-elegant {
        padding: 3rem;
    }

    .offer-header {
        padding: 3rem 2rem;
    }

    .offer-body {
        padding: 4rem 3rem;
    }
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .floating-card {
        left: -80px;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .recipes-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pain-wrapper {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }

    .solution-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .author-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .recipes-carousel {
        grid-template-columns: repeat(4, 1fr);
    }
}
