/* =========================================
   THEME: CLEAN, MODERN & SWEET (AIRY)
   Foco em espaços em branco, curvas macias e cores convidativas
========================================= */
:root {
    --color-bg: #FFFFFF;
    /* Branco absoluto pra respiro profundo */
    --color-surface: #FDFBF7;
    /* Off-white super leve para blocos */
    --color-primary: #FF7B89;
    /* Rosa coral vibrante, mas amigável (Botões) */
    --color-primary-hover: #F26171;
    --color-text-dark: #2D2422;
    /* Preto com toque de marrom quente */
    --color-text-mutted: #756D6B;
    /* Cinza/Marrom claro para textos longos */
    --color-accent-blue: #E8F0FE;
    /* Toque sutil de cor fria (confiança) */
    --color-accent-yellow: #FFF8E7;
    /* Amarelo manteiga para bônus */

    --gradient-text: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-card: linear-gradient(145deg, #FFFFFF, #FFF5F6);

    --font-main: 'Outfit', 'Inter', sans-serif;
    /* Arredondada, amigável e moderna */

    --shadow-soft: 0 12px 40px rgba(45, 36, 34, 0.04);
    --shadow-hover: 0 20px 50px rgba(45, 36, 34, 0.08);
    --radius-large: 24px;
    --radius-pill: 100px;

    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
   RESET E BASE
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* =========================================
   ELEMENTOS GLOBAIS
========================================= */
.tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-accent-yellow);
    color: #D48C00;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-primary);
    color: white;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(255, 123, 137, 0.3), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn:hover::after {
    left: 150%;
}

.btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 123, 137, 0.4), inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.btn-large {
    font-size: 1.2rem;
    padding: 24px 48px;
    width: 100%;
    max-width: 500px;
}

/* =========================================
   SEÇÕES DE ESTRUTURA
========================================= */
/* Hero */
/* Hero com Imagem Fundo Gourmet */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    background-image: url('images/hero_bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Glass/Overlay para garantir leitura */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 231, 0.75) 100%);
    z-index: 0;
    opacity: 1;
}

/* Ajustando Cores sobrepondo */
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: #4A1C16;
    /* Tom mais achocolatado no título hero */
}

/* Imagem Flutuante Hero */
.hero-image-container {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(74, 28, 22, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(10px);
    z-index: -1;
}

.floating-img {
    width: 100%;
    border-radius: var(--radius-large);
    animation: floatImg 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Calda SVG Divisors */
.syrup-drip {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.syrup-drip svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    /* Altura da calda */
}

.syrup-drip-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.syrup-drip-top svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    /* Garante que os textos e o conteúdo do E-book fiquem acima do vidro da imagem de fundo */
}

.hero-content {
    flex: 1;
    max-width: 540px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-mutted);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.mockup-clean {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--color-surface);
    border-radius: var(--radius-large);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-mutted);
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.mockup-clean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Story/Conexão */
.story {
    padding: 100px 0;
    background-color: var(--color-surface);
}

.story-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image {
    flex: 1;
    max-width: 400px;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text {
    flex: 1;
    position: relative;
}

.story-text {
    flex: 1;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -50px;
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: serif;
}

.story-box p {
    font-size: 1.15rem;
    color: var(--color-text-mutted);
}

.story-box .highlight-text {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin: 30px 0;
}

/* Solução / O Produto */
.product {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.product .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   BACKGROUND BLOBS (FORMAS AMORFAS COLORIDAS)
========================================= */
.blobs-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    animation: moveBlob 15s infinite alternate ease-in-out;
    border-radius: 50%;
}

.blob-1 {
    background: #FFB6C1;
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
}

.blob-2 {
    background: #FFE4B5;
    width: 400px;
    height: 400px;
    bottom: 0;
    right: -5%;
    animation-duration: 20s;
}

.blob-3 {
    background: #E8F0FE;
    width: 450px;
    height: 450px;
    top: 30%;
    left: 40%;
    animation-duration: 18s;
}

@keyframes moveBlob {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(40px, -40px);
    }
}

.section-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--color-text-mutted);
}

/* Features Grid Animado e Colorido */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px 30px;
    background: var(--color-surface);
    border-radius: var(--radius-large);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    background: var(--gradient-card);
    box-shadow: 0 40px 60px rgba(255, 123, 137, 0.15);
    border-color: rgba(255, 123, 137, 0.3);
    transform: translateY(-10px) scale(1.03);
}

.f-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.feature-card:hover .f-icon {
    transform: scale(1.15) rotate(5deg);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 123, 137, 0.3);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--color-text-mutted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Bônus (Cards Sutis Amarelos + Fundo com leveza Gourmet) */
.bonuses {
    padding: 150px 0 120px;
    background: linear-gradient(to bottom, #FFFBFA, #FFF5F6);
    /* Rosa muito pálido */
    position: relative;
}

.bonuses .syrup-drip-top svg path {
    fill: white;
    /* Ou var(--color-surface) dependendo da seção anterior */
}

/* Alinhando as cores sólidas onde necessário */
.product+.bonuses .syrup-drip-top svg path {
    fill: var(--color-bg);
    /* Cor de fundo da seção de cima (.product) */
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-bonus {
    background: white;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 4px solid var(--color-accent-yellow);
    border-bottom: 4px solid transparent;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-bonus:hover {
    background: var(--gradient-card);
    box-shadow: 0 40px 80px rgba(212, 140, 0, 0.15);
    border-bottom-color: var(--color-accent-yellow);
    transform: translateY(-10px) scale(1.03);
}

.card-bonus:hover .f-icon {
    transform: scale(1.15) rotate(-5deg);
    background: var(--color-accent-yellow);
    color: #D48C00;
}

.bonus-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid white;
}

.card-bonus:hover .bonus-img {
    transform: scale(1.1) translateY(-5px) rotate(3deg);
    box-shadow: 0 15px 25px rgba(212, 140, 0, 0.15);
}

.badge-free {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent-yellow);
    color: #D48C00;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.card-bonus h4 {
    font-size: 1.25rem;
    margin: 20px 0 12px;
}

.app-badge {
    display: inline-block;
    background: #E8F0FE;
    /* Azul claro e suave */
    color: #1967D2;
    /* Azul forte, remetendo a tecnologia e acessibilidade */
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-bonus p {
    font-size: 0.95rem;
    color: var(--color-text-mutted);
}

.val-strike {
    text-decoration: line-through;
    color: #CCC;
    font-size: 0.9rem;
    margin-top: 20px;
    display: block;
}

/* Prova Social (Apenas o texto e estrelas num grid clean) */
.reviews {
    padding: 100px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review-item {
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-large);
}

.stars {
    color: #FFD700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-dark);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.r-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-surface);
    border-radius: 50%;
}

.r-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* =========================================
   SISTEMA DE PARTÍCULAS (AÇÚCAR / GRANULADO FLUTUANTE)
========================================= */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 14px;
    border-radius: 4px;
    opacity: 0.6;
    animation: sprinkleFall linear infinite;
}

/* Cores dos "granulados" */
.p-pink {
    background-color: #FFB6C1;
}

.p-choc {
    background-color: #5C4033;
}

.p-gold {
    background-color: #FFD700;
}

.p-white {
    background-color: #FFFFFF;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes sprinkleFall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Oferta Múltipla */
.offer-section {
    padding: 140px 0;
    background-image: url('images/offer_bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(45, 36, 34, 0.8) 0%, rgba(21, 15, 13, 0.95) 100%);
    z-index: 0;
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: end;
    /* Faz o VIP puxar para cima */
}

/* Base dos Cartões */
.pricing-card {
    background: white;
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition);
}

.pricing-card.basic {
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-card.vip {
    background: white;
    border: 4px solid var(--color-primary);
    transform: scale(1.05);
    /* Âncoragem - Parece maior e melhor */
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 123, 137, 0.4);
}

.pricing-card h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.plan-desc {
    color: var(--color-text-mutted);
    font-size: 1rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plan-features li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

.price-area-small {
    margin: 30px 0;
    padding: 20px;
    background: var(--color-surface);
    border-radius: 16px;
    text-align: center;
}

.new-p-small {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
    margin: 5px 0;
}

.new-p-small span {
    font-size: 1.2rem;
    vertical-align: super;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-dark);
    border: 2px solid #E0DCDA;
    box-shadow: none;
}

.btn-outline:hover {
    background: #E0DCDA;
    color: var(--color-text-dark);
    box-shadow: none;
}

/* Garantia Minimalista */
.guarantee {
    padding: 80px 0;
}

.guarantee-wrap {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: var(--radius-large);
    background: var(--color-accent-blue);
}

.g-icon {
    font-size: 3rem;
}

.g-text h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.g-text p {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin: 0;
}

/* FAQ Redesign - Modern Accordion & Decor */
.faq {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, var(--color-surface) 0%, #FFF5F6 100%);
    overflow: hidden;
}

.faq .container {
    position: relative;
    z-index: 2;
}

/* FAQ Background Imagens (TemaProduto) */
.faq-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    /* Maior transparência para não atrapalhar leitura */
}

.decor-img {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    /* Desfoque menor para as imagens, quase como foto desfocada no fundo */
    animation: floatDecorImg 18s infinite alternate ease-in-out;
    max-width: 250px;
    mix-blend-mode: multiply;
    /* Mistura legal com o degradê do fundo */
}

.decor-img.img-1 {
    top: -50px;
    left: -80px;
}

.decor-img.img-2 {
    bottom: -80px;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 22s;
    transform: rotate(45deg);
}

.decor-img.img-3 {
    top: 40%;
    left: 70%;
    animation-delay: -10s;
    max-width: 180px;
    transform: rotate(-30deg);
}

@keyframes floatDecorImg {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    100% {
        transform: translateY(-40px) scale(1.05) rotate(15deg);
    }
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(255, 123, 137, 0.15);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--color-primary);
    padding-bottom: 10px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-mutted);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-inner {
    padding: 0 30px 30px 30px;
    color: var(--color-text-mutted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-answer-inner p {
    margin-bottom: 0;
}

.faq-answer-inner strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 24px;
    font-size: 0.85rem;
    color: #999;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .story-box {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
    }

    .quote-icon {
        position: static;
        margin: 0 auto 30px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-wrap {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 24px;
    }

    .pricing-card.vip {
        transform: scale(1);
    }

    .pricing-grid {
        gap: 50px;
    }
}

/* =========================================
   ANIMAÇÕES DE ENTRADA (SCROLL REVEAL)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}