/*
=============================================================================
DESIGN SYSTEM — IA para Pegue & Monte
PALETA: Neon Gradiente (dark navy + ciano-azul-roxo-rosa-laranja)
TIPOGRAFIA: Montserrat (tipografia oficial da marca IA para Pegue & Monte)
HERO: Silk Shader (WebGL flowing fabric)
DNA VISUAL:
  - Elemento recorrente: borda esquerda em cobre (#7D3CFF) como marcador
  - Tratamento de mídia: fotos com leve overlay terroso + border-radius 8px
  - Movimento de assinatura: fade-up suave com stagger (AOS)
  - Detalhe tipográfico: overlines uppercase com letter-spacing largo e borda-left
=============================================================================
*/

:root {
    /* ─── Paleta Oficial da Marca (brand kit IA para Pegue & Monte) ─── */
    --brand-cyan: #00E5FF;
    --brand-blue: #3A7BFF;
    --brand-purple: #7D3CFF;
    --brand-pink: #FF2EA6;
    --brand-orange: #FF8A00;
    --brand-ink: #0D1117;

    /* Gradiente-assinatura da marca (ciano → azul → roxo → rosa → laranja) */
    --brand-gradient: linear-gradient(90deg, #00E5FF 0%, #3A7BFF 25%, #7D3CFF 50%, #FF2EA6 75%, #FF8A00 100%);
    --brand-gradient-135: linear-gradient(135deg, #00E5FF 0%, #3A7BFF 25%, #7D3CFF 50%, #FF2EA6 75%, #FF8A00 100%);

    /* ─── Paleta Principal ─── */
    --color-primary: #7D3CFF;
    --color-primary-light: #00E5FF;
    --color-primary-dark: #3A7BFF;
    --color-primary-muted: rgba(125, 60, 255, 0.15);

    --color-secondary: #1B2440;
    --color-secondary-light: #28345C;
    --color-secondary-dark: #111726;

    --color-accent: #00E5FF;
    --color-accent-light: #7FF0FF;
    --color-accent-dark: #00B8D4;

    /* ─── Cores de Base ─── */
    --color-bg: #0D1117;
    --color-surface: #131B26;
    --color-surface-alt: #0A0F17;
    --color-text: #FFFFFF;
    --color-text-muted: rgba(250, 240, 230, 0.6);
    --color-text-inverse: #0D1117;
    --color-border: rgba(125, 60, 255, 0.2);
    --color-border-light: rgba(125, 60, 255, 0.1);

    /* ─── Cores Utilitárias ─── */
    --color-error: #E74C3C;
    --color-success: #27AE60;

    /* ─── Silk Shader ─── */
    --silk-bg: #0D1117;
    --silk-color: #7D3CFF;
    --silk-speed: 0.3;
    --silk-scale: 1.0;
    --silk-rotation: 0.0;
    --silk-noise-intensity: 0.04;

    /* ─── Tipografia ─── */
    --font-heading: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Montserrat', system-ui, sans-serif;

    /* ─── Escala Tipográfica ─── */
    --text-display: clamp(2.5rem, 5.5vw, 4.5rem);
    --text-h1: clamp(2.25rem, 5vw, 3.75rem);
    --text-h2: clamp(1.75rem, 3.5vw, 2.75rem);
    --text-h3: clamp(1.375rem, 2.5vw, 1.875rem);
    --text-h4: clamp(1.125rem, 2vw, 1.375rem);
    --text-h5: clamp(1rem, 1.5vw, 1.125rem);
    --text-h6: 1rem;
    --text-body: 1rem;
    --text-body-sm: 0.875rem;
    --text-caption: 0.75rem;
    --text-overline: 0.75rem;

    /* ─── Sombras ─── */
    --shadow-subtle: 0 1px 3px rgba(28, 20, 16, 0.3);
    --shadow-medium: 0 4px 16px rgba(28, 20, 16, 0.4);
    --shadow-dramatic: 0 12px 40px rgba(28, 20, 16, 0.6);

    /* ─── Espaçamento ─── */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --section-py: clamp(4rem, 10vw, 8rem);
    --container-px: clamp(1.25rem, 5vw, 2.5rem);

    /* ─── Animações ─── */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 600ms;
    --duration-cinematic: 1000ms;
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-snap: cubic-bezier(0.7, 0, 0.3, 1);
}

/* ─── Reset ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── Base ─── */
html {
    scroll-behavior: smooth;
}

/* Lenis override — quando o Lenis gerencia o scroll, desabilitamos scroll-behavior do CSS */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

/* ─── Container ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1400px;
}

/* ─── Seções ─── */
.section {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
}

.section--surface {
    background: var(--color-surface);
}

.section--surface-alt {
    background: var(--color-surface-alt);
}

/* ─── DNA Visual: Overline com borda esquerda ─── */
.overline {
    display: inline-block;
    font-size: var(--text-overline);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
    margin-bottom: var(--space-lg);
}

/* ─── Tipografia ─── */
.heading-display {
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: var(--text-h1); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--text-h2); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--text-h3); font-weight: 600; line-height: 1.2; }
h4, .h4 { font-size: var(--text-h4); font-weight: 600; line-height: 1.25; }
h5, .h5 { font-size: var(--text-h5); font-weight: 500; line-height: 1.3; }
h6, .h6 { font-size: var(--text-h6); font-weight: 600; line-height: 1.3; }

.text-muted { color: var(--color-text-muted); }
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }

/* ─── Botões ─── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary-dark), var(--color-primary));
    background-size: 300% auto;
    color: var(--color-text-inverse);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(125, 60, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
    z-index: 1;
    pointer-events: none;
}

.btn--primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(125, 60, 255, 0.35), 0 0 16px rgba(0, 229, 255, 0.2);
}

.btn--primary:hover::after {
    opacity: 1;
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--outline:hover {
    background: var(--color-primary-muted);
}

/* ─── Cards ─── */
.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    padding: var(--space-xl);
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ─── DNA Visual: Tratamento de mídia ─── */
.media-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(125, 60, 255, 0.1);
}

.media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.15), transparent);
    pointer-events: none;
}

.media-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(125, 60, 255, 0.2), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* ─── AOS (scroll animations) ─── */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slow) var(--ease-dramatic),
                transform var(--duration-slow) var(--ease-dramatic);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ─── .text-copper (como .text-gold na A Virada) ─── */
.text-copper {
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(125, 60, 255, 0.3);
}

/* ─── Ambient Canvas de Partículas ─── */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
    mix-blend-mode: screen;
}

@media (max-width: 991px) {
    #ambient-canvas {
        display: none;
    }
}

/* ─── Noise Overlay Global (body::after) ─── */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 998;
    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='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ─── Noise Overlay (reusável em seções) ─── */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    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='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ─── Light Leak Effects (Hero) ─── */
.light-leak {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    animation: lightLeakFadeIn 2s ease-out forwards;
}

.light-leak--1 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(125, 60, 255, 0.12) 0%, transparent 70%);
    top: -20vh;
    right: -10vw;
    filter: blur(80px);
    animation-delay: 0.5s;
}

.light-leak--2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    bottom: -15vh;
    left: -15vw;
    filter: blur(100px);
    animation-delay: 1s;
}

.light-leak--3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(176, 117, 72, 0.08) 0%, transparent 70%);
    top: 30%;
    left: 40%;
    filter: blur(120px);
    animation: lightLeakFadeIn 2s ease-out 1.5s forwards, lightLeakFloat 8s ease-in-out 3.5s infinite;
}

@keyframes lightLeakFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightLeakFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(2vw, -1vh) scale(1.05); }
    66% { transform: translate(-1vw, 1vh) scale(0.97); }
}

/* ─── Section Gradient Dividers ─── */
.pain-section::before,
.bento-section::before,
.modules-section::before,
.bonus-section::before,
.bio-section::before,
.testimonials-section::before,
.pricing-section::before,
.faq-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    pointer-events: none;
    z-index: 10;
}

.pain-section,
.bento-section,
.modules-section,
.bonus-section,
.bio-section,
.testimonials-section,
.pricing-section,
.faq-section {
    position: relative;
}

.pain-section::before { background: linear-gradient(to bottom, var(--color-bg), transparent); }
.bento-section::before { background: linear-gradient(to bottom, var(--color-bg), transparent); }
.modules-section::before { background: linear-gradient(to bottom, var(--color-bg), var(--color-surface)); }
.bonus-section::before { background: linear-gradient(to bottom, var(--color-surface), var(--color-surface-alt)); }
.bio-section::before { background: linear-gradient(to bottom, var(--color-surface-alt), var(--color-surface)); }
.testimonials-section::before { background: linear-gradient(to bottom, var(--color-surface), var(--color-bg)); }
.pricing-section::before { background: linear-gradient(to bottom, var(--color-bg), var(--color-surface)); }
.faq-section::before { background: linear-gradient(to bottom, var(--color-surface), var(--color-bg)); }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }

    #ambient-canvas {
        display: none;
    }

    .light-leak {
        display: none;
    }

    body::after {
        display: none;
    }
}

/* =============================================================================
   SECTION 1 — Hero
   ============================================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('/cdn-cgi/image/format=auto,quality=80,width=1920,fit=scale-down/images/freepik__photo-a-dark-brown-textured-background-with-subtle__51790.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 14, 14, 0.7), rgba(28, 20, 16, 0.6));
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem var(--space-2xl) 0;
    gap: var(--space-xl);
}

.hero-text {
    max-width: 640px;
}

.hero-logo {
    margin-bottom: var(--space-xl);
}

.hero-logo img {
    max-width: 220px;
    height: auto;
}

.pricing-section__logo {
    display: block;
    margin: 0 auto var(--space-xl);
    max-width: 280px;
    height: auto;
}

@media (max-width: 768px) {
    .hero-logo img {
        max-width: 160px;
        margin: 0 auto;
    }
    .pricing-section__logo {
        max-width: 220px;
    }
}

.hero-overline {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
}

.hero-headline {
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-accent);
    margin-bottom: 2.25rem;
    max-width: 52ch;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary-dark), var(--color-primary));
    background-size: 300% auto;
    color: var(--color-text-inverse);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(125, 60, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-cta:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(125, 60, 255, 0.4), 0 0 16px rgba(0, 229, 255, 0.25);
}

.hero-cta:hover::after {
    opacity: 1;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin-right: 0;
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    border-radius: 8px 0 0 8px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 16px 1.5rem 0;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-overline {
        border-left: none;
        padding-left: 0;
        border-bottom: 2px solid var(--color-primary);
        padding-bottom: 0.5rem;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        justify-content: center;
        order: 1;
    }

    .hero-image img {
        margin-right: 0;
        max-width: 280px;
        border-radius: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #silk-canvas { display: none; }
    .hero {
        background: linear-gradient(135deg, #0D1117 0%, #131B26 50%, #0D1117 100%);
    }
    .hero-marquee__track {
        animation: none;
    }
}

/* Hero 3D Marquee — copiado de references/effects/media/3d-marquee/ */
.m3d-scene {
    width: 100%;
    perspective: var(--m3d-perspective, 450px);
    overflow: hidden;
    padding: 60px 0;
}

.m3d-track-wrapper {
    transform: rotateX(var(--m3d-rotate, 12deg)) rotateZ(-4deg);
    transform-style: preserve-3d;
}

.m3d-track {
    display: flex;
    gap: var(--m3d-gap, 24px);
    width: max-content;
    animation: m3d-scroll var(--m3d-speed, 30s) linear infinite;
}

.m3d-track--reverse {
    animation-direction: reverse;
    margin-top: var(--m3d-gap, 24px);
}

@keyframes m3d-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.m3d-item {
    flex-shrink: 0;
    width: 280px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.m3d-item:hover {
    transform: translateZ(30px) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.m3d-item img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.m3d-fade {
    position: relative;
}

.m3d-fade::before,
.m3d-fade::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.m3d-fade::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg), transparent);
}

.m3d-fade::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg), transparent);
}

/* Posicionamento dentro do hero */
.hero-m3d {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
    z-index: 5;
    padding: 0;
    pointer-events: none;
    mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 60%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 60%, black 100%);
}

.hero-m3d .m3d-item {
    pointer-events: auto;
    width: 240px;
}

.hero-m3d .m3d-fade::before {
    background: linear-gradient(to right, rgba(28, 20, 16, 0.9), transparent);
}

.hero-m3d .m3d-fade::after {
    background: linear-gradient(to left, rgba(28, 20, 16, 0.9), transparent);
}

@media (max-width: 768px) {
    .hero-m3d {
        position: absolute;
        bottom: auto;
        top: 65%;
        transform: translateY(-50%);
        mask-image: none;
        -webkit-mask-image: none;
        pointer-events: none;
        z-index: 3;
    }
    .hero-m3d .m3d-item {
        width: 140px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .m3d-track {
        animation: none;
    }
    .m3d-item {
        transition: none;
    }
}

/* =============================================================================
   SECTION 2 — (removed, merged into hero)
   ============================================================================= */

.marquee-section {
    padding: var(--space-3xl) 0;
    background: var(--color-bg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.marquee-track {
    overflow: hidden;
}

.marquee-track__inner {
    display: flex;
    gap: var(--space-md);
    width: max-content;
}

.marquee-track__inner img {
    height: 240px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.marquee-track--left .marquee-track__inner {
    animation: marquee-left 40s linear infinite;
}

.marquee-track--right .marquee-track__inner {
    animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 768px) {
    .marquee-section {
        gap: var(--space-sm);
    }

    .marquee-track__inner {
        gap: var(--space-sm);
    }

    .marquee-track__inner img {
        height: 160px;
    }
}

/* =============================================================================
   SECTION 3 — O Mercado (Pain Section)
   ============================================================================= */

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

.pain-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
}

.pain-section__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 65ch;
}

.pain-section__cta {
    margin: var(--space-3xl) auto 0;
    display: block;
    width: fit-content;
}

/* =============================================================================
   SECTION 4 — Para Quem É (Bento Box)
   ============================================================================= */

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

.bento-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-3xl);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.bento-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: var(--space-2xl);
    box-shadow: inset 0 1px 0 rgba(125, 60, 255, 0.08);
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default),
                border-color var(--duration-normal) var(--ease-default);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium),
                0 0 30px rgba(125, 60, 255, 0.08),
                inset 0 1px 0 rgba(125, 60, 255, 0.15);
    border-color: rgba(125, 60, 255, 0.3);
}

.bento-card--tall {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-alt) 100%);
}

.bento-card__title {
    font-size: var(--text-h4);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.bento-card__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.bento-card__icon {
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   SECTION 5 — O Método (Parallax Background)
   ============================================================================= */

.method-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(rgba(28, 20, 16, 0.8), rgba(28, 20, 16, 0.8)),
        url('/cdn-cgi/image/format=auto,quality=80,width=1920,fit=scale-down/images/WhatsApp Image 2026-03-06 at 19.37.25.jpeg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: var(--section-py) 0;
    overflow: hidden;
}

.method-section > .noise-overlay {
    z-index: 3;
    opacity: 0.05;
}

.method-section > .container {
    position: relative;
    z-index: 5;
}

.method-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.method-section__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 65ch;
}

.method-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.method-badge {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: rgba(125, 60, 255, 0.08);
    border: 1px solid rgba(125, 60, 255, 0.4);
    border-radius: 999px;
    font-size: var(--text-caption);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 12px rgba(125, 60, 255, 0.08),
                inset 0 0 8px rgba(125, 60, 255, 0.04);
    backdrop-filter: blur(4px);
    transition: transform 0.3s var(--ease-default),
                box-shadow 0.3s var(--ease-default);
}

.method-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(125, 60, 255, 0.15),
                inset 0 0 8px rgba(125, 60, 255, 0.06);
}

.method-section__cta {
    margin-top: var(--space-2xl);
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.method-grid__image {
    align-self: start;
    margin-top: calc(-1 * var(--section-py));
}

.method-grid__image img {
    width: 120%;
    max-width: 120%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
    .method-section {
        min-height: auto;
        background-attachment: scroll;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .method-grid__image {
        margin-top: calc(-1 * var(--section-py));
        padding-top: 0;
        order: -1;
    }

    .method-grid__image img {
        width: 100%;
        max-width: 100%;
    }

    .method-badges {
        gap: var(--space-xs);
        justify-content: center;
    }
}

/* =============================================================================
   SECTION 6 — Os 18 Módulos (Stagger Grid)
   ============================================================================= */

.modules-section {
    background: var(--color-surface);
}

.modules-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-3xl);
}

.modules-accordion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.modules-accordion__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mod-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--duration-normal) var(--ease-default);
}

.mod-item.active {
    border-left: 3px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(125, 60, 255, 0.06);
}

.mod-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--color-text);
    text-align: left;
}

.mod-item__number {
    font-size: var(--text-body-sm);
    font-weight: 700;
    color: var(--color-primary);
    min-width: 2rem;
    opacity: 0.7;
}

.mod-item__title {
    flex: 1;
    font-size: var(--text-body);
    font-weight: 500;
}

.mod-item__chevron {
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-default);
}

.mod-item.active .mod-item__chevron {
    transform: rotate(180deg);
}

.mod-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mod-item__content ul {
    list-style: none;
    padding: 0 var(--space-lg) var(--space-lg);
    padding-left: calc(var(--space-lg) + 2rem + var(--space-md));
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mod-item__content ul li {
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
    padding-left: var(--space-md);
    position: relative;
    line-height: 1.5;
}

.mod-item__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.5;
}

.mod-item__content p {
    padding: 0 var(--space-lg) var(--space-lg);
    padding-left: calc(var(--space-lg) + 2rem + var(--space-md));
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modules-accordion {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   SECTION 1.5 — Teaser Video
   ============================================================================= */

.teaser-section {
    background: var(--color-bg);
    text-align: center;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.teaser-video {
    margin-top: var(--space-xl);
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-dramatic);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper--16x9 {
    padding-bottom: 56.25%;
}

.video-wrapper--9x16 {
    padding-bottom: 177.78%;
}

/* =============================================================================
   SECTION 3 — Pain (Split with images)
   ============================================================================= */

.pain-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-3xl);
    align-items: center;
}

.pain-grid__images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-self: center;
}

.pain-grid__images .media-frame img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.pain-section__cta {
    display: inline-block;
    margin-top: var(--space-2xl);
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .pain-grid__images {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .pain-grid__images .media-frame {
        min-width: 70vw;
        scroll-snap-align: start;
    }
}

/* =============================================================================
   SECTION 9 — Depoimentos em Vídeo (Vertical)
   ============================================================================= */

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-video-card {
    background: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.testimonial-video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(125, 60, 255, 0.06);
}

.testimonial-video-card .video-wrapper--9x16 {
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.testimonial-video-card__info {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.testimonial-video-card__name {
    font-weight: 600;
    font-size: var(--text-body);
    color: var(--color-text);
}

.testimonial-video-card__city {
    font-size: var(--text-body-sm);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .testimonials-video-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .testimonial-video-card__info {
        padding: var(--space-sm) var(--space-md);
    }
    .testimonial-video-card__name {
        font-size: var(--text-body-sm);
    }
    .testimonial-video-card__city {
        font-size: var(--text-caption);
    }
}

@media (max-width: 480px) {
    .testimonials-video-grid {
        max-width: 340px;
    }
}

/* =============================================================================
   SECTION 6.5 — Banner Destaque (Visual Break)
   ============================================================================= */

.highlight-banner {
    position: relative;
    background: var(--color-primary-muted);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4xl) 0;
    text-align: center;
    overflow: hidden;
}

.highlight-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(125, 60, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.highlight-banner__stat {
    position: relative;
    z-index: 1;
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary-dark), var(--color-primary));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: copperGradientShift 6s ease infinite;
}

@keyframes copperGradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.highlight-banner__label {
    position: relative;
    z-index: 1;
    font-size: var(--text-h4);
    font-weight: 300;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .highlight-banner__stat {
        font-size: var(--text-h1);
    }

    .highlight-banner__label {
        font-size: var(--text-body);
    }

    .highlight-banner__glow {
        width: 80vw;
        height: 80vw;
    }
}

/* =============================================================================
   SECTION 7 — Bônus (Card Stack)
   ============================================================================= */

.bonus-section {
    background: var(--color-surface-alt);
}

.bonus-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
}

.bonus-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.bonus-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    padding: var(--space-2xl);
    box-shadow: inset 0 1px 0 rgba(125, 60, 255, 0.08);
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default),
                border-color var(--duration-normal) var(--ease-default);
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium),
                0 0 30px rgba(125, 60, 255, 0.08),
                inset 0 1px 0 rgba(125, 60, 255, 0.15);
    border-color: rgba(125, 60, 255, 0.3);
}

.bonus-card__title {
    font-size: var(--text-h4);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.bonus-card__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.bonus-section__cta {
    display: block;
    width: fit-content;
    margin: var(--space-2xl) auto 0;
}

.bonus-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bonus-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.bonus-item__number {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-copper);
    line-height: 1;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.bonus-item__text {
    font-size: var(--text-body);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .bonus-card {
        padding: var(--space-xl);
    }

    .bonus-list {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   SECTION 8 — Quem É Tábita (Split Sticky)
   ============================================================================= */

.bio-section {
    background: var(--color-surface);
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    gap: var(--space-3xl);
    align-items: start;
}

.bio-image {
    position: sticky;
    top: 2rem;
}

.bio-text h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.bio-text__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.bio-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-2xl);
}

.bio-stat {
    display: flex;
    flex-direction: column;
}

.bio-stat__number {
    font-size: var(--text-h1);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(125, 60, 255, 0.25);
}

.bio-stat__plus {
    font-size: var(--text-h1);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(125, 60, 255, 0.25);
}

.bio-stat__label {
    font-size: var(--text-body-sm);
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: var(--space-xs);
}

@media (max-width: 768px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }

    .bio-image {
        position: static;
        order: -1;
        max-width: 320px;
        margin: 0 auto;
    }

    .bio-stats {
        gap: var(--space-xl);
    }
}

/* =============================================================================
   SECTION 9 — Prova Social (Placeholder)
   ============================================================================= */

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

.testimonials-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-3xl);
}

.testimonials-row {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-md);
}

.testimonial-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-width: 320px;
    background: var(--color-surface);
    border-radius: 8px;
    border-bottom: 3px solid var(--color-primary);
    padding: var(--space-2xl);
    position: relative;
    scroll-snap-align: start;
    box-shadow: inset 0 1px 0 rgba(125, 60, 255, 0.06);
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium),
                0 4px 20px rgba(125, 60, 255, 0.06),
                inset 0 1px 0 rgba(125, 60, 255, 0.1);
}

.testimonial-card__quote {
    position: absolute;
    top: 0.5rem;
    left: var(--space-lg);
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card__text {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card__city {
    font-size: var(--text-caption);
    font-weight: 400;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .testimonials-row {
        gap: var(--space-md);
        padding-left: var(--container-px);
        padding-right: var(--container-px);
    }

    .testimonial-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
    }
}

/* =============================================================================
   SECTION 10 — Investimento (Pricing Card)
   ============================================================================= */

.pricing-section {
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.pricing-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-dramatic), 0 0 60px rgba(125, 60, 255, 0.08);
}

.pricing-card__logo {
    display: block;
    margin: 0 auto var(--space-xl);
}

.pricing-card__title {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.pricing-card__checklist {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 480px;
    margin: 0 auto var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pricing-card__checklist li {
    font-size: var(--text-body);
    font-weight: 300;
    color: var(--color-text-muted);
    padding-left: var(--space-xl);
    position: relative;
    line-height: 1.5;
}

.pricing-card__checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary-muted);
    border: 2px solid var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E5FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card__divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-xl) auto;
    max-width: 120px;
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
    position: relative;
}

.pricing-card__price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(125, 60, 255, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.pricing-card__installment {
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
}

.pricing-card__original {
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.pricing-card__or {
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
}

.pricing-card__cash {
    font-size: var(--text-h3);
    font-weight: 400;
    color: var(--color-text);
    position: relative;
}

.pricing-card__cta {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
}

/* Dois botões de oferta (recorrente x à vista) */
.pricing-card__offers {
    display: flex;
    gap: var(--space-md);
    width: 100%;
    max-width: 640px;
    margin: 0 auto var(--space-md);
}

.offer-box {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-lg) var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    text-align: center;
}

.offer-box--cash {
    border-color: var(--color-primary);
}

.offer-box__installment {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.offer-box__ast {
    font-weight: 400;
}

.offer-box__label {
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
    min-height: 2.4em;
    display: flex;
    align-items: center;
}

.offer-box__cta {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    cursor: pointer;
    margin-top: auto;
}

@media (max-width: 600px) {
    .pricing-card__offers {
        flex-direction: column;
    }
    .offer-box__label {
        min-height: 0;
    }
}

.pricing-card__alt-payment {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px dashed var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.pricing-card__alt-label {
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
    font-weight: 300;
}

.pricing-card__alt-price {
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--color-primary);
}

.pricing-card__alt-note {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    font-weight: 400;
    text-align: center;
    max-width: 380px;
    line-height: 1.5;
}

.pricing-card__alt-cta {
    margin-top: var(--space-sm);
    width: 100%;
    max-width: 400px;
    padding: 0.875rem 1.5rem;
    font-size: var(--text-body);
    cursor: pointer;
}

.pricing-card__disclaimer {
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
    margin-top: var(--space-md);
}

/* Bônus Progressivos */
.pricing-bonuses {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: left;
}

.pricing-bonuses__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.pricing-bonuses__title {
    font-size: var(--text-h5);
    font-weight: 600;
    color: var(--color-primary);
}

.pricing-bonuses__timer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.timer__label {
    font-size: var(--text-caption);
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timer__digits {
    display: flex;
    align-items: center;
    gap: 2px;
}

.timer__block {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    min-width: 2.5rem;
}

.timer__block small {
    font-size: var(--text-caption);
    font-weight: 400;
    color: var(--color-text-muted);
    margin-left: 1px;
}

.timer__sep {
    color: var(--color-primary);
    font-weight: 700;
    opacity: 0.5;
}

.pricing-bonuses__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.bonus-progressive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg);
    border-radius: 8px;
    border-left: 3px solid var(--color-primary);
    transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
}

.bonus-progressive.expired {
    opacity: 0.3;
    text-decoration: line-through;
    border-left-color: var(--color-border-light);
    order: 99;
}

.bonus-progressive__name {
    font-size: var(--text-body-sm);
    font-weight: 400;
    color: var(--color-text);
}

.bonus-progressive__value {
    font-size: var(--text-body-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    white-space: nowrap;
    text-decoration: line-through;
}

.bonus-progressive.expired .bonus-progressive__value {
    color: var(--color-text-muted);
}

.pricing-bonuses__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

.pricing-bonuses__total strong {
    font-size: var(--text-h4);
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .pricing-bonuses__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pricing-card__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    color: var(--color-primary);
    font-size: var(--text-body-sm);
    font-weight: 500;
}

.pricing-card__guarantee svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(125, 60, 255, 0.3));
}

@media (max-width: 768px) {
    .pricing-card {
        padding: var(--space-2xl) var(--space-lg);
        border-radius: 12px;
    }
    .pricing-card__installment {
        font-size: var(--text-h3);
    }
    .pricing-card__logo {
        max-width: 200px;
    }
}

/* =============================================================================
   MODAL — Pré-Checkout
   ============================================================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-default);
    padding: var(--space-lg);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: var(--space-2xl);
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-dramatic);
    box-shadow: var(--shadow-dramatic);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--duration-fast) var(--ease-default);
}

.modal-close:hover {
    background: var(--color-primary-muted);
    color: var(--color-text);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-title {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.modal-subtitle {
    font-size: var(--text-body-sm);
    font-weight: 300;
    color: var(--color-text-muted);
}

.modal-parcelado-tip {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-align: left;
}

.modal-parcelado-tip img {
    flex-shrink: 0;
    border-radius: 6px;
    width: 80px;
    height: auto;
}

.modal-parcelado-tip p {
    font-size: var(--text-caption);
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.modal-parcelado-tip strong {
    color: var(--color-primary);
    font-weight: 600;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--text-body-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.875rem var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 300;
    transition: border-color var(--duration-fast) var(--ease-default),
                box-shadow var(--duration-fast) var(--ease-default);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-muted);
}

.form-input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.5;
}

.form-feedback {
    font-size: var(--text-body-sm);
    padding: var(--space-sm) 0;
    text-align: center;
    min-height: 1.5em;
}

.form-feedback.error {
    color: var(--color-error);
}

.form-feedback.success {
    color: var(--color-success);
}

/* intl-tel-input overrides */
.iti {
    width: 100%;
}

.iti__country-container {
    z-index: 10001;
}

.iti--container {
    z-index: 10002 !important;
}

.iti__dropdown-content {
    z-index: 10002 !important;
    background: var(--color-surface) !important;
    color: var(--color-text) !important;
    border-color: var(--color-border) !important;
}

.iti__search-input {
    background: var(--color-bg) !important;
    color: var(--color-text) !important;
    border-color: var(--color-border) !important;
}

.iti__country {
    color: var(--color-text) !important;
}

.iti__country:hover,
.iti__country--highlight {
    background: var(--color-surface-alt) !important;
}

.iti__dial-code {
    color: var(--color-text-muted) !important;
}

.iti__country-name {
    color: var(--color-text) !important;
}

.form-submit-btn {
    width: 100%;
    margin-top: var(--space-md);
    padding: 1rem;
    font-size: var(--text-body);
    cursor: pointer;
}

/* =============================================================================
   SECTION 11 — FAQ (Accordion)
   ============================================================================= */

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

.faq-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-2xl);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: var(--color-surface);
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    border-left: 3px solid transparent;
    transition: border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.faq-item.active {
    border-left-color: var(--color-primary);
    box-shadow: -4px 0 16px rgba(125, 60, 255, 0.1),
                inset 0 1px 0 rgba(125, 60, 255, 0.06);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-h5);
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    gap: var(--space-md);
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform var(--duration-normal) var(--ease-default);
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item__answer p {
    padding: 0 var(--space-lg) var(--space-lg);
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-item__answer {
    max-height: 600px;
}

@media (max-width: 768px) {
    .faq-item__question {
        padding: var(--space-md);
    }

    .faq-item__answer p {
        padding: 0 var(--space-md) var(--space-md);
    }
}

/* =============================================================================
   SECTION 12 — CTA Final
   ============================================================================= */

.final-cta-section {
    background: var(--color-surface-alt);
    padding-top: 0;
    padding-bottom: var(--section-py);
    overflow: hidden;
    position: relative;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 50%;
    background: radial-gradient(ellipse at bottom center, rgba(125, 60, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.final-cta-marquee {
    margin-bottom: var(--space-3xl);
}

.final-cta-marquee .marquee-track__inner img {
    height: 300px;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.overline--center {
    border-left: none;
    padding-left: 0;
}

.final-cta-section h2 {
    font-size: var(--text-h2);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.final-cta-section__body {
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 55ch;
    margin: 0 auto;
}

.final-cta-section__cta {
    margin-top: var(--space-xl);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.final-cta-section__whatsapp-label {
    margin-top: var(--space-2xl);
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
    font-weight: 300;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding: 0.875rem 2rem;
    background: #25D366;
    color: #fff;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--duration-fast) var(--ease-default),
                transform var(--duration-fast) var(--ease-default);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .final-cta-marquee .marquee-track__inner img {
        height: 200px;
    }

    .final-cta-section__cta {
        width: 100%;
        max-width: 400px;
        text-align: center;
    }
}

/*
=============================================================================
TEMA "IA PARA PEGUE & MONTE" — overrides da identidade neon
Baseado no brand kit oficial: fundo #0D1117, gradiente ciano→azul→roxo→rosa→
laranja, tipografia Montserrat, ícones em linha com glow e cantos arredondados.
=============================================================================
*/

/* ─── Tipografia da marca ─── */
body { font-weight: 400; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -0.02em; }

/* ─── Texto com gradiente da marca ─── */
.text-gradient,
.text-copper {
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    animation: brandGradientShift 8s linear infinite;
}

@keyframes brandGradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ─── Overline com traço em gradiente ─── */
.overline {
    border-left: none;
    padding-left: 0;
    color: var(--brand-cyan);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.18em;
}

.overline::before {
    content: '';
    width: 2.5rem;
    height: 2px;
    border-radius: 2px;
    background: var(--brand-gradient);
    flex-shrink: 0;
}

.overline--center { justify-content: center; }

/* ─── Botões com gradiente da marca + glow ─── */
.btn--primary {
    background: var(--brand-gradient);
    background-size: 200% auto;
    color: #fff;
    border-radius: 999px;
    padding: 1.05rem 2.5rem;
    letter-spacing: 0.01em;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08),
                0 10px 30px rgba(125, 60, 255, 0.35),
                0 0 40px rgba(0, 229, 255, 0.15);
}

.btn--primary:hover {
    background-position: right center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15),
                0 14px 40px rgba(255, 46, 166, 0.35),
                0 0 60px rgba(0, 229, 255, 0.25);
}

/* CTA "cápsula neon": moldura em gradiente com miolo escuro (igual ao flyer) */
.btn--neon {
    position: relative;
    display: inline-block;
    background: var(--brand-gradient);
    background-size: 200% auto;
    border-radius: 999px;
    padding: 2px;
    box-shadow: 0 0 30px rgba(125, 60, 255, 0.45), 0 0 60px rgba(0, 229, 255, 0.18);
    animation: brandGradientShift 8s linear infinite;
    transition: transform var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.btn--neon > span {
    display: block;
    background: #0A0E16;
    border-radius: 999px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.btn--neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255, 46, 166, 0.5), 0 0 80px rgba(0, 229, 255, 0.28);
}

/* ─── Fundo: grade técnica + orbs de luz ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(125, 60, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 75%);
}

body > * { position: relative; z-index: 1; }

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.glow-orb--cyan { background: rgba(0, 229, 255, 0.35); }
.glow-orb--purple { background: rgba(125, 60, 255, 0.4); }
.glow-orb--pink { background: rgba(255, 46, 166, 0.3); }

/* ─── Navegação sticky de âncoras ─── */
.brand-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(13, 17, 23, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(125, 60, 255, 0.18);
}

.brand-nav__inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.7rem var(--container-px);
}

.brand-nav__logo { height: 30px; width: auto; flex-shrink: 0; }

.brand-nav__links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.brand-nav__links::-webkit-scrollbar { display: none; }

.brand-nav__links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: color var(--duration-fast) var(--ease-default);
}

.brand-nav__links a:hover { color: var(--brand-cyan); }

.brand-nav__cta {
    flex-shrink: 0;
    font-size: 0.85rem !important;
    padding: 0.6rem 1.4rem !important;
}

@media (max-width: 991px) {
    .brand-nav__links { display: none; }
    .brand-nav__inner { justify-content: space-between; }
}

/* ─── Hero ─── */
.hero {
    background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(125, 60, 255, 0.28), transparent 70%),
                radial-gradient(ellipse 60% 50% at 15% 30%, rgba(0, 229, 255, 0.14), transparent 70%),
                radial-gradient(ellipse 60% 50% at 85% 60%, rgba(255, 46, 166, 0.12), transparent 70%),
                var(--color-bg) !important;
}

.hero-logo img {
    filter: drop-shadow(0 0 30px rgba(125, 60, 255, 0.45));
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradientShift 8s linear infinite;
}

.hero-headline { font-weight: 800; }

.hero-cta {
    border-radius: 999px;
}

.hero-note {
    margin-top: var(--space-md);
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

/* ─── Ícone neon (círculo com stroke em gradiente) ─── */
.neon-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(125, 60, 255, 0.06);
    box-shadow: inset 0 0 0 1.5px rgba(125, 60, 255, 0.45),
                0 0 22px rgba(125, 60, 255, 0.22);
    transition: box-shadow var(--duration-normal) var(--ease-default),
                transform var(--duration-normal) var(--ease-default);
}

.neon-icon svg { width: 28px; height: 28px; }

.neon-icon--cyan { box-shadow: inset 0 0 0 1.5px rgba(0, 229, 255, 0.5), 0 0 22px rgba(0, 229, 255, 0.22); }
.neon-icon--pink { box-shadow: inset 0 0 0 1.5px rgba(255, 46, 166, 0.5), 0 0 22px rgba(255, 46, 166, 0.22); }
.neon-icon--orange { box-shadow: inset 0 0 0 1.5px rgba(255, 138, 0, 0.5), 0 0 22px rgba(255, 138, 0, 0.22); }

*:hover > .neon-icon { transform: translateY(-2px); }

/* ─── Cards com borda em gradiente ─── */
.bento-card,
.bonus-card,
.mod-item,
.faq-item,
.benefit-item,
.transform-col,
.pricing-card,
.guarantee-card {
    background: linear-gradient(180deg, rgba(19, 27, 38, 0.9), rgba(10, 15, 23, 0.9));
    border: 1px solid rgba(125, 60, 255, 0.18);
    border-radius: 16px;
}

.bento-card { position: relative; overflow: hidden; }

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: var(--brand-gradient);
    opacity: 0.8;
}

.bento-card:hover,
.bonus-card:hover,
.benefit-item:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(125, 60, 255, 0.15);
}

.bento-card__icon { color: var(--brand-cyan); }

/* ─── Seção "Depois do curso" ─── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl);
    transition: border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.benefit-item__text {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

/* ─── Seção "Transformação" (hoje x depois) ─── */
.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.transform-col { padding: var(--space-2xl) var(--space-xl); }

.transform-col--now {
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(20, 22, 28, 0.9), rgba(10, 12, 16, 0.9));
}

.transform-col--after {
    border-color: rgba(125, 60, 255, 0.45);
    box-shadow: 0 0 40px rgba(125, 60, 255, 0.18);
}

.transform-col__title {
    font-size: var(--text-h4);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.transform-col--now .transform-col__title { color: rgba(255, 255, 255, 0.5); }

.transform-col--after .transform-col__title {
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradientShift 8s linear infinite;
}

.transform-list { list-style: none; display: grid; gap: var(--space-md); }

.transform-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    line-height: 1.5;
}

.transform-list li svg { flex-shrink: 0; margin-top: 3px; }

.transform-col--now .transform-list li { color: rgba(255, 255, 255, 0.55); }
.transform-col--now .transform-list li svg { color: rgba(255, 255, 255, 0.35); }
.transform-col--after .transform-list li { color: rgba(255, 255, 255, 0.9); }
.transform-col--after .transform-list li svg { color: var(--brand-cyan); }

.transform-quote {
    margin-top: var(--space-2xl);
    text-align: center;
    font-size: var(--text-h3);
    font-weight: 800;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .transform-grid { grid-template-columns: 1fr; }
}

/* ─── Oferta / Value stack ─── */
.pricing-card { padding: var(--space-2xl) var(--space-xl); }

.value-stack {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: var(--space-xl) 0;
    text-align: left;
}

.value-stack li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-md);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    background: rgba(125, 60, 255, 0.06);
    border: 1px solid rgba(125, 60, 255, 0.12);
    font-size: 0.95rem;
}

.value-stack li span:first-child { color: rgba(255, 255, 255, 0.88); }

.value-stack__price {
    font-weight: 700;
    color: var(--brand-cyan);
    white-space: nowrap;
}

.value-stack__price--free {
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-total {
    text-align: center;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.value-total s { opacity: 0.8; }

.offer-highlight {
    text-align: center;
    padding: var(--space-xl);
    border-radius: 16px;
    background: radial-gradient(ellipse at 50% 0%, rgba(125, 60, 255, 0.22), rgba(10, 15, 23, 0.6));
    border: 1px solid rgba(125, 60, 255, 0.35);
}

.offer-highlight__label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-cyan);
    margin-bottom: var(--space-sm);
}

.offer-highlight__price {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandGradientShift 8s linear infinite;
}

.offer-highlight__installment {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: var(--space-xs);
}

.offer-highlight__cta { margin-top: var(--space-xl); }

.offer-highlight__note {
    margin-top: var(--space-md);
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

/* ─── Garantia ─── */
.guarantee-card {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    max-width: 860px;
    margin: 0 auto;
}

.guarantee-seal {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 229, 255, 0.06);
    box-shadow: inset 0 0 0 2px rgba(0, 229, 255, 0.45), 0 0 40px rgba(0, 229, 255, 0.25);
}

.guarantee-seal strong {
    font-size: 1.9rem;
    line-height: 1;
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guarantee-seal small {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

@media (max-width: 640px) {
    .guarantee-card { flex-direction: column; text-align: center; }
}

/* ─── Módulos ─── */
.mod-item__number {
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.mod-item.active { border-color: rgba(0, 229, 255, 0.45); }
.mod-item__content ul li::before { color: var(--brand-cyan); }

/* ─── Bônus ─── */
.bonus-card { position: relative; overflow: hidden; }

.bonus-card__title { display: flex; align-items: center; gap: 0.75rem; }

.bonus-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    color: #fff;
    background: var(--brand-gradient);
    background-size: 200% auto;
    margin-bottom: var(--space-md);
}

/* ─── Banner de destaque ─── */
.highlight-banner__stat {
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── Faixa marquee de texto (assinatura da marca) ─── */
.brand-strip {
    overflow: hidden;
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(125, 60, 255, 0.2);
    border-bottom: 1px solid rgba(125, 60, 255, 0.2);
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.06), rgba(125, 60, 255, 0.1), rgba(255, 138, 0, 0.06));
}

.brand-strip__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: brandStripScroll 32s linear infinite;
}

.brand-strip__track span {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.brand-strip__track span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-cyan);
    box-shadow: 0 0 12px var(--brand-cyan);
}

@keyframes brandStripScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-strip__track,
    .text-gradient,
    .text-copper,
    .btn--neon,
    .hero-eyebrow { animation: none !important; }
}

/* ─── CTA final ─── */
.final-cta-section {
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(125, 60, 255, 0.3), transparent 70%),
                var(--color-bg);
}

/* ─── Rodapé ─── */
.site-footer {
    padding: var(--space-2xl) 0 var(--space-3xl);
    text-align: center;
    border-top: 1px solid rgba(125, 60, 255, 0.15);
}

.site-footer p {
    font-size: var(--text-body-sm);
    color: rgba(255, 255, 255, 0.45);
    max-width: 720px;
    margin: 0 auto var(--space-sm);
}

.site-footer__logo {
    height: 36px;
    width: auto;
    margin: 0 auto var(--space-lg);
    opacity: 0.85;
}

/* ─── Seções novas: ritmo de fundo + divisores ─── */
.benefits-section,
.transform-section,
.guarantee-section {
    position: relative;
}

.benefits-section { background: var(--color-bg); }
.transform-section { background: var(--color-surface); }
.guarantee-section { background: var(--color-bg); }

.benefits-section::before,
.transform-section::before,
.guarantee-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    pointer-events: none;
    z-index: 10;
}

.benefits-section::before { background: linear-gradient(to bottom, var(--color-surface), var(--color-bg)); }
.transform-section::before { background: linear-gradient(to bottom, var(--color-surface-alt), var(--color-surface)); }
.guarantee-section::before { background: linear-gradient(to bottom, var(--color-surface), var(--color-bg)); }

/* ─── Utilitários de conteúdo ─── */
.section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 760px;
    margin-bottom: var(--space-lg);
}

.section-closing {
    margin-top: var(--space-2xl);
    text-align: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
}

.section-cta-center {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* Listas dentro dos cards "para quem é" */
.bento-card__list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: var(--space-md);
}

.bento-card__list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.bento-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-gradient);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.bento-card .neon-icon { margin-bottom: var(--space-lg); }

/* Ícones menores dentro dos títulos de bônus */
.bonus-card__title .neon-icon {
    width: 44px;
    height: 44px;
}

.bonus-card__title .neon-icon svg { width: 22px; height: 22px; }

/* Nav — link da seção em foco */
.brand-nav__links a.is-active {
    color: var(--brand-cyan);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

/* Hero — foto da Tábita fundida com o fundo escuro */
.hero-image img {
    mask-image: radial-gradient(ellipse 78% 82% at 50% 45%, #000 55%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 78% 82% at 50% 45%, #000 55%, transparent 100%);
    filter: drop-shadow(0 0 60px rgba(125, 60, 255, 0.35));
}

/* Compensação do scroll para a nav sticky */
[id] { scroll-margin-top: 80px; }

/* Oferta — respiro extra no topo do card */
.pricing-card__logo { margin-bottom: var(--space-xl); }

@media (max-width: 768px) {
    .benefit-item { padding: var(--space-lg); gap: var(--space-md); }
    .neon-icon { width: 50px; height: 50px; }
    .neon-icon svg { width: 24px; height: 24px; }
    .value-stack li { flex-direction: column; gap: 0.2rem; }
    .guarantee-card { padding: var(--space-xl); }
}

/* ─── Ajustes finos pós-revisão visual ─── */

/* Hero: o marquee 3D é textura de fundo, nunca concorre com o texto */
.hero-m3d { opacity: 0.32; }

.hero-inner { position: relative; z-index: 3; }

.hero-inner::before {
    content: '';
    position: absolute;
    inset: -10% -6%;
    z-index: -1;
    background: radial-gradient(ellipse 65% 75% at 28% 50%, rgba(13, 17, 23, 0.94) 35%, rgba(13, 17, 23, 0) 75%);
    pointer-events: none;
}

.hero-subheadline {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 400;
}

/* Títulos de cards em branco (o roxo herdado competia com o gradiente) */
.bento-card__title,
.bonus-card__title,
.mod-item__title,
.faq-item__question > span {
    color: #fff;
}

/* Nav: mais compacta para caber até "Mentora" em telas de 1280px+ */
.brand-nav__links { gap: 1.05rem; }
.brand-nav__links a { font-size: 0.76rem; }

/* Bio: foto não fica sticky em telas menores que o texto */
@media (max-width: 991px) {
    .bio-image { position: static; }
}

/* Hero: a foto da Tábita ganha um "colchão" escuro para o marquee não vazar por baixo dela */
.hero-m3d { opacity: 0.22; }

.hero-image { position: relative; }

.hero-image::before {
    content: '';
    position: absolute;
    inset: -8% -12%;
    z-index: -1;
    background: radial-gradient(ellipse 62% 70% at 52% 55%, rgba(13, 17, 23, 0.96) 40%, rgba(13, 17, 23, 0) 78%);
    pointer-events: none;
}

/* A máscara da foto só suaviza as bordas extremas — o corpo continua opaco */
.hero-image img {
    mask-image: radial-gradient(ellipse 100% 96% at 50% 46%, #000 78%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 100% 96% at 50% 46%, #000 78%, transparent 100%);
}

/* O marquee é fundo: fica atrás do conteúdo do hero */
.hero-m3d { z-index: 1; }
.hero-m3d .m3d-fade::before { background: linear-gradient(to right, rgba(13, 17, 23, 0.9), transparent); }
.hero-m3d .m3d-fade::after { background: linear-gradient(to left, rgba(13, 17, 23, 0.9), transparent); }

@media (max-width: 768px) {
    .hero-m3d { z-index: 1; opacity: 0.16; }
}

.hero-m3d { opacity: 0.3; }

/*
=============================================================================
REFINO v2 — hero com a logo protagonista, glow neon orbital nos títulos,
ícones maiores, grain corrigido e botões com a cor forte por padrão.
=============================================================================
*/

/* ─── Grain: o SVG tinha viewBox sem background-size, então um tile de 200px
   era esticado para a tela inteira (daí o granulado gigante). Agora o tile
   repete no tamanho nativo e o ruído fica fino. ─── */
body::after,
.noise-overlay {
    background-size: 160px 160px;
    background-repeat: repeat;
    opacity: 0.028;
}

/* Grade técnica mais discreta e sem serrilhado */
body::before {
    background-size: 88px 88px;
    opacity: 0.55;
}

/* ─── Hero: a logo é o título ─── */
.hero-logo {
    margin: 0 0 var(--space-xl);
    max-width: 620px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(125, 60, 255, 0.5))
            drop-shadow(0 0 90px rgba(0, 229, 255, 0.22));
}

.hero-subheadline:first-of-type {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .hero-logo { max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 600px) {
    .hero-logo { max-width: 100%; }
}

/* ─── Títulos: cor estável + glow neon que orbita e muda de matiz ─── */
.text-gradient,
.text-copper {
    position: relative;
    display: inline-block;
    background: var(--brand-gradient);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: none;
    isolation: isolate;
}

/* A camada de trás repete o texto, desfocada — é o "tubo" de neon */
.text-gradient::after,
.text-copper::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: blur(18px) saturate(1.7);
    opacity: 0.9;
    pointer-events: none;
    animation: neonOrbit 7s ease-in-out infinite, neonHue 16s linear infinite;
    will-change: transform, filter;
}

@keyframes neonOrbit {
    0%   { transform: translate(-4px, 3px) scale(1.015); }
    25%  { transform: translate(3px, 4px) scale(1.03); }
    50%  { transform: translate(4px, -3px) scale(1.015); }
    75%  { transform: translate(-3px, -4px) scale(1.03); }
    100% { transform: translate(-4px, 3px) scale(1.015); }
}

@keyframes neonHue {
    from { filter: blur(18px) saturate(1.7) hue-rotate(0deg); }
    to   { filter: blur(18px) saturate(1.7) hue-rotate(360deg); }
}

/* Mesmo tratamento no preço e nos números de destaque */
.offer-highlight__price,
.highlight-banner__stat,
.mod-item__number,
.hero-eyebrow,
.transform-col--after .transform-col__title,
.guarantee-seal strong,
.value-stack__price--free {
    animation: none;
}

.offer-highlight__price {
    filter: drop-shadow(0 0 26px rgba(125, 60, 255, 0.55));
    animation: priceHue 16s linear infinite;
}

@keyframes priceHue {
    from { filter: drop-shadow(0 0 26px rgba(125, 60, 255, 0.55)) hue-rotate(0deg); }
    to   { filter: drop-shadow(0 0 26px rgba(125, 60, 255, 0.55)) hue-rotate(360deg); }
}

/* ─── Botões: a cor "de hover" passa a ser o estado padrão ─── */
.btn--primary {
    background-position: right center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12),
                0 12px 34px rgba(255, 46, 166, 0.3),
                0 0 50px rgba(255, 138, 0, 0.14);
}

.btn--primary:hover {
    background-position: left center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16),
                0 14px 40px rgba(125, 60, 255, 0.4),
                0 0 60px rgba(0, 229, 255, 0.3);
}

.btn--neon { background-position: right center; }
.btn--neon:hover { background-position: left center; }

/* ─── Ícones maiores ─── */
.neon-icon {
    width: 88px;
    height: 88px;
    background: radial-gradient(circle at 50% 40%, rgba(125, 60, 255, 0.16), rgba(125, 60, 255, 0.03) 70%);
    box-shadow: inset 0 0 0 1.5px rgba(125, 60, 255, 0.5),
                0 0 34px rgba(125, 60, 255, 0.28),
                inset 0 0 26px rgba(125, 60, 255, 0.12);
}

.neon-icon svg { width: 44px; height: 44px; }

.neon-icon--cyan {
    background: radial-gradient(circle at 50% 40%, rgba(0, 229, 255, 0.16), rgba(0, 229, 255, 0.03) 70%);
    box-shadow: inset 0 0 0 1.5px rgba(0, 229, 255, 0.55), 0 0 34px rgba(0, 229, 255, 0.28), inset 0 0 26px rgba(0, 229, 255, 0.12);
}

.neon-icon--pink {
    background: radial-gradient(circle at 50% 40%, rgba(255, 46, 166, 0.16), rgba(255, 46, 166, 0.03) 70%);
    box-shadow: inset 0 0 0 1.5px rgba(255, 46, 166, 0.55), 0 0 34px rgba(255, 46, 166, 0.28), inset 0 0 26px rgba(255, 46, 166, 0.12);
}

.neon-icon--orange {
    background: radial-gradient(circle at 50% 40%, rgba(255, 138, 0, 0.16), rgba(255, 138, 0, 0.03) 70%);
    box-shadow: inset 0 0 0 1.5px rgba(255, 138, 0, 0.55), 0 0 34px rgba(255, 138, 0, 0.28), inset 0 0 26px rgba(255, 138, 0, 0.12);
}

.bento-card .neon-icon { width: 96px; height: 96px; }
.bento-card .neon-icon svg { width: 48px; height: 48px; }

.bonus-card__title .neon-icon { width: 64px; height: 64px; }
.bonus-card__title .neon-icon svg { width: 32px; height: 32px; }

.bento-card__icon { width: 56px; height: 56px; }

/* Ícone reage ao card inteiro */
.bento-card:hover .neon-icon,
.benefit-item:hover .neon-icon,
.bonus-card:hover .neon-icon {
    transform: translateY(-3px) scale(1.06);
    filter: brightness(1.15);
}

.benefit-item { align-items: center; }

.guarantee-seal { width: 150px; height: 150px; }
.guarantee-seal strong { font-size: 2.6rem; }
.guarantee-seal small { font-size: 0.78rem; }

/* ─── Cards: profundidade no hover ─── */
.bento-card,
.bonus-card,
.benefit-item,
.transform-col {
    transition: transform var(--duration-normal) var(--ease-dramatic),
                border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.bento-card:hover,
.bonus-card:hover,
.benefit-item:hover {
    transform: translateY(-6px);
}

/* Varredura de luz percorrendo a borda superior do card */
.bento-card::before {
    background: linear-gradient(90deg, transparent, #00E5FF, #7D3CFF, #FF2EA6, transparent);
    background-size: 200% 100%;
    animation: cardEdgeSweep 6s linear infinite;
}

@keyframes cardEdgeSweep {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* ─── CTA: brilho que atravessa o botão ─── */
.btn--primary::before,
.btn--neon > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    animation: ctaShine 4.5s ease-in-out infinite;
    pointer-events: none;
}

.btn--neon > span { position: relative; overflow: hidden; }

@keyframes ctaShine {
    0%, 65% { left: -60%; }
    100% { left: 130%; }
}

/* ─── Faixa da marca: um pouco mais viva ─── */
.brand-strip__track span::after {
    animation: stripDotPulse 2.4s ease-in-out infinite;
}

@keyframes stripDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--brand-cyan); }
    50% { opacity: 0.45; box-shadow: 0 0 4px var(--brand-cyan); }
}

@media (prefers-reduced-motion: reduce) {
    .text-gradient::after,
    .text-copper::after,
    .offer-highlight__price,
    .bento-card::before,
    .btn--primary::before,
    .btn--neon > span::before,
    .brand-strip__track span::after { animation: none !important; }
}

@media (max-width: 768px) {
    .neon-icon { width: 72px; height: 72px; }
    .neon-icon svg { width: 36px; height: 36px; }
    .bento-card .neon-icon { width: 80px; height: 80px; }
    .bento-card .neon-icon svg { width: 40px; height: 40px; }
    .guarantee-seal { width: 120px; height: 120px; }
    .guarantee-seal strong { font-size: 2.1rem; }
}

/* A logo do hero ignora o max-width de 220px herdado do layout antigo */
.hero-logo img { max-width: 100%; }

/*
=============================================================================
GALERIAS — mascotes e temas criados com IA
=============================================================================
*/

.showcase-section {
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.showcase-section--alt { background: var(--color-surface); }

.showcase-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(to bottom, var(--color-surface), transparent);
}

/* ─── Mascotes: as ilustrações têm fundo claro, então ganham moldura ─── */
.mascot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.mascot-card {
    position: relative;
    margin: 0;
    padding: 3px;
    border-radius: 20px;
    background: var(--brand-gradient);
    background-size: 200% auto;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(125, 60, 255, 0.2);
    transition: transform var(--duration-normal) var(--ease-dramatic),
                box-shadow var(--duration-normal) var(--ease-default);
    animation: brandGradientShift 10s linear infinite;
}

.mascot-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: #fff;
    border-radius: 17px;
    display: block;
}

.mascot-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(255, 46, 166, 0.28);
}

/* ─── Temas: fotos reais dos kits montados ─── */
.tema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.tema-card {
    position: relative;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(125, 60, 255, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform var(--duration-normal) var(--ease-dramatic),
                border-color var(--duration-normal) var(--ease-default),
                box-shadow var(--duration-normal) var(--ease-default);
}

.tema-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.tema-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem 1.25rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(to top, rgba(6, 9, 14, 0.92), transparent);
}

.tema-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.14), transparent 45%, rgba(255, 46, 166, 0.14));
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.tema-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.6), 0 0 45px rgba(125, 60, 255, 0.25);
}

.tema-card:hover::after { opacity: 1; }

@media (max-width: 600px) {
    .mascot-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .tema-grid { grid-template-columns: 1fr; }
}

/* ─── Modal de captura ─── */
.modal-note {
    margin-top: var(--space-md);
    text-align: center;
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

.modal-content {
    border: 1px solid rgba(125, 60, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(125, 60, 255, 0.2);
}

.modal-title { color: #fff; }

@media (prefers-reduced-motion: reduce) {
    .mascot-card { animation: none !important; }
}

/* Grades das galerias: 4+3 mascotes e 3+3 temas, sem item órfão */
@media (min-width: 992px) {
    .mascot-grid { grid-template-columns: repeat(4, 1fr); }
    .tema-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 601px) and (max-width: 991px) {
    .mascot-grid { grid-template-columns: repeat(3, 1fr); }
    .tema-grid { grid-template-columns: repeat(2, 1fr); }
}

.modal-price {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-sm);
}

.modal-price strong {
    font-size: 1.35rem;
    background: var(--brand-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Preço no formato da Hotmart: parcela em destaque, à vista logo abaixo */
.offer-highlight__price sup {
    font-size: 0.4em;
    vertical-align: super;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

.offer-highlight__installment strong { color: #fff; }

.offer-highlight__note small {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    opacity: 0.75;
}

/* "12x de" acima do valor, para o preço nunca quebrar em duas linhas */
.offer-highlight__price {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    white-space: nowrap;
}

.offer-highlight__price em {
    display: block;
    font-style: normal;
    font-size: 0.32em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.1em;
}

/* o "12x de" precisa de cor própria: dentro de um pai com text-fill
   transparente, o filho sem background herda a transparência e some */
.offer-highlight__price em {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.88);
    color: rgba(255, 255, 255, 0.88);
    background: none;
}

/*
=============================================================================
REFINO v3 — hero sem recortes, fotos na proporção original, grades centradas
=============================================================================
*/

/* ─── Hero: fim dos "colchões" escuros com borda visível ───
   Os pseudo-elementos atrás do texto e da foto criavam retângulos/elipses que
   terminavam de forma abrupta. A legibilidade agora vem de um véu que cobre a
   seção inteira e de um marquee mais discreto — sem limites aparentes. */
.hero-inner::before,
.hero-image::before { content: none !important; }

.hero-m3d {
    opacity: 0.16;
    mask-image: linear-gradient(to right, transparent 0%, transparent 34%, black 62%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 34%, black 62%, black 88%, transparent 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(100deg, rgba(13, 17, 23, 0.94) 0%, rgba(13, 17, 23, 0.86) 34%, rgba(13, 17, 23, 0.35) 58%, rgba(13, 17, 23, 0.1) 100%);
}

.hero-inner { z-index: 3; }

/* Glow da logo e da foto: halo largo e difuso, sem contorno de caixa */
.hero-logo img {
    filter: drop-shadow(0 0 55px rgba(125, 60, 255, 0.4))
            drop-shadow(0 0 120px rgba(0, 229, 255, 0.14));
}

.hero-image img {
    mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
    filter: drop-shadow(0 0 90px rgba(125, 60, 255, 0.28));
}

/* Sem a top bar, o topo respira melhor */
.hero { padding-top: clamp(2.5rem, 6vw, 5rem); }
[id] { scroll-margin-top: 24px; }

/* ─── Carrossel de kits logo abaixo da hero ─── */
.hero-marquee-strip {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
    border-top: 1px solid rgba(125, 60, 255, 0.18);
    border-bottom: 1px solid rgba(125, 60, 255, 0.18);
}

.hero-marquee-strip .marquee-track__inner img {
    height: 260px;
    width: auto;
    border-radius: 14px;
    border: 1px solid rgba(125, 60, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-marquee-strip .marquee-track__inner img { height: 180px; }
}

/* ─── Fotos nas seções: proporção original, sem corte ─── */
.pain-grid__images .media-frame img,
.method-grid__image img,
.method-grid__image .media-frame img {
    max-height: none;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
}

.pain-grid__images .media-frame,
.method-grid__image .media-frame {
    max-width: 460px;
    margin-inline: auto;
}

/* ─── Seção "O mercado mudou": fundo mais escuro para o texto respirar ─── */
.method-section {
    background: linear-gradient(180deg, #080B11 0%, #0A0E15 50%, #080B11 100%) !important;
}

.method-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 13, 0.55);
    pointer-events: none;
    z-index: 0;
}

.method-section > .container { position: relative; z-index: 2; }

/* ─── Grades com última linha centralizada (7 mascotes, 8 benefícios) ─── */
.mascot-grid,
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 992px) {
    .mascot-grid > * { flex: 0 0 calc((100% - 3 * var(--space-lg)) / 4); }
    .benefits-grid > * { flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3); }
}

@media (min-width: 601px) and (max-width: 991px) {
    .mascot-grid > * { flex: 0 0 calc((100% - 2 * var(--space-lg)) / 3); }
    .benefits-grid > * { flex: 0 0 calc((100% - var(--space-lg)) / 2); }
}

@media (max-width: 600px) {
    .mascot-grid > * { flex: 0 0 calc((100% - var(--space-md)) / 2); }
    .benefits-grid > * { flex: 0 0 100%; }
}

/* ─── Hero: a foto tem fundo próprio (cinza-escuro do estúdio), que aparecia
   como um retângulo sobre o navy. As quatro bordas agora desvanecem, então a
   silhueta se funde com o fundo da seção. ─── */
.hero-image img {
    mask-image:
        linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 7%, #000 84%, transparent 100%);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, #000 7%, #000 84%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

/* O marquee não passa por trás da foto — só preenche a faixa à direita dela */
.hero-m3d {
    opacity: 0.13;
    mask-image: linear-gradient(to right, transparent 0%, transparent 36%, black 66%, black 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 36%, black 66%, black 86%, transparent 100%);
}

/* ─── Hero: foto com fundo removido (recorte U2-Net) ───
   Sem retângulo para mascarar: o brilho agora acompanha a silhueta dela,
   com um halo suave por trás em vez de uma caixa. */
.hero-image img {
    mask-image: none;
    -webkit-mask-image: none;
    filter:
        drop-shadow(0 0 28px rgba(125, 60, 255, 0.42))
        drop-shadow(0 0 70px rgba(0, 229, 255, 0.22))
        drop-shadow(0 26px 50px rgba(0, 0, 0, 0.55));
}

/* Halo difuso por trás da silhueta */
.hero-image::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 46%;
    width: 78%;
    height: 72%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 60, 255, 0.34) 0%, rgba(255, 46, 166, 0.14) 45%, transparent 72%);
    filter: blur(48px);
    pointer-events: none;
}

.hero-image { position: relative; isolation: isolate; }

/* A base da foto dissolve no fundo em vez de terminar em corte reto */
.hero-image img {
    mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
    mask-composite: add;
    -webkit-mask-composite: source-over;
}

/*
=============================================================================
HERO — fim das caixas
O retângulo atrás da foto vinha do marquee 3D: a máscara dele criava bordas
verticais nítidas e o trilho terminava reto em cima e embaixo. Ele saiu do
hero (o carrossel de kits logo abaixo já mostra os trabalhos), e o hero passa
a ser só fundo em degradê + logo + texto + a foto recortada com halo.
=============================================================================
*/

.hero::after { content: none; }

.hero {
    background:
        radial-gradient(ellipse 70% 55% at 78% 42%, rgba(125, 60, 255, 0.28), transparent 68%),
        radial-gradient(ellipse 90% 70% at 50% -12%, rgba(58, 123, 255, 0.16), transparent 70%),
        radial-gradient(ellipse 60% 50% at 12% 78%, rgba(255, 46, 166, 0.1), transparent 72%),
        var(--color-bg) !important;
}

/* Halo atrás da silhueta: elipse muito difusa, sem qualquer borda */
.hero-image::after {
    width: 96%;
    height: 86%;
    top: 48%;
    background: radial-gradient(ellipse at center, rgba(125, 60, 255, 0.4) 0%, rgba(58, 123, 255, 0.18) 38%, rgba(255, 46, 166, 0.1) 58%, transparent 74%);
    filter: blur(70px);
}

/* ⚠️ NÃO aplicar mask-image nesta foto.
   O navegador aplica o filter e só depois recorta pela máscara: os drop-shadows
   (o glow) ficavam clipados no retângulo do elemento e morriam numa borda reta —
   era essa a "caixa" atrás dela. Como a foto já vem recortada, a máscara não
   tem função nenhuma além de causar o problema. */
.hero-image img {
    mask-image: none !important;
    -webkit-mask-image: none !important;
    mask-composite: normal;
    -webkit-mask-composite: source-over;
    filter:
        drop-shadow(0 0 26px rgba(125, 60, 255, 0.38))
        drop-shadow(0 0 60px rgba(0, 229, 255, 0.18))
        drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

/* ─── Hero: nova foto (Tábita na bancada), mais larga que a anterior ───
   Mantém o mesmo tratamento de luz: glow acompanhando a silhueta, halo
   difuso atrás e nenhuma máscara (a máscara recortaria o glow). */
.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-left: auto;
}

.hero-image::after {
    width: 88%;
    height: 78%;
    top: 52%;
}

@media (min-width: 992px) {
    .hero-image { align-self: end; }
}

/* A foto ocupa melhor a coluna direita do hero */
.hero-image img { max-width: 760px; }

@media (min-width: 992px) {
    .hero-inner { align-items: end; }
    .hero-image { margin-bottom: -2rem; }
}

/* Logo do hero um pouco menor, para não competir com o texto */
.hero-logo { max-width: 460px; }

@media (max-width: 991px) {
    .hero-logo { max-width: 380px; }
}

@media (max-width: 600px) {
    .hero-logo { max-width: 78%; }
}

/* ─── Partículas do hero (poeira luminosa + filamentos de energia) ─── */
#hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    #hero-particles { display: none; }
}

/* Logo do hero mais contida */
.hero-logo { max-width: 370px; }

@media (max-width: 991px) {
    .hero-logo { max-width: 310px; }
}

@media (max-width: 600px) {
    .hero-logo { max-width: 64%; }
}

/* ─── Oferta alternativa: só o curso ─── */
.solo-section {
    position: relative;
    background: var(--color-bg);
}

.solo-section::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    pointer-events: none;
    z-index: 10;
    background: linear-gradient(to bottom, var(--color-surface), transparent);
}

.solo-card {
    margin-top: var(--space-2xl);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(19, 27, 38, 0.9), rgba(10, 15, 23, 0.9));
    border: 1px solid rgba(0, 229, 255, 0.22);
}

/* mais sóbria que a oferta principal: o combo continua sendo o destaque */
.offer-highlight--solo {
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.14), rgba(10, 15, 23, 0.6));
    border-color: rgba(0, 229, 255, 0.3);
}

.solo-card__nota {
    margin-top: var(--space-xl);
    text-align: center;
    font-size: var(--text-body-sm);
    color: var(--color-text-muted);
}

.solo-card__nota a {
    color: var(--brand-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 768px) {
    .solo-card { padding: var(--space-xl) var(--space-md); }
}
