        @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap");

        :root {
            --bg-main: #f7ead1;
            --bg-card: #fff8ec;
            --text-primary: #1f3f83;
            --text-secondary: #62739c;
            --accent-blue: #2f69d4;
            --accent-glow: linear-gradient(135deg, #eea11b 0%, #ffc34a 40%, #2f69d4 100%);
            --border-subtle: #dcc39d;
            --bg: var(--bg-main);
            --bg-deep: #ecd5ad;
            --surface: rgba(255, 248, 233, 0.9);
            --surface-strong: rgba(255, 249, 237, 0.98);
            --surface-soft: rgba(255, 244, 224, 0.94);
            --glass-base: rgba(255, 248, 233, 0.72);
            --glass-strong: rgba(255, 245, 222, 0.84);
            --glass-soft: rgba(255, 243, 219, 0.82);
            --glass-stroke: rgba(47, 105, 212, 0.18);
            --glass-stroke-strong: rgba(238, 161, 27, 0.28);
            --glass-highlight: rgba(255, 255, 255, 0.94);
            --glass-blur: 24px;
            --text: var(--text-primary);
            --muted: var(--text-secondary);
            --muted-strong: #4e638f;
            --gold: #eea11b;
            --gold-soft: #ffc34a;
            --blue: #2f69d4;
            --blue-soft: #6b91e6;
            --blue-rgb: 47, 105, 212;
            --gold-rgb: 238, 161, 27;
            --cream-rgb: 247, 234, 209;
            --ink-rgb: 31, 63, 131;
            --particle-start: #eea11b;
            --particle-end: #2f69d4;
            --line: rgba(31, 63, 131, 0.12);
            --shadow: 0 18px 40px rgba(105, 72, 16, 0.12);
            --radius-xl: 24px;
            --radius-lg: 18px;
            --radius-md: 12px;
            --container: 1180px;
            --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
            --transition: 400ms var(--ease-premium);
            --transition-fast: 240ms var(--ease-premium);
            --transition-slow: 700ms var(--ease-premium);
            --mobile-bar-height: 92px;
        }

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

        html {
            scroll-behavior: smooth;
            background: var(--bg-main);
        }

        html,
        body {
            color: var(--text-primary);
            background: var(--bg-main);
        }

        body {
            position: relative;
            isolation: isolate;
            min-height: 100vh;
            font-family: "Inter", sans-serif;
            color: var(--text-primary);
            background: var(--bg-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.faq-dialog-open {
            overflow: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                radial-gradient(circle at 12% 14%, rgba(var(--gold-rgb), 0.28), transparent 24%),
                radial-gradient(circle at 84% 12%, rgba(var(--blue-rgb), 0.2), transparent 28%),
                radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.52), transparent 26%),
                radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.94), transparent 36%);
            opacity: 1;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 24%, rgba(255, 255, 255, 0.05) 68%, transparent 100%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%);
            mix-blend-mode: screen;
            opacity: 0.9;
        }

        .particle-canvas {
            position: fixed;
            inset: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            display: block;
            background: var(--bg-main);
            pointer-events: none;
            transition: opacity 0.24s ease;
        }

        body.video-playing .particle-canvas {
            opacity: 0.12;
            filter: blur(8px);
        }

        body::before,
        body::after {
            transition: filter var(--transition-slow), opacity var(--transition-slow);
        }

        body.video-playing::before,
        body.video-playing::after {
            filter: blur(12px) brightness(0.6);
            opacity: 0.6;
        }

        header,
        .section,
        footer {
            position: relative;
            z-index: 1;
        }

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

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

        button,
        input,
        textarea {
            font: inherit;
        }

        h1,
        h2,
        h3 {
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-family: "Inter", sans-serif;
            font-weight: 800;
        }

        .text-gradient {
            background: var(--accent-glow);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .container {
            width: min(var(--container), calc(100% - 2rem));
            margin: 0 auto;
        }

        .section {
            padding: 4.8rem 0;
            position: relative;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.62rem 0.9rem;
            border-radius: 999px;
            background:
                linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(255, 240, 210, 0.74)),
                rgba(var(--blue-rgb), 0.05);
            border: 1px solid rgba(var(--blue-rgb), 0.16);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.84),
                0 12px 28px rgba(105, 72, 16, 0.12);
            -webkit-backdrop-filter: blur(16px) saturate(125%);
            backdrop-filter: blur(16px) saturate(125%);
            color: var(--blue);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .kicker::before {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), var(--gold-soft));
            box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.46);
        }

        .section-head {
            max-width: 760px;
            margin-bottom: 1.9rem;
        }

        .section-head h2 {
            margin-top: 1rem;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(2.9rem, 5.6vw, 5.3rem);
            line-height: 0.9;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        #bloqueio-principal .section-head h2 {
            line-height: 1.04;
        }

        .section-head p {
            margin-top: 1rem;
            color: var(--muted);
            font-size: clamp(1rem, 1.4vw, 1.08rem);
            max-width: 620px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .hero {
            padding: 1.1rem 0 3.8rem;
        }

        .hero-shell {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-xl);
            background:
                radial-gradient(circle at 74% 14%, rgba(var(--blue-rgb), 0.18), transparent 26%),
                radial-gradient(circle at 12% 74%, rgba(var(--gold-rgb), 0.18), transparent 20%),
                radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.44), transparent 24%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(255, 244, 224, 0.78)),
                linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(236, 219, 187, 0.44)),
                var(--glass-base);
            border: 1px solid rgba(var(--blue-rgb), 0.2);
            box-shadow:
                0 32px 96px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.92),
                inset 0 -1px 0 rgba(var(--blue-rgb), 0.06);
            -webkit-backdrop-filter: blur(26px) saturate(135%);
            backdrop-filter: blur(26px) saturate(135%);
        }

        .hero-shell::before {
            content: "";
            position: absolute;
            right: -96px;
            top: 34px;
            width: 560px;
            height: 560px;
            border: 24px solid rgba(var(--blue-rgb), 0.14);
            border-left-color: rgba(var(--blue-rgb), 0.05);
            border-bottom-color: rgba(var(--gold-rgb), 0.24);
            border-radius: 50%;
            pointer-events: none;
            transform: rotate(-14deg);
            filter: drop-shadow(0 0 30px rgba(var(--blue-rgb), 0.18));
        }

        .hero-shell::after {
            content: "";
            position: absolute;
            left: -12%;
            bottom: 6%;
            width: 46%;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.94), transparent);
            transform: rotate(-10deg);
            pointer-events: none;
            transform-origin: center;
        }

        .hero-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.05rem 1.15rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.09);
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(255, 243, 219, 0.72)),
                rgba(255, 248, 233, 0.58);
            -webkit-backdrop-filter: blur(18px) saturate(130%);
            backdrop-filter: blur(18px) saturate(130%);
        }

        .brand-lockup {
            position: relative;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .brand-lockup img {
            position: relative;
            z-index: 1;
            width: clamp(76px, 9vw, 108px);
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 22px;
            box-shadow:
                0 18px 32px rgba(37, 60, 90, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }

        .spell-crest::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: clamp(76px, 9vw, 108px);
            height: clamp(76px, 9vw, 108px);
            border-radius: 24px;
            background:
                radial-gradient(circle, rgba(var(--gold-rgb), 0.28), rgba(var(--gold-rgb), 0.1) 38%, rgba(var(--blue-rgb), 0.12) 62%, transparent 76%);
            filter: blur(14px);
            opacity: 0.88;
            pointer-events: none;
            transform: translateY(-50%) scale(0.96);
            animation: crest-halo 5.4s ease-in-out infinite;
        }

        .spell-crest img {
            animation: crest-float 5.4s ease-in-out infinite;
            transform-origin: center;
        }

        .brand-meta {
            display: grid;
            gap: 0.18rem;
        }

        .brand-meta h1,
        .brand-meta strong {
            margin: 0;
            color: var(--text-primary);
            font-size: clamp(1.16rem, 1.9vw, 1.78rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1;
            text-transform: uppercase;
        }

        .brand-meta span {
            color: var(--muted-strong);
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            white-space: normal;
            line-height: 1.35;
            max-width: 520px;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: clamp(1.1rem, 3vw, 1.8rem);
            padding: clamp(0.9rem, 2.4vw, 1.45rem);
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 1rem;
            align-items: start;
            padding: 0.1rem 0 0.2rem;
        }

        .hero-copy-main {
            display: grid;
            gap: 0.9rem;
            max-width: 720px;
        }

        .hero-lead {
            max-width: 680px;
            color: var(--muted-strong);
            font-size: clamp(1rem, 1.45vw, 1.12rem);
            font-weight: 600;
        }

        .hero-copy .cta-row {
            justify-content: flex-start;
            align-self: start;
        }

        .cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            --btn-raise: 0px;
            --magnetic-x: 0px;
            --magnetic-y: 0px;
            --shine-x: 50%;
            --shine-y: 50%;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            min-height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0 1.4rem;
            border-radius: 999px;
            border: 1px solid transparent;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(0.82rem, 1vw, 0.94rem);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition:
                transform var(--transition),
                box-shadow var(--transition),
                background var(--transition),
                border-color var(--transition),
                color var(--transition);
            transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--btn-raise)), 0);
            will-change: transform, box-shadow;
        }

        .btn:hover,
        .btn:focus-visible {
            --btn-raise: -2px;
            box-shadow: 0 20px 48px rgba(105, 72, 16, 0.18);
        }

        .btn:active {
            transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + 1px), 0) scale(0.97);
            transition: transform 120ms var(--ease-premium);
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffe08d 0%, var(--gold-soft) 34%, var(--gold) 100%);
            color: var(--text-primary);
            border-color: rgba(var(--gold-rgb), 0.3);
            box-shadow:
                0 16px 36px rgba(var(--gold-rgb), 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.52);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.24);
        }

        .spell-magnetic::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background:
                radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.5), transparent 18%),
                linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.34) 48%, transparent 76%);
            opacity: 0;
            pointer-events: none;
            mix-blend-mode: screen;
            transition: opacity 180ms ease;
        }

        .btn-primary:hover,
        .btn-primary:focus-visible {
            box-shadow:
                0 20px 44px rgba(var(--gold-rgb), 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.58);
        }

        #cta-final-oferta {
            scroll-margin-top: 7rem;
        }

        .spell-magnetic:hover::before,
        .spell-magnetic:focus-visible::before {
            opacity: 1;
            animation: button-sheen 820ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .cta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            color: var(--muted-strong);
            font-size: 0.92rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: color var(--transition), transform var(--transition);
        }

        .cta-link::after {
            content: "->";
            color: var(--gold-soft);
            font-size: 0.82rem;
            transition: transform var(--transition);
        }

        .cta-link:hover,
        .cta-link:focus-visible {
            color: var(--text);
            transform: translateX(2px);
        }

        .cta-link:hover::after,
        .cta-link:focus-visible::after {
            transform: translateX(3px);
        }

        .hero-media {
            position: relative;
            min-height: auto;
            display: grid;
            grid-template-columns: 1fr;
            justify-content: stretch;
            gap: 0;
            width: 100%;
            margin-left: 0;
            padding: 0.82rem;
            overflow: hidden;
            border-radius: calc(var(--radius-xl) - 4px);
            background:
                radial-gradient(circle at 84% 12%, rgba(var(--blue-rgb), 0.16), transparent 18%),
                linear-gradient(90deg, rgba(var(--ink-rgb), 0.05) 1px, transparent 1px),
                linear-gradient(rgba(var(--ink-rgb), 0.04) 1px, transparent 1px),
                radial-gradient(circle at 12% 16%, rgba(var(--gold-rgb), 0.14), transparent 18%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.78), rgba(255, 244, 224, 0.42)),
                linear-gradient(180deg, rgba(248, 240, 220, 0.72), rgba(239, 227, 197, 0.54)),
                var(--glass-base);
            background-size: auto, 18px 18px, 18px 18px, auto, auto, auto;
            border: 1px solid rgba(var(--blue-rgb), 0.14);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.84),
                0 24px 60px rgba(105, 72, 16, 0.12);
            -webkit-backdrop-filter: blur(24px) saturate(132%);
            backdrop-filter: blur(24px) saturate(132%);
            isolation: isolate;
        }

        .hero-media::before {
            content: "";
            position: absolute;
            inset: auto -52px -70px auto;
            width: 240px;
            height: 240px;
            border: 20px solid rgba(var(--blue-rgb), 0.18);
            border-top-color: rgba(var(--blue-rgb), 0.26);
            border-right-color: rgba(var(--gold-rgb), 0.24);
            border-radius: 50%;
            transform: rotate(16deg);
            pointer-events: none;
        }

        .hero-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle, rgba(var(--blue-rgb), 0.12) 1px, transparent 1.5px),
                linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 28%),
                linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(235, 220, 187, 0.62) 100%);
            background-size: 14px 14px, auto, auto;
            background-position: right 1rem top 1rem, center, center;
            opacity: 0.3;
            pointer-events: none;
        }

        .portrait-note {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 620px;
            padding: 1rem 1.05rem 1.05rem;
            border-radius: var(--radius-md);
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 243, 219, 0.8)),
                linear-gradient(180deg, rgba(250, 238, 210, 0.88), rgba(255, 250, 241, 0.68)),
                rgba(255, 248, 233, 0.66);
            border: 1px solid rgba(var(--blue-rgb), 0.18);
            box-shadow:
                0 20px 38px rgba(105, 72, 16, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
            -webkit-backdrop-filter: blur(20px) saturate(128%);
            backdrop-filter: blur(20px) saturate(128%);
        }

        .portrait-note::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 3px;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--gold), rgba(var(--blue-rgb), 0.36), transparent);
        }

        .portrait-note strong {
            display: block;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(1.5rem, 2.2vw, 2rem);
            line-height: 0.95;
            letter-spacing: -0.03em;
            text-transform: uppercase;
        }

        .portrait-note span {
            display: block;
            margin-top: 0.4rem;
            color: var(--muted-strong);
            font-size: 0.92rem;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
        }

        .video-float {
            position: relative;
            z-index: 3;
            display: grid;
            align-content: start;
            justify-items: stretch;
            width: 100%;
            padding: 0.6rem;
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 16% 14%, rgba(var(--gold-rgb), 0.16), transparent 18%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.88), rgba(255, 243, 219, 0.56)),
                linear-gradient(180deg, rgba(247, 236, 210, 0.72), rgba(255, 249, 238, 0.48)),
                rgba(255, 248, 233, 0.5);
            border: 1px solid rgba(var(--gold-rgb), 0.24);
            box-shadow:
                0 30px 70px rgba(105, 72, 16, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.86);
            -webkit-backdrop-filter: blur(24px) saturate(132%);
            backdrop-filter: blur(24px) saturate(132%);
        }

        .video-float::before {
            content: "";
            position: absolute;
            inset: -18% auto auto 12%;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(var(--blue-rgb), 0.22), transparent 68%);
            pointer-events: none;
        }

        .video-float strong {
            display: inline-flex;
            justify-content: flex-start;
            margin-bottom: 0.7rem;
            color: var(--gold-soft);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .video-frame {
            position: relative;
            overflow: hidden;
            padding: 4px;
            border-radius: 24px;
            background: #000;
            background:
                linear-gradient(135deg, rgba(255, 244, 205, 0.98) 0%, rgba(var(--gold-rgb), 0.98) 24%, rgba(255, 210, 104, 0.96) 48%, rgba(var(--gold-rgb), 0.95) 74%, rgba(255, 248, 226, 0.98) 100%);
            border: 1px solid rgba(255, 236, 186, 0.92);
            width: 100%;
            box-shadow:
                0 0 0 1px rgba(255, 246, 220, 0.24),
                0 0 28px rgba(var(--gold-rgb), 0.34),
                0 20px 42px rgba(var(--gold-rgb), 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.26);
            isolation: isolate;
        }

        .video-frame::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background:
                linear-gradient(135deg, rgba(255, 245, 214, 0.6), rgba(var(--gold-rgb), 0.12) 38%, rgba(var(--gold-rgb), 0.38) 60%, rgba(255, 247, 226, 0.52));
            filter: blur(12px);
            opacity: 0.95;
            z-index: -1;
            pointer-events: none;
        }

        body.video-playing .video-frame::before {
            filter: blur(6px);
            opacity: 0.38;
        }

        .video-frame video {
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: contain;
            object-position: center;
            background: #000;
            border-radius: 20px;
            display: block;
            transform: none;
        }

        .impact-panel,
        .editable-panel,
        .audience-card,
        .video-sales-panel,
        .final-offer-panel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1)),
                radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.3), transparent 22%),
                linear-gradient(180deg, rgba(255, 248, 233, 0.96), rgba(243, 228, 195, 0.82)),
                linear-gradient(135deg, rgba(var(--blue-rgb), 0.1), rgba(var(--gold-rgb), 0.12)),
                var(--glass-base);
            border: 1px solid rgba(var(--blue-rgb), 0.2);
            box-shadow:
                0 30px 74px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                inset 0 -1px 0 rgba(var(--blue-rgb), 0.06);
            -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
            backdrop-filter: blur(var(--glass-blur)) saturate(130%);
        }

        .impact-panel::before,
        .editable-panel::before,
        .audience-card::before,
        .video-sales-panel::before,
        .final-offer-panel::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(255, 255, 255, 0.24), rgba(var(--blue-rgb), 0.82));
        }

        .impact-panel {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
            gap: 1.6rem;
            padding: clamp(1.4rem, 3vw, 2rem);
        }

        .impact-quote {
            display: grid;
            align-content: start;
            gap: 0.9rem;
        }

        .impact-quote strong {
            color: var(--gold-soft);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .impact-quote h3 {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(2.4rem, 4.6vw, 4.2rem);
            line-height: 0.9;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .impact-text {
            display: grid;
            gap: 1rem;
            align-content: center;
            color: var(--muted-strong);
            font-size: 1rem;
        }

        .impact-text p + p {
            color: var(--muted);
        }

        .signal-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .signal-card {
            position: relative;
            overflow: hidden;
            padding: 1.2rem;
            border-radius: var(--radius-md);
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(255, 243, 219, 0.64)),
                linear-gradient(180deg, rgba(247, 237, 214, 0.72), rgba(255, 249, 238, 0.56)),
                var(--glass-base);
            border: 1px solid rgba(var(--blue-rgb), 0.12);
            box-shadow:
                0 22px 44px rgba(105, 72, 16, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            -webkit-backdrop-filter: blur(18px) saturate(125%);
            backdrop-filter: blur(18px) saturate(125%);
        }

        .signal-card::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(var(--blue-rgb), 0.4), transparent);
        }

        .signal-card strong {
            display: inline-flex;
            color: var(--gold-soft);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .signal-card p {
            margin-top: 0.65rem;
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.55;
        }

        .section-cta {
            display: flex;
            justify-content: center;
            margin-top: 1.25rem;
        }

        .section-cta .btn {
            min-width: min(100%, 340px);
        }

        #cta-prova-social {
            min-height: 66px;
            min-width: min(100%, 390px);
            padding: 0 2.2rem;
            font-size: clamp(0.92rem, 1.15vw, 1.04rem);
            letter-spacing: 0.11em;
            box-shadow:
                0 18px 42px rgba(var(--gold-rgb), 0.34),
                0 0 0 0 rgba(var(--gold-rgb), 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.58);
            animation: proof-cta-pulse 2s ease-in-out infinite;
        }

        #cta-prova-social:hover,
        #cta-prova-social:focus-visible {
            animation-play-state: paused;
            box-shadow:
                0 24px 52px rgba(var(--gold-rgb), 0.46),
                0 0 0 12px rgba(var(--gold-rgb), 0),
                inset 0 1px 0 rgba(255, 255, 255, 0.62);
        }

        .offer-strip {
            display: grid;
            grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
            gap: 0.9rem;
            width: 100%;
            max-width: 720px;
            padding: 0.92rem;
            border-radius: 18px;
            background:
                radial-gradient(circle at 14% 14%, rgba(var(--gold-rgb), 0.2), transparent 24%),
                radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.26), transparent 22%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(255, 242, 216, 0.76)),
                rgba(255, 248, 233, 0.52);
            border: 1px solid rgba(var(--gold-rgb), 0.24);
            box-shadow:
                0 22px 46px rgba(105, 72, 16, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            -webkit-backdrop-filter: blur(20px) saturate(128%);
            backdrop-filter: blur(20px) saturate(128%);
        }

        .offer-price-card {
            display: grid;
            gap: 0.2rem;
            align-content: start;
            padding: 0.95rem;
            border-radius: 16px;
            background:
                linear-gradient(180deg, rgba(255, 249, 236, 1), rgba(255, 238, 201, 0.84)),
                rgba(255, 248, 233, 0.62);
            border: 1px solid rgba(var(--gold-rgb), 0.34);
            box-shadow:
                0 18px 36px rgba(var(--gold-rgb), 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);
        }

        .offer-was {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            width: fit-content;
            color: var(--muted);
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.04em;
        }

        .offer-was-value {
            position: relative;
            display: inline-block;
            color: var(--muted-strong);
        }

        .offer-was-value::after {
            content: "";
            position: absolute;
            left: -0.04em;
            right: -0.04em;
            top: 54%;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, rgba(161, 40, 40, 0.95), rgba(219, 84, 84, 0.82));
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
            transform: rotate(-2deg);
        }

        .offer-label {
            color: var(--muted-strong);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .offer-price-card strong {
            color: var(--text);
            font-family: "Inter", sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            line-height: 0.92;
            letter-spacing: -0.05em;
        }

        .offer-price-card small {
            color: var(--muted);
            font-size: 0.8rem;
            line-height: 1.4;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .offer-meta {
            display: grid;
            gap: 0.75rem;
            align-content: center;
        }

        .offer-meta strong {
            color: var(--text);
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.01em;
        }

        .offer-meta ul {
            display: grid;
            gap: 0.55rem;
        }

        .offer-meta li {
            list-style: none;
            position: relative;
            padding-left: 1.15rem;
            color: var(--text);
            font-size: 0.92rem;
        }

        .offer-meta li::before {
            content: "+";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 800;
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .offer-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.94), rgba(255, 243, 219, 0.68)),
                linear-gradient(135deg, rgba(var(--gold-rgb), 0.08), rgba(var(--blue-rgb), 0.08)),
                rgba(255, 248, 233, 0.46);
            border: 1px solid rgba(var(--blue-rgb), 0.14);
            box-shadow:
                0 22px 48px rgba(105, 72, 16, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.86);
            -webkit-backdrop-filter: blur(18px) saturate(125%);
            backdrop-filter: blur(18px) saturate(125%);
        }

        .offer-card {
            padding: 1.2rem;
        }

        .offer-card::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(var(--blue-rgb), 0.45), transparent);
        }

        .offer-card strong {
            display: inline-flex;
            color: var(--gold-soft);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .offer-card h3 {
            margin-top: 0.9rem;
            margin-bottom: 0;
            font-family: "Inter", sans-serif;
            font-size: clamp(1.4rem, 2vw, 1.8rem);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .offer-card p {
            margin-top: 0.8rem;
            color: var(--muted-strong);
        }

        .proof-social-section {
            padding-top: 0.6rem;
        }

        .proof-social-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .proof-social-card {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 0.9rem;
            align-content: start;
            padding: 0.72rem;
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 10% 14%, rgba(var(--gold-rgb), 0.18), transparent 18%),
                radial-gradient(circle at 88% 12%, rgba(var(--blue-rgb), 0.16), transparent 22%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 243, 219, 0.76)),
                linear-gradient(135deg, rgba(255, 240, 208, 0.78), rgba(235, 242, 255, 0.62)),
                rgba(255, 248, 233, 0.56);
            border: 1px solid rgba(var(--gold-rgb), 0.24);
            box-shadow:
                0 28px 66px rgba(105, 72, 16, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.84);
            -webkit-backdrop-filter: blur(24px) saturate(128%);
            backdrop-filter: blur(24px) saturate(128%);
            height: 100%;
        }

        .proof-social-card::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(255, 255, 255, 0.3), rgba(var(--blue-rgb), 0.82));
        }

        .proof-social-copy {
            display: grid;
            gap: 0.62rem;
            align-content: start;
            padding: 0.28rem 0.34rem 0.38rem;
        }

        .proof-social-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            width: fit-content;
            color: var(--gold);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .proof-social-tag::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), var(--gold-soft));
            box-shadow: 0 0 16px rgba(var(--gold-rgb), 0.36);
        }

        .proof-social-copy h3 {
            margin-bottom: 0;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(1.3rem, 2vw, 1.75rem);
            line-height: 0.96;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .proof-social-meta {
            color: var(--text);
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .proof-social-copy p {
            color: var(--muted-strong);
            font-size: 0.94rem;
            line-height: 1.58;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .proof-social-card .video-card {
            padding: 0.36rem;
            box-shadow:
                0 18px 38px rgba(105, 72, 16, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .proof-spotlight-section {
            padding-top: 1.2rem;
        }

        .proof-spotlight-panel {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
            gap: 1.15rem;
            align-items: stretch;
            padding: clamp(1rem, 2.4vw, 1.5rem);
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at 8% 12%, rgba(var(--gold-rgb), 0.22), transparent 20%),
                radial-gradient(circle at 92% 10%, rgba(var(--blue-rgb), 0.16), transparent 18%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 243, 219, 0.76)),
                linear-gradient(135deg, rgba(255, 239, 204, 0.78), rgba(236, 242, 255, 0.62)),
                rgba(255, 248, 233, 0.56);
            border: 1px solid rgba(var(--gold-rgb), 0.28);
            box-shadow:
                0 30px 72px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.88);
            -webkit-backdrop-filter: blur(24px) saturate(128%);
            backdrop-filter: blur(24px) saturate(128%);
        }

        .proof-spotlight-panel::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(255, 255, 255, 0.32), rgba(var(--blue-rgb), 0.82));
        }

        .proof-spotlight-copy {
            display: grid;
            gap: 0.72rem;
            align-content: center;
            max-width: 400px;
        }

        .proof-spotlight-copy h2 {
            margin-top: 0.1rem;
            margin-bottom: 0;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(1.75rem, 3.3vw, 2.55rem);
            line-height: 0.94;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .proof-spotlight-copy p {
            color: var(--muted-strong);
            font-size: 0.95rem;
            line-height: 1.62;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .proof-spotlight-panel .video-card {
            align-self: stretch;
            padding: 0.48rem;
            box-shadow:
                0 24px 52px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }

        .faq-dialog-shell,
        .faq-dialog-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.94), rgba(255, 243, 219, 0.68)),
                linear-gradient(135deg, rgba(var(--gold-rgb), 0.08), rgba(var(--blue-rgb), 0.08)),
                rgba(255, 248, 233, 0.46);
            border: 1px solid rgba(var(--blue-rgb), 0.14);
            box-shadow:
                0 22px 48px rgba(105, 72, 16, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.86);
            -webkit-backdrop-filter: blur(18px) saturate(125%);
            backdrop-filter: blur(18px) saturate(125%);
        }

        .faq-dialog-shell::before,
        .faq-dialog-item::before {
            content: "";
            position: absolute;
            inset: 0 auto auto 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.95), rgba(var(--blue-rgb), 0.45), transparent);
        }

        .faq-launch {
            width: auto;
            display: inline-flex;
            margin: 0 0 1.9rem;
            padding: 0;
            border: 0;
            background: transparent;
            text-align: left;
            appearance: none;
            cursor: pointer;
        }

        .faq-launch:focus-visible,
        .faq-dialog-close:focus-visible {
            outline: 2px solid rgba(var(--gold-rgb), 0.55);
            outline-offset: 6px;
        }

        .faq-launch:hover .faq-launch-chip,
        .faq-launch:focus-visible .faq-launch-chip {
            opacity: 0.84;
        }

        .faq-launch-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            width: fit-content;
            max-width: 100%;
            padding: 0.62rem 0.9rem;
            border-radius: 999px;
            background:
                linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(255, 240, 210, 0.74)),
                rgba(var(--blue-rgb), 0.05);
            border: 1px solid rgba(var(--blue-rgb), 0.16);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.84),
                0 12px 28px rgba(105, 72, 16, 0.12);
            -webkit-backdrop-filter: blur(16px) saturate(125%);
            backdrop-filter: blur(16px) saturate(125%);
            color: var(--blue);
            font-family: "Inter", sans-serif;
            font-size: 0.9rem;
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: 0.03em;
            text-align: left;
            transition: opacity 0.2s ease;
        }

        .faq-launch-chip::before {
            content: "";
            flex: 0 0 auto;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), var(--gold-soft));
            box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.46);
        }

        .faq-launch-chip span {
            min-width: 0;
            transition: opacity 0.2s ease;
        }

        .faq-launch-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            width: fit-content;
            color: var(--gold-deep);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .faq-launch-kicker::before {
            content: "";
            width: 0.48rem;
            height: 0.48rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--gold), var(--gold-soft));
            box-shadow: 0 0 14px rgba(var(--gold-rgb), 0.3);
        }

        .faq-dialog {
            width: min(720px, calc(100% - 1rem));
            max-width: none;
            padding: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
            overflow: visible;
        }

        .faq-dialog::backdrop {
            background: rgba(7, 14, 27, 0.52);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .faq-dialog-shell {
            display: grid;
            gap: 1rem;
            padding: 1rem;
            min-height: 0;
            max-height: min(82dvh, 720px);
            overflow: hidden;
            scrollbar-gutter: stable;
        }

        .faq-dialog-head {
            display: flex;
            flex: 0 0 auto;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.9rem;
        }

        .faq-dialog-copy h2 {
            margin: 0.55rem 0 0;
            font-size: clamp(1.6rem, 3.8vw, 2.5rem);
            line-height: 0.96;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .faq-dialog-close {
            flex: 0 0 auto;
            width: 2.4rem;
            height: 2.4rem;
            border-radius: 999px;
            border: 1px solid rgba(var(--blue-rgb), 0.14);
            background:
                linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(255, 240, 210, 0.72)),
                rgba(var(--blue-rgb), 0.06);
            color: var(--blue);
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
        }

        .faq-dialog-list {
            display: grid;
            gap: 0.65rem;
            min-height: 0;
            overflow-y: auto;
            padding-right: 0.12rem;
            padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
            -webkit-overflow-scrolling: touch;
            overscroll-behavior: contain;
        }

        .faq-dialog-item {
            padding: 0.92rem 0.98rem;
        }

        .faq-dialog-item h3 {
            margin: 0;
            font-family: "Inter", sans-serif;
            font-size: clamp(1rem, 1.7vw, 1.08rem);
            font-weight: 800;
            line-height: 1.18;
            letter-spacing: -0.02em;
            text-transform: none;
        }

        .faq-dialog-item p {
            margin: 0;
            margin-top: 0.45rem;
            color: var(--muted-strong);
        }

        .faq-dialog-shell,
        .faq-dialog-list {
            scrollbar-width: thin;
            scrollbar-color: rgba(var(--blue-rgb), 0.34) rgba(var(--blue-rgb), 0.08);
        }

        @media (max-width: 640px) {
            .faq-dialog {
                max-height: min(90dvh, 700px);
            }

            .faq-dialog-shell {
                gap: 0.8rem;
                padding: 0.85rem 0.85rem 0.72rem;
                max-height: min(88dvh, 680px);
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }

            .faq-dialog-head {
                gap: 0.75rem;
            }

            .faq-launch-kicker {
                gap: 0.45rem;
                font-size: 0.67rem;
                letter-spacing: 0.14em;
            }

            .faq-dialog-copy h2 {
                margin-top: 0.35rem;
                font-size: 1.2rem;
                line-height: 1.02;
            }

            .faq-dialog-close {
                width: 2.15rem;
                height: 2.15rem;
                font-size: 1.15rem;
            }

            .faq-dialog-list {
                gap: 0.5rem;
                overflow: visible;
                padding-bottom: calc(0.45rem + env(safe-area-inset-bottom));
            }

            .faq-dialog-item {
                padding: 0.78rem 0.82rem;
            }

            .faq-dialog-item h3 {
                font-size: 0.94rem;
                line-height: 1.16;
            }

            .faq-dialog-item p {
                margin-top: 0.35rem;
                font-size: 0.9rem;
                line-height: 1.42;
            }
        }

        .video-sales-panel,
        .final-offer-panel {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: clamp(1rem, 2.2vw, 1.4rem);
            align-items: center;
        }

        .video-sales-media {
            display: grid;
            gap: 0.95rem;
        }

        .video-sales-copy,
        .final-offer-copy {
            display: grid;
            gap: 0.95rem;
            align-content: start;
            max-width: 100%;
        }

        .video-sales-copy h3,
        .final-offer-copy h3 {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(1.9rem, 4vw, 3rem);
            line-height: 0.9;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .video-sales-copy p,
        .final-offer-copy p {
            color: var(--muted-strong);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
        }

        .video-sales-intro {
            color: var(--text);
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .video-sales-list,
        .final-offer-list {
            display: grid;
            gap: 0.8rem;
        }

        .video-sales-list li,
        .final-offer-list li {
            list-style: none;
            position: relative;
            padding-left: 1.45rem;
            color: var(--text);
        }

        .video-sales-list li::before,
        .final-offer-list li::before {
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }

        .video-sales-list li::before {
            content: "•";
            font-size: 1.1rem;
            line-height: 1;
        }

        .final-offer-list li::before {
            content: "+";
        }

        .reveal-list li {
            transition:
                opacity var(--transition-slow),
                transform var(--transition-slow);
            will-change: opacity, transform;
        }

        .motion-ready .reveal-list li {
            opacity: 0;
            transform: translate3d(0, 24px, 0) scale(0.97);
        }

        .motion-ready .reveal-list li.active {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }

        /* Generic Reveal Enhancement */
        .reveal {
            opacity: 0;
            transform: translate3d(0, 32px, 0) scale(0.98);
            transition: 
                opacity var(--transition-slow), 
                transform var(--transition-slow),
                filter var(--transition-slow);
            filter: blur(4px);
            will-change: opacity, transform, filter;
        }

        .reveal.active {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
            filter: blur(0px);
        }

        /* Hero Entrance Sequence */
        .hero-shell {
            opacity: 0;
            transform: scale(0.96);
            filter: blur(10px);
            transition: 
                opacity 1.2s var(--ease-premium), 
                transform 1.2s var(--ease-premium),
                filter 1.2s var(--ease-premium);
        }

        .motion-ready .hero-shell {
            opacity: 1;
            transform: scale(1);
            filter: blur(0px);
        }

        .hero-top {
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.8s var(--ease-premium) 0.2s;
        }

        .motion-ready .hero-top {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-copy {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.8s var(--ease-premium) 0.4s;
        }

        .motion-ready .hero-copy {
            opacity: 1;
            transform: translateX(0);
        }

        .hero-media {
            opacity: 0;
            transform: scale(0.9) translateY(30px);
            transition: all 1s var(--ease-premium) 0.6s;
        }

        .motion-ready .hero-media {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .video-card {
            display: grid;
            gap: 0.75rem;
            padding: 0.58rem;
            border-radius: var(--radius-lg);
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 242, 216, 0.76)),
                rgba(255, 248, 233, 0.58);
            border: 1px solid rgba(var(--blue-rgb), 0.18);
            box-shadow:
                0 26px 54px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
            -webkit-backdrop-filter: blur(22px) saturate(128%);
            backdrop-filter: blur(22px) saturate(128%);
        }

        body.video-playing .video-card {
            -webkit-backdrop-filter: none;
            backdrop-filter: none;
        }

        .video-card .video-frame video {
            aspect-ratio: 16 / 9;
        }

        .final-offer-panel {
            margin-top: 1.2rem;
            background:
                radial-gradient(circle at 8% 12%, rgba(var(--gold-rgb), 0.22), transparent 20%),
                radial-gradient(circle at 92% 10%, rgba(var(--blue-rgb), 0.18), transparent 18%),
                radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.34), transparent 24%),
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 243, 219, 0.76)),
                linear-gradient(135deg, rgba(255, 239, 204, 0.8), rgba(236, 242, 255, 0.68) 54%, rgba(255, 250, 241, 0.62)),
                rgba(255, 248, 233, 0.52);
            border-color: rgba(var(--gold-rgb), 0.28);
        }

        .final-offer-copy {
            display: grid;
            gap: 1rem;
            align-content: start;
        }

        .final-offer-box {
            display: grid;
            gap: 0.85rem;
            padding: 1.1rem;
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(255, 240, 210, 0.72)),
                rgba(255, 248, 233, 0.48);
            border: 1px solid rgba(var(--gold-rgb), 0.26);
            box-shadow:
                0 16px 28px rgba(105, 72, 16, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
            -webkit-backdrop-filter: blur(18px) saturate(125%);
            backdrop-filter: blur(18px) saturate(125%);
        }

        .final-offer-box strong {
            color: var(--gold-soft);
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .final-offer-box p {
            color: var(--muted-strong);
        }

        .final-offer-box .accent-word {
            color: var(--text);
            font-weight: 800;
            letter-spacing: 0.04em;
        }


        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .floating-socials {
            position: fixed;
            right: 1rem;
            bottom: 1rem;
            z-index: 29;
            display: grid;
            gap: 0.72rem;
        }

        .floating-social-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 999px;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow:
                0 18px 36px rgba(105, 72, 16, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition:
                transform var(--transition),
                box-shadow var(--transition),
                filter var(--transition);
        }

        .floating-social-link:hover,
        .floating-social-link:focus-visible {
            transform: translateY(-2px) scale(1.03);
            box-shadow:
                0 22px 42px rgba(105, 72, 16, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.24);
            filter: saturate(1.06);
        }

        .floating-social-link svg,
        .floating-social-link img {
            width: 24px;
            height: 24px;
            display: block;
            object-fit: contain;
        }

        .floating-social-link svg {
            fill: currentColor;
        }

        .floating-social-link img {
            filter: drop-shadow(0 2px 4px rgba(17, 40, 81, 0.24));
        }

        .floating-social-link--hotmart {
            background:
                radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.3), transparent 55%),
                linear-gradient(180deg, rgba(255, 248, 233, 0.96), rgba(241, 223, 180, 0.92)),
                linear-gradient(135deg, rgba(var(--gold-rgb), 0.92), rgba(var(--blue-rgb), 0.82));
            box-shadow:
                0 18px 36px rgba(105, 72, 16, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.38);
        }

        .floating-social-link--instagram {
            background:
                radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 10%, #fd5949 42%, #d6249f 68%, #285aeb 100%);
        }

        .floating-social-link--whatsapp {
            background:
                linear-gradient(180deg, #35da74 0%, #25d366 100%);
        }

        .spell-glow {
            --pointer-x: 50%;
            --pointer-y: 50%;
            position: relative;
            isolation: isolate;
            transition:
                box-shadow 240ms ease,
                border-color 240ms ease,
                background 240ms ease;
        }

        .spell-glow::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            opacity: 0.14;
            background:
                radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.34), transparent 20%),
                radial-gradient(circle at calc(var(--pointer-x) + 10%) calc(var(--pointer-y) + 4%), rgba(var(--gold-rgb), 0.14), transparent 18%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.08));
            mix-blend-mode: screen;
            transition: opacity 200ms ease;
        }

        .spell-glow:hover,
        .spell-glow:focus-within {
            border-color: rgba(var(--gold-rgb), 0.26);
            box-shadow:
                0 30px 60px rgba(105, 72, 16, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .spell-glow:hover::after,
        .spell-glow:focus-within::after {
            opacity: 1;
        }

        .final-offer-list {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .final-offer-list li {
            min-height: 100%;
            padding: 1rem 1rem 1rem 2.2rem;
            border-radius: 16px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
                rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(var(--gold-rgb), 0.16);
        }

        .final-offer-list li::before {
            left: 0.9rem;
            top: 0.95rem;
        }

        .final-offer-panel .btn-primary {
            min-height: 62px;
            padding: 0 1.75rem;
            font-size: 0.98rem;
            box-shadow: 0 22px 44px rgba(var(--gold-rgb), 0.3);
        }

        .final-offer-panel .btn-primary:hover,
        .final-offer-panel .btn-primary:focus-visible {
            box-shadow: 0 24px 48px rgba(var(--gold-rgb), 0.4);
        }

        .editable-panel {
            padding: clamp(1.5rem, 3vw, 2rem);
        }

        .editable-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .editable-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.62rem 0.88rem;
            border-radius: 999px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(255, 240, 210, 0.66)),
                rgba(var(--gold-rgb), 0.08);
            border: 1px solid rgba(var(--gold-rgb), 0.2);
            -webkit-backdrop-filter: blur(14px) saturate(125%);
            backdrop-filter: blur(14px) saturate(125%);
            color: var(--gold-soft);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .editable-chip::before {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 999px;
            background: var(--gold);
        }

        .editable-note {
            color: var(--muted);
            font-size: 0.92rem;
        }

        .editable-content {
            min-height: 320px;
            padding: 1.35rem;
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.9), rgba(255, 243, 219, 0.66)),
                rgba(255, 248, 233, 0.3);
            border: 1px dashed rgba(var(--blue-rgb), 0.22);
            outline: none;
            -webkit-backdrop-filter: blur(18px) saturate(120%);
            backdrop-filter: blur(18px) saturate(120%);
        }

        .editable-content:focus {
            border-color: rgba(var(--gold-rgb), 0.44);
            box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.12);
        }

        .editable-content h3 {
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(2.3rem, 4.6vw, 4rem);
            line-height: 0.92;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .editable-content p {
            margin-top: 1rem;
            color: var(--muted-strong);
        }

        .editable-content ul {
            display: grid;
            gap: 0.8rem;
            margin-top: 1.2rem;
            padding-left: 1.2rem;
            color: var(--text);
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .audience-card {
            padding: 1.45rem;
        }

        .audience-card strong {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 2.6rem;
            height: 2.6rem;
            padding: 0 0.6rem;
            border-radius: 999px;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
                rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(14px) saturate(120%);
            backdrop-filter: blur(14px) saturate(120%);
            font-size: 0.82rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .audience-card h3 {
            margin-top: 1rem;
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: clamp(1.8rem, 2.8vw, 2.6rem);
            line-height: 0.95;
            letter-spacing: -0.04em;
            text-transform: uppercase;
        }

        .audience-card p {
            margin-top: 0.9rem;
            color: var(--muted);
        }

        .audience-card ul {
            display: grid;
            gap: 0.72rem;
            margin-top: 1rem;
        }

        .audience-card li {
            list-style: none;
            position: relative;
            padding-left: 1.5rem;
            color: var(--muted-strong);
        }

        .audience-card li::before {
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 700;
        }

        .audience-card--yes strong,
        .audience-card--yes h3 {
            color: var(--gold-soft);
        }

        .audience-card--yes li::before {
            content: "+";
            color: var(--gold);
        }

        .audience-card--no strong,
        .audience-card--no h3 {
            color: var(--blue-soft);
        }

        .audience-card--no li::before {
            content: "x";
            color: var(--blue-soft);
        }

        footer {
            padding: 1rem 0 2.2rem;
            color: rgba(78, 99, 143, 0.86);
            font-size: 0.88rem;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .footer-brand img {
            width: 44px;
            height: 44px;
            object-fit: cover;
            border-radius: 14px;
            box-shadow:
                0 12px 24px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.76);
        }

        .footer-note {
            margin-top: 0.6rem;
            font-size: 0.8rem;
            line-height: 1.45;
        }

        .footer-credit {
            margin-top: 0.38rem;
            color: rgba(78, 99, 143, 0.68);
            font-size: 0.64rem;
            line-height: 1.35;
            letter-spacing: 0.02em;
        }

        .footer-credit a {
            color: inherit;
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 0.12em;
        }

        .footer-credit a:hover,
        .footer-credit a:focus-visible {
            color: var(--blue);
        }

        .mobile-buy-bar {
            position: fixed;
            left: 0.85rem;
            right: 0.85rem;
            bottom: calc(0.85rem + env(safe-area-inset-bottom));
            z-index: 30;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 0.9rem;
            padding: 0.9rem 1rem;
            border-radius: 20px;
            background:
                linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(255, 241, 214, 0.76)),
                linear-gradient(180deg, rgba(248, 237, 210, 0.74), rgba(255, 248, 233, 0.62)),
                rgba(255, 248, 233, 0.52);
            border: 1px solid rgba(var(--gold-rgb), 0.24);
            box-shadow:
                0 24px 60px rgba(105, 72, 16, 0.14),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
            -webkit-backdrop-filter: blur(22px) saturate(130%);
            backdrop-filter: blur(22px) saturate(130%);
            opacity: 0;
            pointer-events: none;
            transform: translateY(120%);
            transition:
                opacity 280ms ease,
                transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-buy-bar.is-visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .mobile-buy-copy {
            display: grid;
            gap: 0.1rem;
        }

        .mobile-buy-copy strong {
            color: var(--text);
            font-family: "Inter", sans-serif;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            line-height: 0.95;
        }

        .mobile-buy-copy span {
            color: var(--muted-strong);
            font-size: 0.8rem;
            line-height: 1.3;
        }

        .mobile-buy-bar .btn {
            min-height: 50px;
            padding: 0 1.1rem;
            white-space: nowrap;
        }



        @keyframes crest-float {
            0%,
            100% {
                transform: translate3d(0, 0, 0) rotate(0deg);
            }

            50% {
                transform: translate3d(0, -6px, 0) rotate(-2deg);
            }
        }

        @keyframes crest-halo {
            0%,
            100% {
                opacity: 0.76;
                transform: translateY(-50%) scale(0.94);
            }

            50% {
                opacity: 1;
                transform: translateY(-50%) scale(1.04);
            }
        }

        @keyframes button-sheen {
            from {
                transform: translateX(-42%) skewX(-16deg);
            }

            to {
                transform: translateX(42%) skewX(-16deg);
            }
        }

        @keyframes proof-cta-pulse {
            0%,
            100% {
                box-shadow:
                    0 18px 42px rgba(var(--gold-rgb), 0.34),
                    0 0 0 0 rgba(var(--gold-rgb), 0.24),
                    inset 0 1px 0 rgba(255, 255, 255, 0.58);
            }

            55% {
                box-shadow:
                    0 24px 52px rgba(var(--gold-rgb), 0.44),
                    0 0 0 16px rgba(var(--gold-rgb), 0),
                    inset 0 1px 0 rgba(255, 255, 255, 0.62);
            }
        }

        @media (max-width: 1024px) {
            .particle-canvas {
                opacity: 0.92;
            }

            .video-frame::before {
                display: none;
            }

            .video-card {
                -webkit-backdrop-filter: none;
                backdrop-filter: none;
                box-shadow:
                    0 16px 32px rgba(105, 72, 16, 0.12),
                    inset 0 1px 0 rgba(255, 255, 255, 0.82);
            }
        }

        @media (max-width: 1080px) {
            .signal-grid,
            .offer-grid,
            .final-offer-list {
                grid-template-columns: 1fr;
            }

            .proof-social-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .impact-panel,
            .video-sales-panel,
            .final-offer-panel,
            .proof-spotlight-panel {
                grid-template-columns: 1fr;
            }

            .hero-media {
                max-width: none;
            }
        }

        @media (max-width: 860px) {
            .section {
                padding: 3.1rem 0;
            }

            .offer-strip {
                grid-template-columns: 1fr;
            }

            .hero-top {
                align-items: center;
                gap: 0.8rem;
            }

            .brand-lockup {
                width: 100%;
                align-items: center;
            }

            .hero-media {
                width: 100%;
                max-width: none;
            }

            .hero-copy {
                grid-template-columns: 1fr;
                align-items: start;
            }

            .hero-copy .cta-row {
                justify-content: flex-start;
            }

            .portrait-note {
                width: 100%;
            }

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

            .proof-social-grid {
                grid-template-columns: 1fr;
            }

            .proof-spotlight-copy {
                max-width: 100%;
            }

            .floating-socials {
                right: 0.85rem;
                bottom: calc(var(--mobile-bar-height) + 1rem + env(safe-area-inset-bottom));
            }

            .video-sales-copy .cta-row,
            .final-offer-copy .cta-row {
                margin-top: 0.2rem;
            }

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

            body {
                padding-bottom: calc(var(--mobile-bar-height) + 1.6rem + env(safe-area-inset-bottom));
            }

            .mobile-buy-bar {
                display: flex;
            }
        }

        @media (max-width: 560px) {
            body {
                font-size: 15px;
            }

            .container {
                width: min(var(--container), calc(100% - 1rem));
            }

            .hero {
                padding-top: 0.7rem;
            }

            .hero-shell,
            .hero-media,
            .impact-panel,
            .editable-panel,
            .audience-card,
            .video-sales-panel,
            .final-offer-panel,
            .video-card,
            .faq-dialog-shell,
            .faq-dialog-item {
                border-radius: 22px;
            }

            .hero-top,
            .hero-grid,
            .impact-panel,
            .editable-panel,
            .audience-card,
            .video-sales-panel,
            .final-offer-panel {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .hero-copy-main,
            .final-offer-copy {
                max-width: 100%;
            }

            .proof-social-card {
                padding: 0.52rem;
            }

            .proof-spotlight-panel {
                padding-left: 1rem;
                padding-right: 1rem;
            }

            .brand-lockup {
                gap: 0.7rem;
                align-items: center;
            }

            .brand-lockup img {
                width: 68px;
                border-radius: 18px;
            }

            .brand-meta {
                gap: 0.12rem;
            }

            .brand-meta h1,
            .brand-meta strong {
                font-size: 1rem;
            }

            .brand-meta span {
                font-size: 0.54rem;
                letter-spacing: 0.02em;
            }

            .hero-lead,
            .section-head p,
            .signal-card p,
            .impact-text,
            .editable-note,
            .editable-content p,
            .editable-content ul,
            .audience-card p,
            .audience-card li,
            .video-sales-copy p,
            .video-sales-list li,
            .final-offer-copy p,
            .final-offer-list li,
            .faq-dialog-item p,
            .proof-social-copy p,
            .proof-spotlight-copy p {
                font-size: 0.98rem;
                line-height: 1.72;
            }

            .section-head h2 {
                font-size: clamp(2rem, 10vw, 2.8rem);
                line-height: 0.94;
            }

            .video-sales-copy h3,
            .final-offer-copy h3,
            .proof-social-copy h3,
            .proof-spotlight-copy h2 {
                font-size: clamp(1.6rem, 8vw, 2.1rem);
            }

            .faq-launch {
                margin-bottom: 1.3rem;
            }

            .faq-launch-chip {
                font-size: 0.82rem;
                line-height: 1.32;
                letter-spacing: 0.025em;
            }

            .faq-dialog {
                width: min(720px, calc(100% - 0.7rem));
                max-height: min(90dvh, 700px);
            }

            .faq-dialog-shell {
                padding: 0.92rem;
                gap: 0.85rem;
                max-height: min(88dvh, 720px);
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }

            .faq-dialog-copy h2 {
                font-size: clamp(1.35rem, 7vw, 1.9rem);
            }

            .faq-dialog-list {
                overflow: visible;
            }

            .faq-dialog-item {
                padding: 0.84rem 0.88rem;
            }

            .cta-row {
                width: 100%;
            }

            .cta-row .btn {
                width: 100%;
                max-width: none;
            }

            .hero-media {
                display: grid;
                gap: 0.9rem;
                align-content: start;
                min-height: auto;
                padding: 0.55rem;
                background-size: auto, 16px 16px, 16px 16px, auto, auto, auto;
            }

            .hero-media::before {
                right: -20px;
                bottom: -30px;
                width: 180px;
                height: 180px;
                border-width: 14px;
            }

            .portrait-note {
                position: relative;
                width: 100%;
            }

            .video-float {
                position: relative;
                width: 100%;
                padding: 0.34rem;
            }

            .video-frame video {
                aspect-ratio: 16 / 9;
            }

            .video-card {
                padding: 0.34rem;
            }

            .video-frame {
                padding: 3px;
                border-radius: 20px;
                box-shadow:
                    0 0 0 1px rgba(255, 246, 220, 0.24),
                    0 0 22px rgba(var(--gold-rgb), 0.28),
                    0 14px 32px rgba(var(--gold-rgb), 0.14),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
            }

            .video-frame video {
                border-radius: 16px;
            }

            .footer-brand {
                align-items: flex-start;
                gap: 0.7rem;
            }

            .footer-brand img {
                width: 38px;
                height: 38px;
                border-radius: 12px;
            }

            .editable-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-row .btn {
                width: 100%;
            }

            .cta-row .cta-link {
                width: 100%;
                justify-content: center;
            }

            .mobile-buy-bar {
                left: 0.55rem;
                right: 0.55rem;
                bottom: calc(0.55rem + env(safe-area-inset-bottom));
                padding: 0.8rem 0.85rem;
            }

            .mobile-buy-copy strong {
                font-size: 1.08rem;
            }

            .mobile-buy-copy span {
                font-size: 0.76rem;
            }

            .mobile-buy-bar .btn {
                min-height: 46px;
                padding: 0 0.9rem;
                font-size: 0.78rem;
            }

            .floating-social-link {
                width: 52px;
                height: 52px;
            }

            .floating-social-link svg,
            .floating-social-link img {
                width: 22px;
                height: 22px;
            }
        }

        .hero-shell,
        .hero-top,
        .hero-media,
        .video-float,
        .portrait-note,
        .signal-card,
        .impact-panel,
        .editable-panel,
        .audience-card,
        .video-sales-panel,
        .final-offer-panel,
        .video-card,
        .final-offer-box {
            border-radius: 20px;
            border: 1px solid rgba(var(--blue-rgb), 0.1);
            background:
                linear-gradient(180deg, rgba(255, 251, 242, 0.8), rgba(247, 237, 214, 0.58)),
                rgba(255, 248, 233, 0.46);
            box-shadow:
                0 16px 40px rgba(105, 72, 16, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.74);
            -webkit-backdrop-filter: blur(14px) saturate(118%);
            backdrop-filter: blur(14px) saturate(118%);
        }

        .hero-shell,
        .video-sales-panel,
        .final-offer-panel {
            background:
                radial-gradient(circle at 10% 12%, rgba(var(--gold-rgb), 0.14), transparent 18%),
                radial-gradient(circle at 88% 10%, rgba(var(--blue-rgb), 0.12), transparent 20%),
                linear-gradient(180deg, rgba(255, 251, 242, 0.84), rgba(246, 236, 212, 0.62)),
                rgba(255, 248, 233, 0.48);
            box-shadow:
                0 18px 46px rgba(105, 72, 16, 0.09),
                inset 0 1px 0 rgba(255, 255, 255, 0.76);
        }

        .hero-shell::before,
        .hero-shell::after,
        .hero-media::before,
        .hero-media::after,
        .video-float::before,
        .portrait-note::before,
        .signal-card::before,
        .impact-panel::before,
        .editable-panel::before,
        .audience-card::before,
        .video-sales-panel::before,
        .final-offer-panel::before {
            display: block;
            opacity: 0.52;
        }

        .hero-shell {
            overflow: hidden;
        }

        .hero-top {
            padding: 0.95rem 1.05rem;
        }

        .hero-grid {
            padding: 1.15rem;
        }

        .hero-media,
        .video-float,
        .video-card {
            padding: 0.55rem;
        }

        .offer-strip,
        .offer-card,
        .faq-dialog-item {
            border-radius: 18px;
        }

        .portrait-note {
            max-width: 620px;
            padding: 1rem 1.05rem 1.05rem;
            border-left: 0;
        }

        .kicker {
            padding: 0.58rem 0.88rem;
            border-radius: 999px;
            background:
                linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(255, 240, 210, 0.72)),
                rgba(var(--blue-rgb), 0.06);
            border: 1px solid rgba(var(--blue-rgb), 0.14);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.82),
                0 10px 22px rgba(105, 72, 16, 0.08);
            -webkit-backdrop-filter: blur(12px) saturate(118%);
            backdrop-filter: blur(12px) saturate(118%);
        }

        .kicker::before {
            width: 0.48rem;
            height: 0.48rem;
            box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.3);
        }

        .section {
            padding: 3.5rem 0;
        }

        .section-head {
            margin-bottom: 1.7rem;
        }

        .signal-grid {
            gap: 1rem;
        }

        .signal-card {
            padding: 1rem 1rem 1.05rem;
            border-top: 0;
        }

        .impact-panel,
        .editable-panel,
        .audience-card,
        .video-sales-panel,
        .final-offer-panel {
            padding-left: clamp(1rem, 2vw, 1.35rem);
            padding-right: clamp(1rem, 2vw, 1.35rem);
        }

        .final-offer-panel {
            margin-top: 0.35rem;
        }

        #video-decisao.section {
            padding-top: 2.9rem;
            padding-bottom: 1rem;
        }

        .final-offer-box {
            padding: 1rem;
            border-left: 0;
        }

        @media (prefers-reduced-motion: reduce) {
            .spell-crest::after,
            .spell-crest img,
            .spell-magnetic::before {
                animation: none;
            }

            .spell-glow::after {
                opacity: 0;
                transition: none;
            }

            .spell-glow,
            .spell-magnetic,
            .reveal-list li,
            .motion-ready .reveal-list li,
            .motion-ready .reveal-list li.active {
                transition: none;
            }

            .reveal-list li,
            .motion-ready .reveal-list li,
            .motion-ready .reveal-list li.active {
                opacity: 1;
                transform: none;
            }

            #cta-prova-social {
                animation: none;
            }
        }
