        :root {
            --primary: #0B1F33;
            --bg: #F7FAFC;
            --surface: #FFFFFF;
            --text: #0F172A;
            --muted: #526173;
            --border: #E6EDF5;
            --gold: #D6B15E;
            --cta: #F5B301;
            --teal: #0EA5A4;
            --radius: 16px;
            --shadow: 0 4px 24px rgba(11, 31, 51, .07);
            --shadow-lg: 0 8px 40px rgba(11, 31, 51, .12);
        }

        /* ═══════════════════════════════════════════════
           SCROLL REVEAL ANIMATIONS
           ═══════════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
        }
        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
        }
        .reveal-left.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
        }
        .reveal-right.revealed {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-scale {
            opacity: 0;
            transform: scale(.92);
            transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
        }
        .reveal-scale.revealed {
            opacity: 1;
            transform: scale(1);
        }
        /* Stagger delays for grid children */
        .reveal-stagger > :nth-child(1) { transition-delay: 0s }
        .reveal-stagger > :nth-child(2) { transition-delay: .08s }
        .reveal-stagger > :nth-child(3) { transition-delay: .16s }
        .reveal-stagger > :nth-child(4) { transition-delay: .24s }
        .reveal-stagger > :nth-child(5) { transition-delay: .32s }
        .reveal-stagger > :nth-child(6) { transition-delay: .40s }
        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1);
        }
        .reveal-stagger.revealed > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════════
           HERO ENTRANCE ANIMATIONS
           ═══════════════════════════════════════════════ */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(30px) }
            to   { opacity: 1; transform: translateY(0) }
        }
        @keyframes heroFadeRight {
            from { opacity: 0; transform: translateX(40px) scale(.97) }
            to   { opacity: 1; transform: translateX(0) scale(1) }
        }
        @keyframes heroBadgeIn {
            from { opacity: 0; transform: translateY(-10px) scale(.9) }
            to   { opacity: 1; transform: translateY(0) scale(1) }
        }
        .hero__content {
            animation: heroFadeUp .8s cubic-bezier(.22,1,.36,1) .15s both;
        }
        .hero__photo {
            animation: heroFadeRight .9s cubic-bezier(.22,1,.36,1) .3s both;
        }
        .hero__content .badge {
            animation: heroBadgeIn .6s cubic-bezier(.22,1,.36,1) .5s both;
        }

        /* ═══════════════════════════════════════════════
           SHIMMER BADGE EFFECT
           ═══════════════════════════════════════════════ */
        @keyframes shimmer {
            0%   { background-position: -200% center }
            100% { background-position: 200% center }
        }
        .badge--gold {
            background: linear-gradient(110deg, rgba(214,177,94,.12) 30%, rgba(214,177,94,.28) 50%, rgba(214,177,94,.12) 70%);
            background-size: 200% 100%;
            animation: shimmer 3.5s ease-in-out infinite;
        }

        /* ═══════════════════════════════════════════════
           CTA PULSE GLOW
           ═══════════════════════════════════════════════ */
        @keyframes ctaPulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(245,179,1,.35) }
            50%      { box-shadow: 0 4px 36px rgba(245,179,1,.55), 0 0 60px rgba(245,179,1,.15) }
        }
        .btn--cta {
            animation: ctaPulse 2.8s ease-in-out infinite;
        }
        .btn--cta:hover {
            animation: none;
            transform: translateY(-3px);
            box-shadow: 0 8px 36px rgba(245,179,1,.5);
        }

        /* ═══════════════════════════════════════════════
           HERO PHOTO GLOW FRAME
           ═══════════════════════════════════════════════ */
        @keyframes frameGlow {
            0%, 100% { border-color: rgba(214,177,94,.25); box-shadow: 0 8px 40px rgba(11,31,51,.12) }
            50%      { border-color: rgba(214,177,94,.45); box-shadow: 0 8px 50px rgba(214,177,94,.15), 0 0 80px rgba(14,165,164,.08) }
        }
        .hero__photo-frame {
            animation: frameGlow 4s ease-in-out infinite;
        }

        /* ═══════════════════════════════════════════════
           NAVBAR SCROLL SHRINK
           ═══════════════════════════════════════════════ */
        .topbar--scrolled {
            background: rgba(11, 31, 51, .97);
            box-shadow: 0 4px 30px rgba(0,0,0,.18);
        }
        .topbar--scrolled .topbar__inner {
            height: 56px;
            transition: height .3s ease;
        }
        .topbar--scrolled .topbar__brand img {
            height: 110px;
            margin-top: 10px;
            transition: height .3s ease, margin-top .3s ease;
        }
        .topbar__inner {
            transition: height .3s ease;
        }
        .topbar__brand img {
            transition: height .3s ease, margin-top .3s ease;
        }

        /* ═══════════════════════════════════════════════
           ENHANCED CARD HOVER — GRADIENT BORDER GLOW
           ═══════════════════════════════════════════════ */
        .credential-card {
            transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
        }
        .credential-card:hover {
            box-shadow: 0 8px 32px rgba(14,165,164,.12), 0 2px 12px rgba(11,31,51,.08);
            transform: translateY(-4px);
            border-color: rgba(14,165,164,.25);
        }

        .skill-card {
            transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
            position: relative;
            overflow: hidden;
        }
        .skill-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--teal));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s cubic-bezier(.22,1,.36,1);
        }
        .skill-card:hover::before {
            transform: scaleX(1);
        }
        .skill-card:hover {
            border-color: var(--gold);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(214,177,94,.1);
        }

        .diff-item {
            transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
        }
        .diff-item:hover {
            box-shadow: 0 12px 36px rgba(14,165,164,.1), var(--shadow);
            transform: translateY(-3px);
            border-color: rgba(14,165,164,.2);
        }

        .included-item {
            transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
        }
        .included-item:hover {
            box-shadow: 0 8px 28px rgba(14,165,164,.1);
            transform: translateY(-3px);
            border-color: rgba(14,165,164,.2);
        }

        .program-day {
            transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
        }
        .program-day:hover {
            border-color: rgba(214,177,94,.3);
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(214,177,94,.08);
        }

        .testimonial-card {
            transition: box-shadow .3s ease, transform .3s ease;
        }
        .testimonial-card:hover {
            box-shadow: 0 12px 40px rgba(14,165,164,.08);
            transform: translateY(-4px);
        }

        /* ═══════════════════════════════════════════════
           ANIMATED GOLD LINE
           ═══════════════════════════════════════════════ */
        .gold-line {
            transform: scaleX(0);
            transform-origin: center;
            transition: transform .6s cubic-bezier(.22,1,.36,1) .15s;
        }
        .revealed .gold-line,
        .hero .gold-line {
            transform: scaleX(1);
        }

        /* ═══════════════════════════════════════════════
           COUNTER ANIMATION
           ═══════════════════════════════════════════════ */
        .social-proof-item__number {
            transition: transform .3s ease;
        }
        .social-proof-item:hover .social-proof-item__number {
            transform: scale(1.08);
        }

        /* ═══════════════════════════════════════════════
           SECTION WAVE DIVIDERS
           ═══════════════════════════════════════════════ */
        .section-divider {
            position: relative;
            height: 80px;
            overflow: hidden;
            margin-top: -1px;
        }
        .section-divider--dark-to-light {
            background: var(--bg);
        }
        .section-divider--dark-to-light svg {
            fill: var(--primary);
        }
        .section-divider--light-to-dark {
            background: var(--primary);
        }
        .section-divider--light-to-dark svg {
            fill: var(--bg);
        }
        .section-divider svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* ═══════════════════════════════════════════════
           FLOATING DECORATIVE ELEMENTS
           ═══════════════════════════════════════════════ */
        @keyframes float-slow {
            0%, 100% { transform: translateY(0) rotate(0deg) }
            50%      { transform: translateY(-18px) rotate(3deg) }
        }
        @keyframes float-medium {
            0%, 100% { transform: translateY(0) rotate(0deg) }
            50%      { transform: translateY(-12px) rotate(-2deg) }
        }
        .hero__floating-dot {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: .15;
        }
        .hero__floating-dot--1 {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--teal), transparent 70%);
            top: 20%;
            right: -30px;
            animation: float-slow 7s ease-in-out infinite;
        }
        .hero__floating-dot--2 {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, var(--gold), transparent 70%);
            bottom: 15%;
            left: 5%;
            animation: float-medium 5.5s ease-in-out infinite;
        }
        .hero__floating-dot--3 {
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, rgba(255,255,255,.3), transparent 70%);
            top: 35%;
            left: 45%;
            animation: float-slow 9s ease-in-out infinite 1s;
        }

        /* ═══════════════════════════════════════════════
           ENHANCED HERO META ITEMS
           ═══════════════════════════════════════════════ */
        .hero__meta-item {
            transition: color .25s ease, transform .25s ease;
        }
        .hero__meta-item:hover {
            color: rgba(255,255,255,.9);
            transform: translateY(-1px);
        }
        .hero__meta-item:hover svg {
            color: var(--gold);
        }
        .hero__meta-item svg {
            transition: color .25s ease;
        }

        /* ═══════════════════════════════════════════════
           FOR/NOT-FOR CARD HOVER ENHANCEMENT
           ═══════════════════════════════════════════════ */
        .for-card {
            transition: transform .3s ease, box-shadow .3s ease;
        }
        .for-card--yes:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(14,165,164,.12);
        }
        .for-card--no:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(82,97,115,.1);
        }

        /* ═══════════════════════════════════════════════
           FAQ ITEM HOVER GLOW
           ═══════════════════════════════════════════════ */
        .faq-item {
            transition: border-color .25s ease, box-shadow .25s ease;
        }
        .faq-item:hover {
            border-color: rgba(14,165,164,.2);
            box-shadow: 0 4px 20px rgba(14,165,164,.06);
        }
        .faq-item.open {
            border-color: var(--teal);
            box-shadow: 0 4px 24px rgba(14,165,164,.1);
        }

        /* ═══════════════════════════════════════════════
           SPONSOR LOGO HOVER SCALE
           ═══════════════════════════════════════════════ */
        .sponsors-row img {
            transition: opacity .3s ease, filter .3s ease, transform .3s ease;
        }
        .sponsors-row img:hover {
            opacity: 1;
            filter: none;
            transform: scale(1.06);
        }

        /* ═══════════════════════════════════════════════
           CTA FINAL ENHANCED
           ═══════════════════════════════════════════════ */
        .cta-final {
            position: relative;
            overflow: hidden;
        }
        .cta-final::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(14,165,164,.06) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(214,177,94,.06) 0%, transparent 50%);
            pointer-events: none;
            animation: float-slow 12s ease-in-out infinite;
        }
        .cta-final > .container {
            position: relative;
            z-index: 2;
        }

        /* ═══════════════════════════════════════════════
           BTN OUTLINE HOVER ANIMATION
           ═══════════════════════════════════════════════ */
        .btn--outline {
            transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s ease;
        }
        .btn--outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(214,177,94,.06);
            transform: translateY(-2px);
        }

        /* ═══════════════════════════════════════════════
           ABOUT SECTION IMAGE HOVER
           ═══════════════════════════════════════════════ */
        .about__img {
            transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
        }
        .about__img:hover {
            transform: scale(1.02);
            box-shadow: 0 16px 60px rgba(0,0,0,.25);
        }

        /* ═══════════════════════════════════════════════
           PHOTO TAG FLOATING ANIMATION
           ═══════════════════════════════════════════════ */
        @keyframes tagFloat {
            0%, 100% { transform: translateX(-50%) translateY(0) }
            50%      { transform: translateX(-50%) translateY(-4px) }
        }
        .hero__photo-tag {
            animation: tagFloat 3s ease-in-out infinite;
        }

        /* ═══════════════════════════════════════════════
           REDUCED MOTION — RESPECT USER PREFERENCES
           ═══════════════════════════════════════════════ */
        @media (prefers-reduced-motion: reduce) {
            .reveal, .reveal-left, .reveal-right, .reveal-scale {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .reveal-stagger > * {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .hero__content, .hero__photo, .hero__content .badge {
                animation: none;
            }
            .badge--gold {
                animation: none;
            }
            .btn--cta {
                animation: none;
            }
            .hero__photo-frame {
                animation: none;
            }
            .hero__floating-dot {
                animation: none;
            }
            .hero__photo-tag {
                animation: none;
            }
            .cta-final::before {
                animation: none;
            }
            .gold-line {
                transform: scaleX(1);
                transition: none;
            }
        }

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

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

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            line-height: 1.2
        }

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

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

        .container {
            max-width: 1120px;
            margin: 0 auto;
            padding: 0 24px
        }

        .section {
            padding: 96px 0
        }

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

        .section--dark .muted-text {
            color: rgba(255, 255, 255, .6)
        }

        .muted-text {
            color: var(--muted);
            font-size: .95rem
        }

        /* ─── Buttons ─── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: 1.05rem;
            padding: 16px 36px;
            border-radius: var(--radius);
            border: none;
            cursor: pointer;
            transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease
        }

        /* ─── Focus visible ─── */
        .btn:focus-visible,
        a:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px
        }

        .faq-item__q:focus-visible {
            outline: 2px solid var(--teal);
            outline-offset: -2px;
            border-radius: var(--radius)
        }

        .btn--cta {
            background: var(--cta);
            color: var(--primary);
        }

        .btn--outline {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, .25);
            color: #fff
        }

        .btn--outline:hover {
            border-color: var(--gold);
            color: var(--gold)
        }

        .btn--teal {
            background: var(--teal);
            color: #fff
        }

        .btn--teal:hover {
            background: #0c8f8e
        }

        /* ─── Badge ─── */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(14, 165, 164, .1);
            color: var(--teal);
            font-size: .8rem;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
            letter-spacing: .02em;
            text-transform: uppercase
        }

        .badge--gold {
            background: rgba(214, 177, 94, .12);
            color: var(--gold)
        }

        /* ─── Gold line accent ─── */
        .gold-line {
            width: 48px;
            height: 3px;
            background: var(--gold);
            border-radius: 3px;
            margin-bottom: 16px;
        }

        /* ─── Section heading ─── */
        .section-heading {
            text-align: center;
            margin-bottom: 56px
        }

        .section-heading h2 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            margin-bottom: 12px
        }

        .section-heading p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--muted)
        }

        .lp-public-rich-subtitle {
            max-width: 680px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7
        }

        .lp-public-rich-subtitle p,
        .lp-public-rich-subtitle ul,
        .lp-public-rich-subtitle ol {
            margin: 0 0 10px
        }

        .lp-public-rich-subtitle p:last-child,
        .lp-public-rich-subtitle ul:last-child,
        .lp-public-rich-subtitle ol:last-child {
            margin-bottom: 0
        }

        .lp-public-rich-subtitle ul,
        .lp-public-rich-subtitle ol {
            text-align: left;
            padding-left: 20px
        }

        .section--dark .section-heading p {
            color: rgba(255, 255, 255, .6)
        }

        .section--dark .lp-public-rich-subtitle {
            color: rgba(255, 255, 255, .68)
        }

        /* ─── NAV ─── */
        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 31, 51, .92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            transition: background .3s
        }

        .topbar__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px
        }

        .topbar__brand {
            display: flex;
            align-items: center;
            flex-shrink: 0
        }

        .topbar__brand img {
            height: 140px;
            width: auto;
            margin-top: 15px;
            display: block;
            filter: brightness(0) invert(1)
        }

        .topbar__links {
            display: flex;
            gap: 28px;
            list-style: none;
            flex: 1;
            justify-content: center
        }

        .topbar__links a {
            color: rgba(255, 255, 255, .7);
            font-size: .88rem;
            font-weight: 500;
            transition: color .2s
        }

        .topbar__links a:hover {
            color: var(--gold)
        }

        .topbar__cta {
            font-size: .85rem;
            padding: 10px 22px
        }

        @media(max-width:768px) {
            .topbar__links {
                display: none
            }

            .topbar__cta span {
                display: none
            }
        }

        /* ─── HERO ─── */
        .hero {
            padding: 140px 0 100px;
            background: linear-gradient(170deg, var(--primary) 0%, #132d47 100%);
            color: #fff;
            position: relative;
            overflow: hidden
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(14, 165, 164, .12) 0%, transparent 70%);
            pointer-events: none
        }

        .hero__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center
        }

        .hero__photo {
            position: relative
        }

        .hero__photo-frame {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 3px solid rgba(214, 177, 94, .25);
            aspect-ratio: 4/5;
            background: var(--primary)
        }

        .hero__media {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .hero__media--video {
            display: block
        }

        .hero__media--image {
            display: none
        }

        .hero__photo-frame--image .hero__media--video {
            display: none
        }

        .hero__photo-frame--image .hero__media--image {
            display: block
        }

        .hero__photo-tag {
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--surface);
            color: var(--primary);
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .82rem;
            padding: 10px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            white-space: nowrap
        }

        .hero__content .badge {
            margin-bottom: 20px
        }

        .hero__content h1 {
            font-size: clamp(1.9rem, 4.5vw, 2.8rem);
            margin-bottom: 20px
        }

        .hero__content h1 span {
            color: var(--gold)
        }

        .hero__subtitle {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, .72);
            margin-bottom: 12px;
            max-width: 520px
        }

        .hero__subtitle.lp-public-rich-subtitle {
            margin-left: 0;
            margin-right: 0
        }

        .hero__subtitle.lp-public-rich-subtitle p,
        .hero__subtitle.lp-public-rich-subtitle ul,
        .hero__subtitle.lp-public-rich-subtitle ol {
            color: rgba(255, 255, 255, .82)
        }

        .hero__meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 28px 0 36px
        }

        .hero__meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            color: rgba(255, 255, 255, .65)
        }

        .hero__meta-item svg {
            flex-shrink: 0
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px
        }

        @media(max-width:900px) {
            .hero__grid {
                grid-template-columns: 1fr;
                text-align: center
            }

            .hero__photo {
                order: -1;
                max-width: 320px;
                margin: 0 auto
            }

            .hero__subtitle {
                margin-left: auto;
                margin-right: auto
            }

            .hero__subtitle.lp-public-rich-subtitle {
                text-align: center
            }

            .hero__meta {
                justify-content: center
            }

            .hero__actions {
                justify-content: center
            }
        }

        /* ─── CREDENTIALS ─── */
        .credentials {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px
        }

        .credential-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
        }

        .credential-card__icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 165, 164, .08);
            border-radius: 12px;
            color: var(--teal)
        }

        .credential-card h4 {
            font-size: 1rem;
            margin-bottom: 6px
        }

        .credential-card p {
            font-size: .88rem;
            color: var(--muted)
        }

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

        @media(max-width:480px) {
            .credentials {
                grid-template-columns: 1fr
            }
        }

        /* ─── ABOUT ─── */
        .about__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center
        }

        .about__img {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow)
        }

        .about__img img {
            width: 100%;
            object-fit: cover
        }

        .about__text h2 {
            font-size: clamp(1.6rem, 3.5vw, 2.2rem);
            margin-bottom: 16px
        }

        .about__text>p {
            color: var(--muted);
            margin-bottom: 20px
        }

        .about__highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px
        }

        .about__highlight {
            display: flex;
            align-items: flex-start;
            gap: 12px
        }

        .about__highlight svg {
            flex-shrink: 0;
            margin-top: 3px;
            color: var(--teal)
        }

        .about__highlight strong {
            display: block;
            font-size: .95rem
        }

        .about__highlight span {
            font-size: .85rem;
            color: var(--muted)
        }

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

            .about__highlights {
                grid-template-columns: 1fr
            }
        }

        /* ─── SKILLS ─── */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .skill-card {
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius);
            padding: 32px 28px;
        }

        .skill-card__num {
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 12px
        }

        .skill-card h4 {
            font-size: 1.05rem;
            margin-bottom: 8px
        }

        .skill-card p {
            font-size: .88rem;
            color: rgba(255, 255, 255, .55);
            line-height: 1.6
        }

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

        /* ─── DIFFERENTIALS ─── */
        .diff-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px
        }

        .diff-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px 24px;
        }

        .diff-item__icon {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(14, 165, 164, .1), rgba(214, 177, 94, .1));
            border-radius: 14px;
            color: var(--teal)
        }

        .diff-item h4 {
            font-size: 1rem;
            margin-bottom: 4px
        }

        .diff-item p {
            font-size: .88rem;
            color: var(--muted)
        }

        @media(max-width:600px) {
            .diff-grid {
                grid-template-columns: 1fr
            }
        }

        /* ─── FOR / NOT FOR ─── */
        .for-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px
        }

        .for-card {
            border-radius: var(--radius);
            padding: 40px 32px
        }

        .for-card--yes {
            background: rgba(14, 165, 164, .06);
            border: 1px solid rgba(14, 165, 164, .15)
        }

        .for-card--no {
            background: rgba(82, 97, 115, .06);
            border: 1px solid rgba(82, 97, 115, .18)
        }

        .for-card h3 {
            font-family: 'Manrope', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .for-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .for-card li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .93rem;
            color: var(--muted)
        }

        .for-card li svg {
            flex-shrink: 0;
            margin-top: 3px
        }

        @media(max-width:600px) {
            .for-grid {
                grid-template-columns: 1fr
            }
        }

        /* ─── PROGRAM ─── */
        .program-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px
        }

        .program-day {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius);
            padding: 28px 24px
        }

        .program-day__label {
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .78rem;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--gold);
            margin-bottom: 8px
        }

        .program-day h4 {
            font-size: 1.05rem;
            margin-bottom: 8px
        }

        .program-day p {
            font-size: .86rem;
            color: rgba(255, 255, 255, .55);
            line-height: 1.6
        }

        @media(max-width:600px) {
            .program-grid {
                grid-template-columns: 1fr
            }
        }

        /* ─── INCLUDED ─── */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .included-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px 20px
        }

        .included-item svg {
            flex-shrink: 0;
            color: var(--teal);
            margin-top: 2px
        }

        .included-item strong {
            display: block;
            font-size: .93rem;
            margin-bottom: 2px
        }

        .included-item span {
            font-size: .84rem;
            color: var(--muted)
        }

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

        @media(max-width:480px) {
            .included-grid {
                grid-template-columns: 1fr
            }
        }

        /* ─── TESTIMONIALS ─── */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px
        }

        .testimonial-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 24px;
            position: relative
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Manrope', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--teal);
            opacity: .15;
            position: absolute;
            top: 12px;
            left: 20px;
            line-height: 1
        }

        .testimonial-card p {
            font-size: .92rem;
            color: var(--muted);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1
        }

        .testimonial-card__author {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .testimonial-card__avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--border);
            overflow: hidden
        }

        .testimonial-card__avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .testimonial-card__info strong {
            display: block;
            font-size: .88rem
        }

        .testimonial-card__info span {
            font-size: .8rem;
            color: var(--muted)
        }

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

        /* ─── SPONSORS ─── */
        .sponsors-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 64px;
            flex-wrap: wrap
        }

        .sponsors-row img {
            max-height: 48px;
            opacity: .7;
            filter: grayscale(.3);
        }

        /* ─── FAQ ─── */
        .faq-list {
            max-width: 760px;
            margin: 0 auto
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--surface)
        }

        .faq-item__q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 20px 24px;
            cursor: pointer;
            font-family: 'Manrope', sans-serif;
            font-weight: 700;
            font-size: .98rem;
            gap: 16px;
            user-select: none;
            background: none;
            border: none;
            color: inherit;
            text-align: left;
            line-height: 1.4
        }

        .faq-item__q svg {
            flex-shrink: 0;
            transition: transform .25s
        }

        .faq-item.open .faq-item__q svg {
            transform: rotate(45deg)
        }

        .faq-item__a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease
        }

        .faq-item__a-inner {
            padding: 0 24px 20px;
            font-size: .92rem;
            color: var(--muted);
            line-height: 1.7
        }

        /* ─── CTA FINAL ─── */
        .cta-final {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(170deg, var(--primary), #132d47)
        }

        .cta-final h2 {
            color: #fff;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            margin-bottom: 12px
        }

        .cta-final p {
            color: rgba(255, 255, 255, .6);
            margin-bottom: 36px;
            max-width: 540px;
            margin-left: auto;
            margin-right: auto
        }

        .cta-final .lp-public-rich-subtitle {
            color: rgba(255, 255, 255, .72);
            margin: 0 auto 36px;
            max-width: 540px
        }

        .cta-final .btn {
            margin: 0 8px
        }

        .cta-final__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px
        }

        /* ─── Credential List ─── */
        .credential-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left
        }

        .credential-list li {
            position: relative;
            padding-left: 18px;
            margin-bottom: 6px;
            font-size: .9rem;
            line-height: 1.6;
            color: var(--muted)
        }

        .credential-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 700
        }

        /* ─── Social Proof Row ─── */
        .social-proof-row {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 40px
        }

        .social-proof-item {
            text-align: center
        }

        .social-proof-item__number {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-weight: 800;
            font-size: 2.8rem;
            color: var(--teal);
            line-height: 1
        }

        .social-proof-item__label {
            font-size: .9rem;
            color: var(--muted);
            margin-top: 6px;
            display: block
        }

        /* ─── Location Block (Opção Centralizada) ─── */
        .location-block {
            display: flex;
            flex-direction: column;
            /* Coloca o ícone acima do texto */
            align-items: center;
            /* Centraliza os itens no eixo X */
            justify-content: center;
            gap: 12px;
            /* Espaço entre ícone e texto */
            padding: 32px 24px;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: var(--radius);
            margin-top: 36px;
            max-width: 480px;
            /* Um pouco mais estreito fica melhor aqui */
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            /* Centraliza as linhas de texto */
        }

        .location-block svg {
            flex-shrink: 0;
            color: var(--gold);
            width: 28px;
            /* Ícone levemente maior para dar destaque */
            height: 28px;
            margin-bottom: 4px;
        }

        .location-block strong {
            display: block;
            margin-bottom: 6px;
            color: #fff;
            font-size: 1.05rem;
            /* Leve destaque no título */
        }

        .location-block span {
            font-size: .9rem;
            color: rgba(255, 255, 255, .65);
            line-height: 1.6;
        }

        /* ─── FOOTER ─── */
        .footer {
            background: var(--primary);
            color: rgba(255, 255, 255, .5);
            text-align: center;
            padding: 32px 0;
            font-size: .82rem;
            border-top: 1px solid rgba(255, 255, 255, .06)
        }

        /* ─── STICKY CTA (mobile) ─── */
        .sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 99;
            background: var(--primary);
            padding: 12px 16px;
            border-top: 1px solid rgba(255, 255, 255, .1)
        }

        .sticky-cta .btn {
            width: 100%;
            justify-content: center;
            padding: 14px;
            font-size: .95rem
        }

        @media(max-width:768px) {
            .sticky-cta {
                display: block
            }

            body {
                padding-bottom: 68px
            }
        }

        /* ─── Captação de Lead ─── */
        .captacao-lead {
            padding: 110px 0;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 15% 0%, rgba(14, 165, 164, .12) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 100%, rgba(214, 177, 94, .12) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 50%, rgba(11, 31, 51, 0) 0%, transparent 100%),
                var(--primary);
        }

        /* Container relativo para os glows ficarem posicionados corretamente */
        .captacao-lead__container {
            position: relative;
            z-index: 2;
        }

        /* Glows decorativos de fundo */
        .captacao-lead__bg-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(90px);
            z-index: 1;
        }

        .captacao-lead__bg-glow--1 {
            top: -100px;
            left: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(14, 165, 164, .20) 0%, transparent 70%);
        }

        .captacao-lead__bg-glow--2 {
            bottom: -120px;
            right: -100px;
            width: 460px;
            height: 460px;
            background: radial-gradient(circle, rgba(214, 177, 94, .16) 0%, transparent 70%);
        }

        /* Terceiro glow central sutil para profundidade */
        .captacao-lead__bg-glow--3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(255, 255, 255, .02) 0%, transparent 70%);
        }

        /* ── Layout split: duas colunas no desktop ── */
        .captacao-lead__split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        /* ── Coluna esquerda: contexto e persuasão ── */
        .captacao-lead__context {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Eyebrow pill — tag de categoria */
        .captacao-lead__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(214, 177, 94, .12);
            color: var(--gold);
            font-family: 'Manrope', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 100px;
            border: 1px solid rgba(214, 177, 94, .25);
            margin-bottom: 22px;
        }

        /* Título principal da seção */
        .captacao-lead__titulo {
            font-size: clamp(1.9rem, 3.5vw, 2.6rem);
            color: #fff;
            line-height: 1.15;
            margin-bottom: 16px;
        }

        /* Subtítulo descritivo */
        .captacao-lead__subtitulo {
            color: rgba(255, 255, 255, .68);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Separador dourado decorativo */
        .captacao-lead__divider {
            width: 48px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--teal));
            border-radius: 3px;
            margin: 28px 0;
        }

        /* Lista de benefícios */
        .captacao-lead__beneficios {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
        }

        .captacao-lead__beneficio {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: rgba(255, 255, 255, .82);
            font-size: .97rem;
            line-height: 1.5;
        }

        /* Ícone de checkmark do benefício */
        .captacao-lead__beneficio-icon {
            flex-shrink: 0;
            margin-top: 2px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(14, 165, 164, .15);
            border: 1px solid rgba(14, 165, 164, .30);
            border-radius: 50%;
            color: var(--teal);
        }

        /* Badge de urgência com dot pulsante */
        .captacao-lead__urgencia {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(245, 179, 1, .10);
            border: 1px solid rgba(245, 179, 1, .25);
            border-radius: 100px;
            padding: 9px 18px;
            color: var(--cta);
            font-family: 'Manrope', sans-serif;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: .03em;
        }

        /* Dot animado de status "ao vivo" */
        .captacao-lead__urgencia-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cta);
            flex-shrink: 0;
            animation: captacao-pulse 1.8s ease-in-out infinite;
        }

        @keyframes captacao-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: .5; transform: scale(.75); }
        }

        /* ── Coluna direita: wrapper do card ── */
        .captacao-lead__form-col {
            display: flex;
            flex-direction: column;
        }

        /* Card glassmorphism do formulário */
        .captacao-lead__card {
            position: relative;
            background: linear-gradient(160deg, rgba(255, 255, 255, .09) 0%, rgba(255, 255, 255, .04) 100%);
            border: 1px solid rgba(255, 255, 255, .13);
            border-radius: 20px;
            padding: 44px 40px 32px;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow:
                0 24px 64px rgba(0, 0, 0, .40),
                0 0 0 1px rgba(255, 255, 255, .03) inset;
        }

        /* Linha de acento dourado no topo do card */
        .captacao-lead__card-accent {
            position: absolute;
            top: 0;
            left: 40px;
            right: 40px;
            height: 3px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--teal) 70%, transparent 100%);
            border-radius: 0 0 3px 3px;
        }

        /* Cabeçalho do card com ícone + texto */
        .captacao-lead__card-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-bottom: 22px;
            margin-bottom: 24px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .captacao-lead__card-icon {
            flex-shrink: 0;
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(14, 165, 164, .18), rgba(214, 177, 94, .18));
            border: 1px solid rgba(214, 177, 94, .25);
            border-radius: 12px;
            color: var(--gold);
        }

        .captacao-lead__card-header-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .captacao-lead__card-header-text strong {
            font-family: 'Manrope', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
        }

        .captacao-lead__card-header-text span {
            font-size: .82rem;
            color: rgba(255, 255, 255, .55);
            letter-spacing: .02em;
        }

        /* Formulário interno */
        .captacao-lead__form {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        /* Label dos campos */
        .captacao-lead__campo label {
            display: block;
            font-size: .82rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .85);
            margin-bottom: 8px;
            letter-spacing: .02em;
        }

        .captacao-lead__campo label .text-danger {
            color: var(--gold);
        }

        /* Wrapper do input com ícone posicionado */
        .captacao-lead__input-wrap {
            position: relative;
        }

        .captacao-lead__input-icon {
            position: absolute;
            top: 50%;
            left: 14px;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            transition: color .2s ease;
        }

        /* Input do formulário */
        .captacao-lead__campo input {
            width: 100%;
            padding: 15px 16px 15px 44px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            color: #fff;
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            outline: none;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        .captacao-lead__campo input::placeholder {
            color: rgba(255, 255, 255, .32);
        }

        .captacao-lead__campo input:hover {
            border-color: rgba(255, 255, 255, .22);
            background: rgba(255, 255, 255, .07);
        }

        .captacao-lead__campo input:focus {
            border-color: var(--gold);
            background: rgba(255, 255, 255, .08);
            box-shadow: 0 0 0 4px rgba(214, 177, 94, .18);
        }

        /* Ícone do campo ganha cor gold ao focar */
        .captacao-lead__input-wrap:focus-within .captacao-lead__input-icon {
            color: var(--gold);
        }

        /* Estado de erro no campo */
        .captacao-lead__campo input.campo-invalido {
            border-color: #ff6b6b;
            box-shadow: 0 0 0 4px rgba(224, 49, 49, .14);
        }

        .captacao-lead__campo .campo-erro-msg {
            display: block;
            color: #ff8080;
            font-size: .8rem;
            margin-top: 6px;
        }

        /* Botão de envio */
        .captacao-lead__btn {
            width: 100%;
            margin-top: 10px;
            justify-content: center;
            gap: 10px;
            font-size: 1.05rem;
            padding: 17px 24px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .captacao-lead__btn svg {
            transition: transform .25s ease;
        }

        .captacao-lead__btn:hover svg {
            transform: translateX(4px);
        }

        .captacao-lead__btn:disabled {
            opacity: .65;
            cursor: not-allowed;
            transform: none !important;
        }

        /* Feedback de resposta do formulário */
        .captacao-lead__feedback {
            margin-top: 14px;
            text-align: center;
            padding: 14px 16px;
            border-radius: 12px;
            font-size: .95rem;
            font-weight: 500;
            line-height: 1.5;
        }

        .captacao-lead__feedback--sucesso {
            background: rgba(14, 165, 164, .12);
            color: #5eead4;
            border: 1px solid rgba(14, 165, 164, .25);
        }

        .captacao-lead__feedback--erro {
            background: rgba(224, 49, 49, .1);
            color: #ff8080;
            border: 1px solid rgba(224, 49, 49, .2);
        }

        .captacao-lead__feedback--info {
            background: rgba(214, 177, 94, .1);
            color: var(--gold);
            border: 1px solid rgba(214, 177, 94, .2);
        }

        /* Barra de confiança abaixo do formulário */
        .captacao-lead__trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 26px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .captacao-lead__trust-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: rgba(255, 255, 255, .62);
            font-size: .8rem;
            font-weight: 500;
        }

        .captacao-lead__trust-item svg {
            color: var(--teal);
            flex-shrink: 0;
        }

        .captacao-lead__trust-divider {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .2);
        }

        /* ── Responsividade: tablet e mobile ── */

        /* Tablet: reduz o gap e ajusta proporções */
        @media (max-width: 900px) {
            .captacao-lead__split {
                gap: 48px;
            }

            .captacao-lead__titulo {
                font-size: clamp(1.7rem, 4vw, 2.2rem);
            }
        }

        /* Mobile: empilha coluna de contexto acima do formulário */
        @media (max-width: 768px) {
            .captacao-lead {
                padding: 80px 0;
            }

            .captacao-lead__split {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .captacao-lead__context {
                text-align: center;
                align-items: center;
            }

            .captacao-lead__divider {
                margin: 24px auto;
            }

            .captacao-lead__urgencia {
                font-size: .78rem;
            }
        }

        /* Mobile pequeno: ajustes finos no card */
        @media (max-width: 480px) {
            .captacao-lead {
                padding: 64px 0;
            }

            .captacao-lead__card {
                padding: 32px 22px 24px;
                border-radius: 16px;
            }

            .captacao-lead__card-accent {
                left: 22px;
                right: 22px;
            }

            .captacao-lead__card-header {
                gap: 12px;
                padding-bottom: 18px;
                margin-bottom: 20px;
            }

            .captacao-lead__card-icon {
                width: 40px;
                height: 40px;
            }

            .captacao-lead__trust {
                gap: 10px;
            }

            .captacao-lead__trust-divider {
                display: none;
            }

            .captacao-lead__beneficios {
                text-align: left;
            }
        }
