/* =============================================================
   EDIÇÃO HIPNÓTICA — Cinematic Landing Page
   ============================================================= */

:root {
    /* Cores base */
    --bg-900: #050302;
    --bg-800: #0A0604;
    --bg-700: #120906;
    --bg-600: #1A0D08;

    /* Laranja cinematográfico (da imagem) */
    --orange-900: #5C1800;
    --orange-800: #8C2400;
    --orange-700: #C03300;
    --orange-600: #E84400;
    --orange-500: #FF5A1F;
    --orange-400: #FF7A3A;
    --orange-300: #FFA06B;
    --orange-200: #FFC89D;
    --orange-100: #FFE4CF;

    --glow: #FF6B2C;
    --glow-soft: rgba(255, 107, 44, 0.35);

    /* Texto */
    --text-white: #FFFFFF;
    --text-light: #F2E8DF;
    --text-muted: #A89A8C;
    --text-dim: #6B5E52;

    /* Espaçamento */
    --section-pad: clamp(80px, 10vw, 160px);
    --content-max: 1280px;

    /* Fontes */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

/* =============================================================
   RESET
   ============================================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-900);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

button, a {
    cursor: none;
}

ul { list-style: none; }

::selection {
    background: var(--orange-500);
    color: var(--bg-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--orange-600), var(--orange-800));
    border-radius: 4px;
}

/* =============================================================
   LOADER
   ============================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-900);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

.loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.loader__timecode {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--orange-500);
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0.7;
}

.loader__label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 6px;
    margin-bottom: 32px;
}

.loader__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 48px;
    background: linear-gradient(180deg, var(--orange-300) 0%, var(--orange-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 80px var(--glow-soft);
    animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loader__bar {
    width: 280px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 16px;
    overflow: hidden;
}

.loader__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-600), var(--orange-400));
    box-shadow: 0 0 20px var(--glow);
    transition: width 0.1s linear;
}

.loader__percent {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--orange-400);
    letter-spacing: 3px;
}

.loader__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
}

/* =============================================================
   CURSOR CUSTOMIZADO
   ============================================================= */

.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor__cross {
    position: absolute;
    background: var(--orange-400);
    box-shadow: 0 0 10px var(--glow);
}

.cursor__cross--v {
    top: 0; left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.cursor__cross--h {
    top: 50%; left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.cursor__dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 4px;
    height: 4px;
    background: var(--orange-400);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor.is-hover .cursor__dot {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 1px solid var(--orange-400);
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 107, 44, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}

.cursor-follower.is-hover {
    width: 80px;
    height: 80px;
    border-color: var(--orange-500);
}

/* =============================================================
   GRAIN + VIGNETTE GLOBAL
   ============================================================= */

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: overlay;
    animation: grainMove 0.8s steps(4) infinite;
}

@keyframes grainMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5%, 2%); }
    50% { transform: translate(3%, -4%); }
    75% { transform: translate(-2%, 3%); }
    100% { transform: translate(0, 0); }
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: 8999;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.5) 100%);
}

/* =============================================================
   SOUND TOGGLE
   ============================================================= */

.sound-toggle {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(10, 6, 4, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 107, 44, 0.2);
    color: var(--text-light);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    transition: all 0.3s var(--ease-out);
}

.sound-toggle:hover {
    border-color: var(--orange-500);
    background: rgba(255, 107, 44, 0.1);
}

.sound-toggle__icon {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.sound-toggle__icon span {
    width: 2px;
    background: var(--orange-400);
    height: 30%;
}

.sound-toggle.is-on .sound-toggle__icon span {
    animation: soundBars 1s ease-in-out infinite;
}

.sound-toggle.is-on .sound-toggle__icon span:nth-child(1) { animation-delay: 0s; }
.sound-toggle.is-on .sound-toggle__icon span:nth-child(2) { animation-delay: 0.2s; }
.sound-toggle.is-on .sound-toggle__icon span:nth-child(3) { animation-delay: 0.4s; }
.sound-toggle.is-on .sound-toggle__icon span:nth-child(4) { animation-delay: 0.1s; }

@keyframes soundBars {
    0%, 100% { height: 30%; }
    50% { height: 100%; }
}

/* =============================================================
   TIMELINE PROGRESS (scroll indicator)
   ============================================================= */

.timeline-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 500;
}

.timeline-progress__fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--orange-700), var(--orange-400), var(--orange-600));
    box-shadow: 0 0 20px var(--glow);
    transition: width 0.1s linear;
}

.timeline-progress__playhead {
    position: absolute;
    top: -6px;
    left: 0;
    width: 2px;
    height: 14px;
    background: var(--orange-400);
    box-shadow: 0 0 10px var(--glow);
    transition: left 0.1s linear;
}

.timeline-progress__playhead::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--orange-400);
}

/* =============================================================
   NAV
   ============================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 400;
    padding: 24px clamp(24px, 4vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(5, 3, 2, 0.85) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 11px;
    line-height: 1.1;
    letter-spacing: 3px;
    color: var(--text-light);
}

.nav__logo strong { color: var(--orange-400); letter-spacing: 2px; }

.nav__logo-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--glow);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.3);
    color: var(--orange-300);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
    background: var(--orange-600);
    border-color: var(--orange-500);
    color: var(--text-white);
    box-shadow: 0 0 30px var(--glow-soft);
}

.nav__cta svg { transition: transform 0.3s; }
.nav__cta:hover svg { transform: translateX(4px); }

/* =============================================================
   BOTÕES
   ============================================================= */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 36px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn__glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.btn__text, .btn__arrow {
    position: relative;
    z-index: 2;
}

.btn__arrow {
    transition: transform 0.3s;
}

.btn:hover .btn__arrow { transform: translateX(6px); }
.btn:hover .btn__glow { opacity: 0.6; }

.btn--primary {
    background: linear-gradient(135deg, var(--orange-600) 0%, var(--orange-500) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 24px var(--glow-soft), 0 0 0 1px rgba(255, 107, 44, 0.2);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    opacity: 0;
    transition: opacity 0.4s;
}

.btn--primary:hover::before { opacity: 1; }
.btn--primary:hover {
    box-shadow: 0 8px 40px var(--glow), 0 0 0 1px var(--orange-400);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.btn--ghost:hover {
    border-color: var(--orange-400);
    color: var(--orange-300);
}

.btn--mega {
    padding: 26px 48px;
    font-size: 16px;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--orange-700) 0%, var(--orange-500) 50%, var(--orange-600) 100%);
    background-size: 200% 200%;
    color: var(--text-white);
    box-shadow:
        0 8px 32px var(--glow-soft),
        0 0 0 1px rgba(255, 107, 44, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: btnShine 4s ease-in-out infinite;
    width: 100%;
    max-width: 560px;
}

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

.btn--mega:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px var(--glow),
        0 0 0 1px var(--orange-400),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--final {
    max-width: 640px;
    font-size: 18px;
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(255, 70, 0, 0.15) 0%, transparent 60%), var(--bg-900);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vmin;
    height: 120vmin;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--orange-600) 0%, transparent 50%);
    opacity: 0.25;
    filter: blur(80px);
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--orange-300);
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow);
    animation: logoPulse 1.5s ease-in-out infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.hero__line {
    display: block;
    position: relative;
}

.hero__line:nth-child(1) {
    font-size: clamp(48px, 8vw, 110px);
    color: var(--text-white);
}

.hero__line--accent {
    font-size: clamp(56px, 9vw, 140px) !important;
    background: linear-gradient(180deg, var(--orange-300) 0%, var(--orange-600) 60%, var(--orange-800) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 40px var(--glow-soft));
    margin: 8px 0 24px;
    animation: glitchText 8s steps(1) infinite;
}

@keyframes glitchText {
    0%, 98%, 100% { transform: translate(0, 0); }
    98.5% { transform: translate(-2px, 1px); filter: drop-shadow(0 0 40px var(--glow-soft)) hue-rotate(5deg); }
    99% { transform: translate(2px, -1px); filter: drop-shadow(0 0 40px var(--glow-soft)) hue-rotate(-5deg); }
    99.5% { transform: translate(0, 0); }
}

.hero__line--small {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-muted);
    letter-spacing: 0;
    line-height: 1.4;
}

.hero__line--highlight { color: var(--text-light); }

.hero__typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    min-height: 24px;
}

.hero__typed {
    color: var(--orange-400);
    border-right: 2px solid var(--orange-400);
    padding-right: 4px;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--orange-400); }
    51%, 100% { border-color: transparent; }
}

.hero__cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 4vw, 60px);
    flex-wrap: wrap;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1;
    color: var(--orange-400);
    margin-bottom: 8px;
}

.hero__stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text-muted);
    line-height: 1.3;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-dim);
    z-index: 3;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--orange-400));
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--orange-300);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero__corner {
    position: absolute;
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--orange-400);
    opacity: 0.5;
}

.hero__corner--tl { top: 90px; left: 32px; }
.hero__corner--tr { top: 90px; right: 32px; }
.hero__corner--bl { bottom: 32px; left: 32px; }
.hero__corner--br { bottom: 32px; right: 32px; }

.hero__corner--tl::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF0033;
    border-radius: 50%;
    margin-right: 6px;
    transform: translateY(1px);
    animation: recBlink 1.2s steps(2) infinite;
}

@keyframes recBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* =============================================================
   SECTION LABEL
   ============================================================= */

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--orange-400);
    margin-bottom: 48px;
}

.section-label__num {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 107, 44, 0.1);
    border: 1px solid rgba(255, 107, 44, 0.3);
    color: var(--orange-300);
}

.section-label__text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label__text::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--orange-500);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 84px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--text-white);
    margin-bottom: 48px;
    text-align: center;
}

.section-title--left { text-align: left; }
.section-title--center { text-align: center; }

.gradient-text {
    background: linear-gradient(135deg, var(--orange-300) 0%, var(--orange-600) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px var(--glow-soft));
}

/* =============================================================
   DIAGNÓSTICO (DOR)
   ============================================================= */

.diagnosis {
    padding: var(--section-pad) 24px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 50%, var(--bg-900) 100%);
}

.diagnosis__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.reveal-text {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-text.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text--accent {
    color: var(--orange-400);
    font-style: italic;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 72px;
}

.pain-card {
    position: relative;
    padding: 36px 32px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.6), rgba(10, 6, 4, 0.6));
    border: 1px solid rgba(255, 107, 44, 0.15);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.pain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 44, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.pain-card:hover::before { opacity: 1; }

.pain-card:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 70, 0, 0.2);
}

.pain-card__border {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
    animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.pain-card__num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--orange-400);
    margin-bottom: 24px;
}

.pain-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.pain-card p em { color: var(--orange-300); font-style: normal; }
.pain-card p strong { color: var(--text-light); }

.diagnosis__verdict {
    margin-top: 80px;
    text-align: center;
    position: relative;
    padding: 48px 24px;
}

.diagnosis__verdict-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, var(--orange-500));
}

.diagnosis__verdict p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--text-light);
    line-height: 1.4;
}

.diagnosis__verdict strong { color: var(--orange-400); }

/* =============================================================
   VISION (SUBCONSCIENTE)
   ============================================================= */

.vision {
    padding: var(--section-pad) 24px;
    position: relative;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 70, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 107, 44, 0.06) 0%, transparent 50%),
        var(--bg-800);
}

.vision__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.vision__title {
    margin-bottom: 80px;
}

.vision__scenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.vision__scene {
    text-align: center;
}

.vision__scene-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--orange-900) 0%, var(--bg-900) 100%);
    border: 1px solid rgba(255, 107, 44, 0.3);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision__scene-frame::before,
.vision__scene-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--orange-400);
}

.vision__scene-frame::before {
    top: 8px; left: 8px;
    border-right: 0;
    border-bottom: 0;
}

.vision__scene-frame::after {
    bottom: 8px; right: 8px;
    border-left: 0;
    border-top: 0;
}

.vision__scene-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-300), transparent);
    animation: sceneScan 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes sceneScan {
    0% { top: 0%; opacity: 0.6; }
    50% { top: 100%; opacity: 0; }
    100% { top: 0%; opacity: 0.6; }
}

.vision__scene-icon {
    width: 80px;
    height: 80px;
    color: var(--orange-300);
    filter: drop-shadow(0 0 20px var(--glow-soft));
}

.vision__scene-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.vision__scene-text strong { color: var(--orange-400); }

.vision__statement {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid rgba(255, 107, 44, 0.2);
    border-bottom: 1px solid rgba(255, 107, 44, 0.2);
}

.vision__statement p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-muted);
    margin-bottom: 12px;
}

.vision__statement p strong { color: var(--text-white); }

.vision__statement-title {
    margin-top: 32px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.3;
}

.vision__statement-title span {
    color: var(--orange-400);
    font-style: italic;
}

/* =============================================================
   MÉTODO
   ============================================================= */

.method {
    padding: var(--section-pad) 24px;
    position: relative;
    background: var(--bg-900);
}

.method__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.method__intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 80px;
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text-muted);
    line-height: 1.7;
}

.method__intro strong { color: var(--orange-300); }

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.pillar {
    position: relative;
    padding: 56px 40px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.6), rgba(10, 6, 4, 0.9));
    border: 1px solid rgba(255, 107, 44, 0.2);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 44, 0.08), transparent);
    transition: left 0.8s;
}

.pillar:hover::before { left: 100%; }

.pillar:hover {
    border-color: var(--orange-500);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(255, 70, 0, 0.2);
}

.pillar__num {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: rgba(255, 107, 44, 0.08);
    line-height: 1;
}

.pillar__icon {
    width: 64px;
    height: 64px;
    color: var(--orange-400);
    margin-bottom: 32px;
    filter: drop-shadow(0 0 15px var(--glow-soft));
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.pillar__subtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--orange-400);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pillar__desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.pillar__desc strong { color: var(--text-light); }

/* =============================================================
   MÓDULOS
   ============================================================= */

.modules {
    padding: var(--section-pad) 24px;
    background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
}

.modules__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.modules__intro {
    text-align: center;
    max-width: 640px;
    margin: -24px auto 64px;
    color: var(--text-muted);
    font-size: 17px;
}

.modules__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.module {
    position: relative;
    padding: 32px 28px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.4), rgba(10, 6, 4, 0.8));
    border: 1px solid rgba(255, 107, 44, 0.12);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.module::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 44, 0) 0%, rgba(255, 107, 44, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.module:hover::before { opacity: 1; }

.module:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 70, 0, 0.15);
}

.module__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.module:hover .module__scanline {
    opacity: 1;
    animation: moduleScan 1s linear;
}

@keyframes moduleScan {
    from { top: 0; }
    to { top: 100%; }
}

.module--highlight {
    border-color: rgba(255, 107, 44, 0.4);
    background: linear-gradient(180deg, rgba(60, 25, 10, 0.6), rgba(26, 13, 8, 0.9));
}

.module__star {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--orange-300);
    background: rgba(255, 107, 44, 0.15);
    padding: 4px 8px;
    border: 1px solid rgba(255, 107, 44, 0.3);
}

.module__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.module__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--orange-400);
}

.module__level {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
}

.module h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}

.module p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.module__topics {
    position: relative;
}

.module__topics li {
    padding: 8px 0 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 107, 44, 0.08);
    position: relative;
}

.module__topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange-400);
    font-weight: 700;
}

/* =============================================================
   CREATOR
   ============================================================= */

.creator {
    padding: var(--section-pad) 24px;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255, 70, 0, 0.1) 0%, transparent 50%),
        var(--bg-900);
}

.creator__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 440px) 1fr;
    gap: 80px;
    align-items: center;
}

.creator__photo-wrap {
    position: relative;
}

.creator__photo-frame {
    position: relative;
    padding: 16px;
    border: 1px solid rgba(255, 107, 44, 0.3);
    background: rgba(10, 6, 4, 0.5);
}

.creator__photo-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--orange-400);
}

.creator__photo-corner--tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.creator__photo-corner--tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.creator__photo-corner--bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.creator__photo-corner--br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.creator__photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange-700), var(--orange-900));
}

.creator__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.creator__photo-fallback {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, var(--orange-500) 0%, var(--orange-700) 40%, var(--bg-900) 100%);
    z-index: 1;
}

.creator__photo-fallback::after {
    content: 'KYRLIAN FONTOURA';
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--bg-900);
    white-space: nowrap;
}

.creator__photo-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange-300), transparent);
    z-index: 3;
    animation: photoScan 5s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes photoScan {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.creator__photo-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--orange-400);
}

.creator__content {}

.creator__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 107, 44, 0.1);
    border: 1px solid rgba(255, 107, 44, 0.3);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--orange-300);
    margin-bottom: 24px;
}

.creator__intro {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.creator__intro strong { color: var(--orange-400); }

.creator__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 107, 44, 0.2);
    border-bottom: 1px solid rgba(255, 107, 44, 0.2);
    margin-bottom: 40px;
}

.creator__stat-num {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--orange-400);
    line-height: 1;
    margin-bottom: 8px;
}

.creator__stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.creator__quote {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    font-style: italic;
    line-height: 1.5;
    color: var(--text-light);
    position: relative;
    padding: 0 32px;
}

.creator__quote-mark {
    color: var(--orange-400);
    font-size: 32px;
    font-family: var(--font-display);
    font-weight: 800;
}

.creator__quote-mark--end { display: inline-block; transform: translateY(8px); }

.creator__signature {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--orange-400);
    text-align: right;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */

.testimonials {
    padding: var(--section-pad) 24px;
    background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 50%, var(--bg-900) 100%);
}

.testimonials__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.testimonials__intro {
    text-align: center;
    max-width: 640px;
    margin: -24px auto 64px;
    color: var(--text-muted);
    font-size: 17px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial {
    padding: 32px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.4), rgba(10, 6, 4, 0.6));
    border: 1px solid rgba(255, 107, 44, 0.12);
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.testimonial:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 70, 0, 0.15);
}

.testimonial__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    font-size: 14px;
    border: 1px solid var(--orange-400);
    position: relative;
}

.testimonial__avatar::after {
    content: attr(data-initials);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 2px;
}

.testimonial__info span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial__result {
    padding: 12px 16px;
    background: rgba(255, 107, 44, 0.08);
    border-left: 3px solid var(--orange-500);
    margin-bottom: 20px;
}

.testimonial__result span {
    display: block;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--orange-400);
    margin-bottom: 4px;
}

.testimonial__result strong {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-white);
}

.testimonial p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial__stars {
    color: var(--orange-400);
    font-size: 14px;
    letter-spacing: 2px;
}

/* =============================================================
   WHO (Pra quem é)
   ============================================================= */

.who {
    padding: var(--section-pad) 24px;
    background: var(--bg-900);
}

.who__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.who__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.who__col {
    padding: 48px 36px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.3), rgba(10, 6, 4, 0.6));
    border: 1px solid rgba(255, 107, 44, 0.15);
    position: relative;
}

.who__col--yes {
    border-color: rgba(255, 107, 44, 0.4);
    background: linear-gradient(180deg, rgba(60, 25, 10, 0.4), rgba(26, 13, 8, 0.6));
}

.who__col-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 107, 44, 0.2);
}

.who__col-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}

.who__col--yes .who__col-icon {
    background: var(--orange-500);
    color: var(--text-white);
    box-shadow: 0 0 20px var(--glow-soft);
}

.who__col--no .who__col-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.who__col h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
}

.who__col ul li {
    padding: 14px 0 14px 32px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.who__col ul li:last-child { border-bottom: 0; }
.who__col ul li strong { color: var(--orange-400); }

.who__col--yes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--orange-400);
    font-weight: 700;
}

.who__col--no ul li {
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.15);
}

.who__col--no ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 14px;
    color: var(--text-dim);
    font-weight: 700;
}

.who__verdict {
    text-align: center;
    padding: 32px 24px;
    max-width: 780px;
    margin: 0 auto;
}

.who__verdict p {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--text-light);
    line-height: 1.5;
}

.who__verdict strong { color: var(--orange-400); }

/* =============================================================
   OFFER
   ============================================================= */

.offer {
    padding: var(--section-pad) 24px;
    background: linear-gradient(180deg, var(--bg-900) 0%, var(--bg-700) 50%, var(--bg-900) 100%);
    position: relative;
    overflow: hidden;
}

.offer__aurora {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140vmin;
    height: 140vmin;
    background: radial-gradient(circle, var(--orange-600) 0%, transparent 50%);
    opacity: 0.15;
    filter: blur(100px);
    animation: auroraPulse 10s ease-in-out infinite;
}

@keyframes auroraPulse {
    0%, 100% { opacity: 0.15; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.3; transform: translateX(-50%) scale(1.15); }
}

.offer__inner {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.offer__intro {
    text-align: center;
    max-width: 640px;
    margin: -24px auto 64px;
    color: var(--text-muted);
    font-size: 17px;
}

.stack {
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.5), rgba(10, 6, 4, 0.8));
    border: 1px solid rgba(255, 107, 44, 0.2);
    padding: 32px;
    margin-bottom: 40px;
}

.stack__item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 107, 44, 0.1);
    align-items: center;
}

.stack__item:last-of-type { border-bottom: 0; }

.stack__item-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.2);
}

.stack__item-body h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.stack__item-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.stack__item-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-400);
    white-space: nowrap;
}

.stack__item--final { background: rgba(255, 107, 44, 0.04); }

.stack__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 8px;
    margin-top: 12px;
    border-top: 2px solid var(--orange-500);
}

.stack__total span {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.stack__total-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-muted);
}

.strike {
    text-decoration: line-through;
    text-decoration-color: var(--orange-500);
    text-decoration-thickness: 3px;
}

/* PRICING BOX */
.offer__pricing {
    background: linear-gradient(180deg, rgba(255, 107, 44, 0.1), rgba(26, 13, 8, 0.9));
    border: 1px solid var(--orange-500);
    padding: 48px clamp(24px, 4vw, 56px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(255, 70, 0, 0.2);
}

.offer__pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 44, 0.1), transparent);
    animation: pricingShine 4s ease-in-out infinite;
}

@keyframes pricingShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.offer__pricing-header {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--orange-300);
    margin-bottom: 32px;
}

.offer__price {
    margin-bottom: 40px;
    position: relative;
}

.offer__price-from {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.offer__price-num {
    display: inline-flex;
    align-items: flex-start;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-white);
    line-height: 0.9;
    filter: drop-shadow(0 0 40px var(--glow));
}

.offer__price-currency {
    font-size: 32px;
    margin-top: 16px;
    margin-right: 4px;
    color: var(--orange-300);
}

.offer__price-value {
    font-size: clamp(72px, 12vw, 140px);
    background: linear-gradient(180deg, var(--orange-200) 0%, var(--orange-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offer__price-value span {
    font-size: 0.4em;
    vertical-align: top;
    margin-top: 0.5em;
    display: inline-block;
}

.offer__price-or {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--orange-300);
    letter-spacing: 2px;
    margin-top: 12px;
}

.offer__discount {
    max-width: 420px;
    margin: 0 auto 40px;
}

.offer__discount-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
    overflow: hidden;
}

.offer__discount-fill {
    height: 100%;
    width: 98%;
    background: linear-gradient(90deg, var(--orange-700), var(--orange-400));
    box-shadow: 0 0 20px var(--glow);
    animation: fillGrow 2s var(--ease-out) forwards;
}

@keyframes fillGrow {
    from { width: 0%; }
    to { width: 98%; }
}

.offer__discount-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.offer__discount-text strong {
    color: var(--orange-400);
    font-size: 14px;
}

.offer__countdown {
    margin-bottom: 40px;
}

.offer__countdown-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--orange-400);
    margin-bottom: 16px;
}

.offer__countdown-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.offer__countdown-box {
    min-width: 80px;
    padding: 16px 20px;
    background: rgba(10, 6, 4, 0.8);
    border: 1px solid var(--orange-500);
    position: relative;
}

.offer__countdown-box span {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-300);
    line-height: 1;
}

.offer__countdown-box small {
    display: block;
    margin-top: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.offer__trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 107, 44, 0.15);
}

.offer__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.offer__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange-400);
}

/* GARANTIA */
.guarantee {
    margin-top: 48px;
    padding: 48px clamp(24px, 4vw, 48px);
    background: linear-gradient(135deg, rgba(26, 13, 8, 0.6), rgba(10, 6, 4, 0.8));
    border: 1px solid rgba(255, 107, 44, 0.3);
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: center;
}

.guarantee__seal {
    position: relative;
    width: 140px;
    height: 140px;
}

.guarantee__seal-svg {
    width: 100%;
    height: 100%;
    color: var(--orange-400);
    animation: sealSpin 20s linear infinite;
}

@keyframes sealSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.guarantee__seal-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.guarantee__seal-center strong {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--orange-400);
    line-height: 1;
}

.guarantee__seal-center span {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-top: 4px;
}

.guarantee__content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.guarantee__content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.guarantee__content strong { color: var(--orange-300); }

.guarantee__highlight {
    margin-top: 16px !important;
    font-family: var(--font-display);
    font-size: 17px !important;
    color: var(--orange-400) !important;
    font-weight: 600;
}

/* =============================================================
   FAQ
   ============================================================= */

.faq {
    padding: var(--section-pad) 24px;
    background: var(--bg-900);
}

.faq__inner {
    max-width: 880px;
    margin: 0 auto;
}

.faq__list {
    margin-top: 48px;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 107, 44, 0.15);
    transition: all 0.4s var(--ease-out);
}

.faq__item[open] {
    background: linear-gradient(180deg, rgba(255, 107, 44, 0.04), transparent);
}

.faq__item summary {
    padding: 28px 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color 0.3s;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary:hover { color: var(--orange-400); }

.faq__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--orange-500);
    color: var(--orange-400);
    font-size: 18px;
    transition: all 0.4s var(--ease-out);
    flex-shrink: 0;
}

.faq__item[open] .faq__icon {
    background: var(--orange-500);
    color: var(--text-white);
    transform: rotate(45deg);
}

.faq__content {
    padding-bottom: 28px;
    padding-right: 56px;
}

.faq__content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* =============================================================
   FINAL CTA
   ============================================================= */

.final-cta {
    padding: var(--section-pad) 24px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(255, 70, 0, 0.15) 0%, transparent 60%),
        var(--bg-900);
    text-align: center;
}

.final-cta__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}

.final-cta__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vmin;
    height: 80vmin;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--orange-500) 0%, transparent 60%);
    opacity: 0.2;
    filter: blur(80px);
    z-index: 0;
    animation: auroraPulse 6s ease-in-out infinite;
}

.final-cta__inner {
    position: relative;
    z-index: 3;
    max-width: 880px;
    margin: 0 auto;
}

.final-cta__timecode {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--orange-400);
    margin-bottom: 32px;
}

.final-cta__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-white);
    margin-bottom: 64px;
}

.final-cta__choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

.final-cta__choice {
    padding: 32px;
    background: linear-gradient(180deg, rgba(26, 13, 8, 0.4), rgba(10, 6, 4, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.final-cta__choice--a {
    opacity: 0.6;
}

.final-cta__choice--b {
    border-color: var(--orange-500);
    background: linear-gradient(180deg, rgba(60, 25, 10, 0.5), rgba(26, 13, 8, 0.8));
    box-shadow: 0 16px 48px rgba(255, 70, 0, 0.15);
}

.final-cta__choice-tag {
    display: inline-block;
    padding: 4px 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.final-cta__choice--a .final-cta__choice-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta__choice--b .final-cta__choice-tag {
    background: var(--orange-500);
    color: var(--text-white);
}

.final-cta__choice p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

.final-cta__choice--b p { color: var(--text-light); }
.final-cta__choice strong { color: var(--orange-400); }

.final-cta__bridge {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-light);
    margin-bottom: 40px;
}

.final-cta__ps {
    margin-top: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
    padding: 48px 24px 32px;
    background: var(--bg-900);
    border-top: 1px solid rgba(255, 107, 44, 0.1);
}

.footer__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.footer__brand strong { color: var(--orange-400); }

.footer__dot {
    width: 8px;
    height: 8px;
    background: var(--orange-500);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--glow);
}

.footer__copy {
    font-size: 12px;
    color: var(--text-dim);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--orange-400); }

.footer__disclaimer {
    max-width: var(--content-max);
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__disclaimer p {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.3px;
}

/* =============================================================
   RESPONSIVO
   ============================================================= */

@media (max-width: 1024px) {
    .creator__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .creator__photo-wrap {
        max-width: 440px;
        margin: 0 auto;
    }

    .guarantee {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee__seal {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    button, a { cursor: pointer; }
    .cursor, .cursor-follower { display: none; }

    .nav { padding: 16px 20px; }
    .nav__logo { font-size: 10px; }
    .nav__cta { padding: 8px 14px; font-size: 10px; }

    .hero__corner { font-size: 9px; }
    .hero__corner--tl { top: 70px; left: 16px; }
    .hero__corner--tr { top: 70px; right: 16px; }
    .hero__corner--bl { bottom: 16px; left: 16px; }
    .hero__corner--br { bottom: 16px; right: 16px; }

    .hero__stats { flex-direction: column; gap: 24px; }
    .hero__stat-divider { width: 40px; height: 1px; }

    .stack { padding: 20px; }
    .stack__item { grid-template-columns: 44px 1fr; }
    .stack__item-value {
        grid-column: 2 / -1;
        text-align: right;
        font-size: 15px;
    }

    .offer__pricing { padding: 32px 20px; }
    .offer__countdown-box { min-width: 70px; padding: 12px 10px; }
    .offer__countdown-box span { font-size: 26px; }

    .creator__stats { grid-template-columns: 1fr; }

    .section-title { font-size: clamp(32px, 9vw, 48px); }

    .sound-toggle { bottom: 16px; left: 16px; padding: 10px 12px; }

    .final-cta__choices { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero__cta-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .offer__countdown-grid { gap: 8px; }
    .offer__trust { flex-direction: column; align-items: center; }
}

/* =============================================================
   REDUCED MOTION
   ============================================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
