        :root {
            --deep-navy: #080F1A;
            --navy: #0F2B46;
            --brand: #0E6FB8;
            --brand-glow: #0D99FF;
            --amber: #D4920B;
            --amber-light: #F0B840;
            --green: #1B5E3B;
            --green-light: #2A8C5A;
            --purple: #5C3FBF;
            --purple-light: #8B6FEF;
            --text-primary: #E8ECF1;
            --text-secondary: #7A8BA0;
            --text-dim: #4A5568;
            --surface: #0D1520;
            --surface-raised: #131D2E;
            --border: rgba(14, 111, 184, 0.15);
            --border-strong: rgba(14, 111, 184, 0.35);
            --max-width: 1120px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { -webkit-user-select: none; -moz-user-select: none; user-select: none; }
        input, textarea, select, [contenteditable="true"] { -webkit-user-select: text; -moz-user-select: text; user-select: text; }

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

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--deep-navy);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            line-height: 1.5;
        }

        /* ---------- Animated backgrounds ---------- */
        .grid-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            opacity: 0.035;
            background-image:
                linear-gradient(rgba(14, 111, 184, 0.5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(14, 111, 184, 0.5) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: gridPulse 8s ease-in-out infinite;
        }

        @keyframes gridPulse { 0%, 100% { opacity: 0.025; } 50% { opacity: 0.05; } }

        .geo-nodes { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

        .node {
            position: absolute;
            width: 4px; height: 4px;
            border-radius: 50%;
            background: var(--brand);
            opacity: 0;
            animation: nodeFloat 12s ease-in-out infinite;
        }

        .node::after {
            content: '';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 20px; height: 20px;
            border-radius: 50%;
            border: 1px solid var(--brand);
            opacity: 0.2;
            animation: nodePing 4s ease-out infinite;
        }

        .node:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .node:nth-child(2) { top: 25%; left: 85%; animation-delay: 2s; }
        .node:nth-child(3) { top: 55%; left: 20%; animation-delay: 4s; }
        .node:nth-child(4) { top: 70%; left: 75%; animation-delay: 1s; }
        .node:nth-child(5) { top: 40%; left: 55%; animation-delay: 3s; }
        .node:nth-child(6) { top: 85%; left: 40%; animation-delay: 5s; }
        .node:nth-child(7) { top: 10%; left: 60%; animation-delay: 6s; }
        .node:nth-child(8) { top: 65%; left: 45%; animation-delay: 2.5s; }

        @keyframes nodeFloat {
            0%, 100% { opacity: 0; transform: translateY(0); }
            20% { opacity: 0.6; }
            80% { opacity: 0.6; }
            50% { transform: translateY(-15px); }
        }

        @keyframes nodePing {
            0% { width: 4px; height: 4px; opacity: 0.4; }
            100% { width: 40px; height: 40px; opacity: 0; }
        }

        .orb { position: fixed; border-radius: 50%; filter: blur(120px); z-index: 0; pointer-events: none; }

        .orb-1 {
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(14, 111, 184, 0.12), transparent 70%);
            top: -200px; right: -200px;
            animation: orbDrift1 20s ease-in-out infinite;
        }

        .orb-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(27, 94, 59, 0.08), transparent 70%);
            bottom: -150px; left: -150px;
            animation: orbDrift2 25s ease-in-out infinite;
        }

        .orb-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(212, 146, 11, 0.06), transparent 70%);
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation: orbDrift3 15s ease-in-out infinite;
        }

        @keyframes orbDrift1 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(-40px,30px);} }
        @keyframes orbDrift2 { 0%,100% { transform: translate(0,0);} 50% { transform: translate(30px,-20px);} }
        @keyframes orbDrift3 { 0%,100% { transform: translate(-50%,-50%) scale(1);} 50% { transform: translate(-50%,-50%) scale(1.2);} }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.015) 2px, rgba(0,0,0,0.015) 4px);
            pointer-events: none;
            z-index: 998;
        }

        /* ---------- Layout helpers ---------- */
        .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

        .section { position: relative; z-index: 1; padding: 3rem 0; scroll-margin-top: 80px; }
        .anchor-alias { display: block; height: 0; scroll-margin-top: 80px; }

        .section-head { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }

        .section-label {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: var(--brand-glow);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 3.4vw, 2.3rem);
            font-weight: 600;
            line-height: 1.25;
            letter-spacing: -0.02em;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .section-intro { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.65; }

        /* ---------- Navbar ---------- */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            background: rgba(8, 15, 26, 0.72);
            border-bottom: 1px solid var(--border);
        }

        .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 1rem; }

        .nav-brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }

        .nav-logo { height: 26px; width: auto; display: block; }

        .nav-name { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text-primary); }

        .nav-links { display: flex; align-items: center; gap: 2rem; }

        /* só os links de texto recebem a cor cinza — o botão CTA é excluído */
        .nav-links a:not(.btn) {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        .nav-links a:not(.btn):hover { color: var(--text-primary); }

        .nav-right { display: flex; align-items: center; gap: 1rem; }

        /* ---------- Language switch ---------- */
        .lang-switch {
            display: inline-flex;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
        .lang-btn {
            background: transparent;
            border: none;
            text-decoration: none;
            color: var(--text-secondary);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            padding: 0.45rem 0.6rem;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
        }
        .lang-btn + .lang-btn { border-left: 1px solid var(--border); }
        .lang-btn:hover { color: var(--text-primary); }
        .lang-btn.active { background: rgba(13, 153, 255, 0.16); color: var(--brand-glow); }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 0.92rem;
            line-height: 1;
            padding: 0.85rem 1.5rem;
            border-radius: 10px;
            border: 1px solid transparent;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--brand-glow), var(--brand));
            color: #FFFFFF;
            box-shadow: 0 8px 30px rgba(14, 111, 184, 0.25);
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 38px rgba(13, 153, 255, 0.4);
        }

        .btn-secondary {
            background: rgba(19, 29, 46, 0.6);
            border-color: var(--border-strong);
            color: var(--text-primary);
        }
        .btn-secondary:hover { border-color: var(--brand-glow); transform: translateY(-2px); }

        .btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; border-radius: 8px; }

        /* ---------- Hero ---------- */
        .hero { position: relative; z-index: 1; text-align: center; padding: 3rem 0 2.5rem; scroll-margin-top: 80px; }

        .hero-logo {
            display: inline-block;
            height: 80px; width: auto;
            margin-bottom: 1.75rem;
            filter: drop-shadow(0 0 32px rgba(13, 153, 255, 0.35));
            animation: fadeInUp 1s ease-out;
        }

        .hero-tagline {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: var(--brand-glow);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.15s both;
        }

        .hero-headline {
            font-size: clamp(2rem, 5.2vw, 3.4rem);
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -0.03em;
            max-width: 880px;
            margin: 0 auto 1.5rem;
            color: var(--text-primary);
            text-wrap: balance;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-headline em {
            font-style: normal;
            background: linear-gradient(135deg, var(--brand-glow), var(--green-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-sub {
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            color: var(--text-secondary);
            line-height: 1.65;
            max-width: 660px;
            margin: 0 auto 2.5rem;
            text-wrap: pretty;
            animation: fadeInUp 1s ease-out 0.45s both;
        }

        .hero-ctas {
            display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-trust {
            display: flex; gap: 1.5rem 2.25rem; justify-content: center; flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.75s both;
        }

        .trust-item {
            display: flex; align-items: center; gap: 0.5rem;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            color: var(--text-dim);
            letter-spacing: 0.03em;
        }

        .trust-item .dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: var(--brand-glow);
            box-shadow: 0 0 8px rgba(13, 153, 255, 0.6);
        }

        /* indicador de rolagem (visível no hero + jornada, some na 3ª seção) */
        .scroll-cue {
            position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%);
            z-index: 40; color: var(--text-secondary); pointer-events: none;
            filter: drop-shadow(0 0 10px rgba(13, 153, 255, 0.4));
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .scroll-cue-text {
            display: block; animation: scrollCue 1.8s ease-in-out infinite;
            font-family: 'JetBrains Mono', monospace; font-size: 10px;
            letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap;
        }
        @keyframes scrollCue {
            0%, 100% { transform: translateY(-3px); opacity: 0.4; }
            50% { transform: translateY(5px); opacity: 1; }
        }
        .scroll-cue.is-gone { opacity: 0; visibility: hidden; }
        @media (max-width: 720px) { .scroll-cue { bottom: 40px; } .scroll-cue-text { font-size: 9px; } }
        @media (prefers-reduced-motion: reduce) { .scroll-cue-text { animation: none; opacity: 0.7; } }

        /* ---------- Cards / grids ---------- */
        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

        .card {
            background: var(--surface-raised);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 2rem 1.75rem;
            text-align: center;
            transition: border-color 0.35s ease, transform 0.35s ease;
        }
        .card:hover { border-color: var(--border-strong); transform: translateY(-4px); }

        .card-icon {
            width: 44px; height: 44px;
            border-radius: 11px;
            display: flex; align-items: center; justify-content: center;
            background: rgba(14, 111, 184, 0.1);
            border: 1px solid var(--border);
            margin: 0 auto 1.25rem;
            color: var(--brand-glow);
        }
        .card-icon svg { width: 22px; height: 22px; }

        .card h3 {
            font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em;
            margin-bottom: 0.6rem; color: var(--text-primary);
            text-wrap: balance;
        }
        .card p { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.6; text-wrap: pretty; }

        .pillar:nth-child(1) .card-icon { color: var(--brand-glow); }
        .pillar:nth-child(2) .card-icon { color: var(--amber-light); background: rgba(212,146,11,0.08); }
        .pillar:nth-child(3) .card-icon { color: var(--green-light); background: rgba(27,94,59,0.12); }

        /* ---------- Modules ---------- */
        .module-flagship {
            background: linear-gradient(135deg, rgba(14,111,184,0.12), rgba(19,29,46,0.6));
            border: 1px solid var(--border-strong);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 1.25rem;
            display: flex; align-items: center; justify-content: space-between;
            gap: 2rem; flex-wrap: wrap;
        }
        .module-flagship .mf-text { flex: 1; min-width: 280px; }

        .module-code {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.78rem;
            color: var(--brand-glow);
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .module-flagship h3 {
            font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em;
            margin-bottom: 0.65rem; color: var(--text-primary);
        }
        .module-flagship p { font-size: 1rem; color: var(--text-secondary); line-height: 1.6; max-width: 560px; }

        .modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

        .module-mini {
            background: var(--surface-raised);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.4rem 1.3rem;
            transition: border-color 0.35s ease, transform 0.35s ease;
        }
        .module-mini:hover { border-color: var(--border-strong); transform: translateY(-3px); }
        .module-mini .module-code { margin-bottom: 0.65rem; font-size: 0.72rem; }
        .module-mini h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-primary); }
        .module-mini p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.9rem; }

        .badge {
            display: inline-flex; align-items: center; gap: 0.4rem;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
            padding: 0.3rem 0.65rem; border-radius: 999px;
            border: 1px solid var(--border);
        }
        .badge .dot { width: 5px; height: 5px; border-radius: 50%; }
        .badge-available { color: var(--green-light); border-color: rgba(42,140,90,0.4); background: rgba(27,94,59,0.12); }
        .badge-available .dot { background: var(--green-light); box-shadow: 0 0 6px rgba(42,140,90,0.7); animation: statusPulse 2s ease-in-out infinite; }
        .badge-soon { color: var(--amber-light); border-color: rgba(212,146,11,0.35); background: rgba(212,146,11,0.08); }
        .badge-soon .dot { background: var(--amber-light); }
        .badge-roadmap { color: var(--text-dim); border-color: var(--border); }
        .badge-roadmap .dot { background: var(--text-dim); }

        @keyframes statusPulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(42,140,90,0.4); }
            50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(42,140,90,0); }
        }

        /* ---------- Sectors ---------- */
        .sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
        .sector-group {
            grid-column: 1 / -1;
            text-align: center;
            font-family: 'JetBrains Mono', ui-monospace, monospace;
            font-size: 0.72rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--brand-glow);
            margin: 1.9rem 0 0.4rem;
        }
        .sector-group:first-child { margin-top: 0; }

        .sector {
            background: var(--surface-raised);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem 1.25rem;
            text-align: center;
            transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
        }
        .sector:hover {
            border-color: var(--border-strong);
            transform: translateY(-3px) scale(1.04);
            box-shadow: 0 0 24px rgba(13, 153, 255, 0.28), 0 0 6px rgba(13, 153, 255, 0.18);
        }
        .sector-icon { color: var(--brand-glow); margin-bottom: 0.9rem; display: inline-flex; }
        .sector-icon svg { width: 28px; height: 28px; }
        .sector h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-primary); }
        .sector p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

        /* ---------- CTA / form ---------- */
        .cta-section { position: relative; z-index: 1; }

        .cta-card {
            background: linear-gradient(135deg, rgba(14,111,184,0.14), rgba(19,29,46,0.7));
            border: 1px solid var(--border-strong);
            border-radius: 20px;
            padding: 3.5rem 3rem;
            max-width: 920px;
            margin: 0 auto;
        }

        .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

        .cta-copy h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600; letter-spacing: -0.02em; line-height: 1.2;
            margin-bottom: 1rem; color: var(--text-primary);
        }
        .cta-copy p { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }

        .cta-list { list-style: none; }
        .cta-list li {
            display: flex; align-items: flex-start; gap: 0.6rem;
            font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 0.75rem;
        }
        .cta-list li svg { width: 18px; height: 18px; color: var(--brand-glow); flex-shrink: 0; margin-top: 1px; }

        .form-field { margin-bottom: 1rem; }
        .form-field label {
            display: block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--text-dim); margin-bottom: 0.45rem;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 9px;
            padding: 0.75rem 0.9rem;
            color: var(--text-primary);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
        .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
            outline: none; border-color: var(--brand-glow); box-shadow: 0 0 0 3px rgba(13,153,255,0.12);
        }
        .form-field textarea { resize: vertical; min-height: 80px; }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

        .interest-options { display: flex; gap: 0.6rem; }
        .interest-options label {
            flex: 1;
            display: flex; align-items: center; justify-content: center; gap: 0.4rem;
            padding: 0.65rem;
            border: 1px solid var(--border);
            border-radius: 9px;
            cursor: pointer;
            font-size: 0.85rem; color: var(--text-secondary);
            text-transform: none; letter-spacing: 0;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.25s ease;
        }
        .interest-options input { display: none; }
        .interest-options input:checked + span { color: var(--brand-glow); }
        .interest-options label:has(input:checked) { border-color: var(--brand-glow); background: rgba(13,153,255,0.08); }

        .form-field label.form-consent {
            display: flex; align-items: flex-start; gap: 0.55rem;
            cursor: pointer;
            font-size: 0.8rem; color: var(--text-secondary); line-height: 1.45;
            text-transform: none; letter-spacing: 0;
            font-family: 'DM Sans', sans-serif;
            margin-bottom: 0;
        }
        .form-field .form-consent input {
            width: auto; margin-top: 2px; accent-color: var(--brand-glow); flex-shrink: 0;
        }

        .form-submit { width: 100%; margin-top: 0.5rem; }
        .form-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 0.9rem; }

        /* ---------- Footer ---------- */
        .footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 3rem 0 2.5rem; }

        .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }

        .footer-brand { display: flex; align-items: center; gap: 0.6rem; }
        .footer-logo { height: 23px; width: auto; display: block; }

        .social { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .social a {
            color: var(--text-dim); text-decoration: none;
            font-family: 'JetBrains Mono', monospace; font-size: 0.78rem;
            transition: color 0.3s ease;
            display: flex; align-items: center; gap: 0.4rem;
        }
        .social a:hover { color: var(--brand-glow); }
        .social a svg { width: 14px; height: 14px; opacity: 0.6; transition: opacity 0.3s ease; }
        .social a:hover svg { opacity: 1; }

        .footer-legal {
            margin-top: 2rem; text-align: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.04em;
        }
        /* em telas pequenas o rodapé inteiro centraliza (marca + redes + legal) */
        @media (max-width: 720px) {
            .footer-inner { flex-direction: column; justify-content: center; text-align: center; }
            .footer-brand { justify-content: center; }
            .social { justify-content: center; }
        }

        /* ---------- Scroll reveal ---------- */
        .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .reveal.in-view { opacity: 1; transform: translateY(0); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* ---------- Faixa de confiança ---------- */
        .trust-band {
            display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
            background: linear-gradient(135deg, rgba(14,111,184,0.12), rgba(19,29,46,0.6));
            border: 1px solid var(--border-strong);
            border-radius: 16px;
            padding: 2.5rem;
        }
        .trust-band-title { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; margin: 0.6rem 0 0.7rem; color: var(--text-primary); }
        .trust-band-copy p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.4rem; max-width: 460px; }
        .trust-points { list-style: none; display: grid; gap: 0.9rem; margin: 0; padding: 0; }
        .trust-points li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text-primary); font-size: 0.95rem; line-height: 1.45; }
        .trust-points svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green-light); margin-top: 1px; }

        /* ---------- FAQ ---------- */
        .faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.75rem; }
        .faq-item {
            background: var(--surface-raised);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 0 1.3rem;
            transition: border-color 0.35s ease;
        }
        .faq-item[open] { border-color: var(--border-strong); }
        .faq-item summary {
            cursor: pointer; list-style: none;
            padding: 1.15rem 0;
            font-size: 1rem; font-weight: 600; color: var(--text-primary);
            display: flex; align-items: center; justify-content: space-between; gap: 1rem;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: "+"; font-family: 'JetBrains Mono', monospace; font-weight: 400;
            color: var(--brand-glow); font-size: 1.3rem; line-height: 1; flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .faq-item[open] summary::after { transform: rotate(45deg); }
        .faq-item p { color: var(--text-secondary); line-height: 1.6; font-size: 0.94rem; padding: 0 0 1.2rem; margin: 0; max-width: 640px; }

        /* ---------- Responsive ---------- */
        @media (max-width: 900px) {
            .grid-3 { grid-template-columns: 1fr; }
            .modules-grid { grid-template-columns: repeat(2, 1fr); }
            .sectors-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-band { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem; }
            .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
            .nav-links { display: none; }
        }

        @media (max-width: 560px) {
            .section { padding: 2rem 0; }
            .hero { padding: 2rem 0 1.5rem; }
            .modules-grid { grid-template-columns: 1fr; }
            .sectors-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .interest-options { flex-direction: column; }
            .cta-card { padding: 2rem 1.5rem; }
            .module-flagship { padding: 1.75rem; }
            .hero-ctas { flex-direction: column; align-items: stretch; }
            .nav-right .btn { display: none; }
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; }
            .reveal { opacity: 1; transform: none; }
        }

        /* ---------- fundação motion (F1) ---------- */
        /* com GSAP ativo, o reveal é controlado por scrub (sem transition CSS) */
        html.js-motion .reveal { transition: none; }
        html.js-motion .grid-3 > *, html.js-motion .modules-grid > *, html.js-motion .sectors-grid > * { will-change: transform, opacity; }

        .nav { transition: background 0.35s ease, box-shadow 0.35s ease; }
        .nav.nav-scrolled { background: rgba(8, 15, 26, 0.92); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
        .nav.nav-scrolled .nav-inner { height: 54px; }
        .nav-inner { transition: height 0.35s ease; }

        /* ---------- hero v2 (F2): texto + cena do gêmeo digital ---------- */
        .hero-v2 { text-align: left; padding: 2.2rem 0 2rem; overflow: hidden; }
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
            gap: 2rem;
            align-items: center;
            min-height: min(72vh, 700px);
        }
        .hero-v2 .hero-tagline { margin-bottom: 1.1rem; }
        .hero-v2 .hero-headline { margin: 0 0 1.35rem; }
        .hero-v2 .hero-sub { margin: 0 0 1.8rem; max-width: 34rem; }
        .hero-v2 .hero-ctas { justify-content: flex-start; margin-bottom: 1.9rem; }
        .hero-v2 .hero-trust { justify-content: flex-start; }
        .hero-scene { position: relative; min-width: 0; }
        .hero-scene svg { width: 108%; max-width: none; height: auto; display: block; margin-left: -4%; }
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 0.5rem; min-height: 0; }
            .hero-v2 { text-align: center; }
            .hero-v2 .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-v2 .hero-ctas, .hero-v2 .hero-trust { justify-content: center; }
            .hero-scene svg { width: 118%; margin-left: -9%; }
        }


        /* ---------- jornada dos setores (F3) ---------- */
        .journey-sec { position: relative; z-index: 1; scroll-margin-top: 64px; }
        .journey-head-wrap { padding: 3.2rem 24px 0.4rem; }
        .journey-head-wrap .section-head { margin-bottom: 0.6rem; }
        /* 440vh ≈ 68vh de rolagem por parada (5 paradas + saída): o suficiente pro
           scrub responder e o snap completar — 640vh deixava a 1ª cena "parada" por
           mais de 1 tela e o visitante concluía que a página tinha acabado */
        .journey-track { height: 440vh; position: relative; }
        .journey-stage {
            position: sticky; top: 0; height: 100vh; overflow: hidden;
            background: radial-gradient(ellipse 90% 70% at 60% 46%, rgba(13, 153, 255, 0.05), transparent 65%);
        }
        .j-scene { position: absolute; inset: -3% -4%; opacity: 0; visibility: hidden; }
        .j-scene:first-of-type { opacity: 1; visibility: visible; }
        .j-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }
        .j-vignette {
            position: absolute; inset: 0; pointer-events: none;
            background: radial-gradient(ellipse 120% 95% at 50% 50%, transparent 60%, rgba(4, 8, 15, 0.9));
        }
        /* card narrativo COMPACTO no canto superior direito — não cobre o diorama */
        .j-panel { position: absolute; right: clamp(16px, 3.5vw, 56px); top: clamp(80px, 11vh, 108px); width: min(290px, 84vw); z-index: 5; }
        .j-step {
            position: absolute; top: 0; width: 100%;
            visibility: hidden; opacity: 0;
            border: 1px solid var(--border-strong); border-radius: 12px; padding: 18px 18px 16px;
            background: rgba(10, 19, 33, 0.55);
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
        }
        .j-chip {
            font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
            color: var(--brand-glow); border: 1px solid var(--border-strong);
            padding: 3px 8px; border-radius: 999px; display: inline-block; margin-bottom: 10px;
        }
        .j-step h3 { font-size: 19px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 7px; color: var(--text-primary); }
        .j-step p { color: var(--text-secondary); font-size: 12.5px; line-height: 1.5; margin: 0; }
        .j-hud {
            position: absolute; z-index: 4; visibility: hidden; opacity: 0;
            font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.1em; white-space: nowrap;
            color: var(--text-primary); background: rgba(10, 20, 35, 0.6);
            border: 1px solid var(--border-strong); border-radius: 8px; padding: 7px 11px;
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            display: flex; align-items: center; gap: 8px;
        }
        /* HUDs sobre os ativos de cada cena (desktop) */
        #j-hud-0  { left: 47%; top: 71%; }   /* TERMINAL · navios (berço, inferior) */
        #j-hud-0b { left: 29%; top: 43%; }   /* PÁTIO · contêineres coloridos */
        #j-hud-0c { left: 43%; top: 50%; }   /* PÓRTICO · guindaste */
        #j-hud-1  { left: 49%; top: 42%; }   /* MALHA · trens */
        #j-hud-1b { left: 31%; top: 62%; }   /* RODOVIA · via inferior */
        #j-hud-1c { left: 60%; top: 62%; }   /* ECLUSA · hidrovia (baixo-direita) */
        #j-hud-2  { left: 41%; top: 31%; }   /* REDE · subestação */
        #j-hud-2b { left: 32%; top: 44%; }   /* ENERGIA · linha de transmissão */
        #j-hud-2c { left: 52%; top: 61%; }   /* ÁGUA · casas / rede de água */
        .j-hud .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-glow); box-shadow: 0 0 8px var(--brand-glow); animation: statusPulse 1.6s ease-in-out infinite; }
        .j-progress {
            position: absolute; left: clamp(18px, 4.5vw, 72px); bottom: 34px; z-index: 6;
            display: flex; align-items: center; gap: 10px;
            font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; color: var(--text-dim);
            white-space: nowrap; /* "01 / 04" nunca quebra linha */
        }
        /* 4 segmentos (1 por cena, estilo "stories") — clicáveis para pular de cena */
        .j-progress .j-dot { display: block; width: 32px; padding: 6px 0; margin: 0; background: none; border: none; cursor: pointer; }
        .j-progress .j-dot i { display: block; height: 2px; border-radius: 2px; background: rgba(122, 139, 160, 0.2); overflow: hidden; }
        .j-progress .j-dot:hover i { background: rgba(122, 139, 160, 0.45); }
        .j-progress .j-dot i span { display: block; height: 100%; width: 100%; background: var(--brand-glow); transform: scaleX(0); transform-origin: left; }
        @media (max-width: 720px) {
            .j-panel { left: 50%; right: auto; top: auto; bottom: 72px; transform: translateX(-50%); }
            .j-step { top: auto; bottom: 0; transform: none; padding: 18px 18px 16px; }
            .j-step h3 { font-size: 20px; }
            /* diorama INTEIRO na tela (corta só a borda do chão) e faixa de baixo p/ o card */
            .j-scene { inset: -2% -8% 24% -8%; }
            .j-progress { left: 50%; transform: translateX(-50%); bottom: 16px; }
            .j-progress .j-dot { width: 26px; }
            /* HUDs no mobile: menores, quebram (nunca vazam) e ficam em 3 zonas distintas */
            .j-hud { white-space: normal; max-width: 42vw; font-size: 8.5px; line-height: 1.35; align-items: flex-start; padding: 5px 8px; }
            .j-hud .dot { margin-top: 2px; width: 5px; height: 5px; }
            /* posições por cena, mirando os ativos e dentro da faixa do diorama (~25–55%) */
            #j-hud-0  { left: auto; right: 5%; top: 48%; }  /* porto · TERMINAL (navios) */
            #j-hud-0b { left: 5%; right: auto; top: 30%; }  /* porto · PÁTIO (contêineres) */
            #j-hud-0c { left: 15%; right: auto; top: 43%; } /* porto · PÓRTICO (guindaste) */
            #j-hud-1  { left: 5%; right: auto; top: 29%; }  /* malha · MALHA (trens) */
            #j-hud-1b { left: auto; right: 5%; top: 45%; }  /* malha · RODOVIA (via) */
            #j-hud-1c { left: 20%; right: auto; top: 50%; } /* malha · ECLUSA (hidrovia, centro-baixo) */
            #j-hud-2  { left: 5%; right: auto; top: 28%; }  /* utilities · REDE (subestação) */
            #j-hud-2b { left: auto; right: 5%; top: 46%; }  /* utilities · ENERGIA (linha) */
            #j-hud-2c { left: 22%; right: auto; top: 49%; } /* utilities · ÁGUA (casas, centro-baixo) */
        }
        @media (prefers-reduced-motion: reduce) {
            .journey-track { height: auto; }
            .journey-stage { position: relative; height: auto; padding: 40px 0; }
            .j-scene { position: relative; inset: auto; opacity: 1; visibility: visible; height: 52vw; max-height: 480px; }
            .j-scene svg { position: absolute; }
            .j-panel { position: static; transform: none; margin: 0 auto; display: grid; gap: 16px; width: min(720px, 92vw); }
            .j-step { position: static; transform: none; visibility: visible; opacity: 1; }
            .j-hud, .j-progress, .j-vignette { display: none; }
        }


        /* ---------- leitura do satélite (F3.5) ---------- */
        .scan-sec { position: relative; z-index: 1; }
        .scan-track { height: 240vh; position: relative; }
        .scan-stage {
            position: sticky; top: 0; height: 100vh; overflow: hidden;
            background: radial-gradient(ellipse 90% 70% at 50% 48%, rgba(13, 153, 255, 0.05), transparent 65%);
        }
        .scan-scene { position: absolute; inset: -3% -4%; }
        .scan-scene svg { position: absolute; inset: 0; width: 100%; height: 100%; }
        .scan-data { clip-path: inset(0 100% 0 0); }
        .scan-beamwrap {
            position: absolute; top: 96px; bottom: 0; left: -10%; width: 130px;
            transform: translateX(-50%); pointer-events: none;
        }
        .scan-beam {
            position: absolute; inset: 0;
            clip-path: polygon(50% 0, 2% 100%, 98% 100%);
            background: linear-gradient(to bottom, rgba(13, 153, 255, 0.30), rgba(13, 153, 255, 0.06) 62%, transparent);
        }
        .scan-line {
            position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(13, 153, 255, 0.9) 25%, rgba(13, 153, 255, 0.9) 78%, transparent);
            box-shadow: 0 0 18px rgba(13, 153, 255, 0.55);
        }
        .scan-sat {
            position: absolute; top: 34px; left: -10%;
            transform: translateX(-50%); pointer-events: none;
            filter: drop-shadow(0 0 14px rgba(13, 153, 255, 0.35));
        }
        .scan-copy {
            position: absolute; right: clamp(18px, 4.5vw, 72px); top: clamp(70px, 12vh, 130px);
            width: min(360px, 84vw); z-index: 5;
            border: 1px solid var(--border-strong); border-radius: 14px; padding: 24px 26px 22px;
            background: rgba(10, 19, 33, 0.55);
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
            opacity: 0; visibility: hidden;
        }
        .scan-copy h3 { font-size: 24px; line-height: 1.15; letter-spacing: -0.015em; margin: 0 0 10px; color: var(--text-primary); }
        .scan-copy p { color: var(--text-secondary); font-size: 15px; line-height: 1.55; margin: 0; }
        @media (max-width: 720px) {
            .scan-copy { right: 50%; transform: translateX(50%); top: auto; bottom: 66px; padding: 18px 18px 16px; }
            .scan-copy h3 { font-size: 19px; }
            .scan-scene { inset: -2% -30%; }
        }
        @media (prefers-reduced-motion: reduce) {
            .scan-track { height: auto; }
            .scan-stage { position: relative; height: auto; padding: 40px 0; min-height: 0; }
            .scan-scene { position: relative; inset: auto; height: 52vw; max-height: 480px; }
            .scan-base { display: none; }
            .scan-data { clip-path: none; }
            .scan-beamwrap, .scan-sat { display: none; }
            .scan-copy { position: relative; right: auto; top: auto; margin: 20px auto 0; opacity: 1; visibility: visible; }
        }


        /* ---------- F4: vinhetas dos pilares + Pier demo + CTA glow ---------- */
        .pillar-viz { display: block; margin: -4px 0 14px; }
        .pillar-viz svg { width: 100%; max-width: 230px; height: auto; display: block; margin: 0 auto; }
        .pier-demo { max-width: 800px; margin: 0 auto 3rem; }
        .pier-sectors-wrap { position: relative; max-width: 800px; margin: 0 auto 1.3rem; padding: 0 40px; }
        .pier-sectors {
            display: flex; flex-wrap: nowrap; gap: 6px; justify-content: flex-start;
            overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
            scroll-padding: 0 10px; padding: 0 4px;
            -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
                    mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
        }
        .pier-sectors::-webkit-scrollbar { display: none; }
        /* nas pontas, remove o fade do lado que não tem mais conteúdo (1ª/última pill nítidas) */
        .pier-sectors.at-start { -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 22px), transparent 100%); mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 22px), transparent 100%); }
        .pier-sectors.at-end { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 100%); mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 100%); }
        .pier-sectors.at-start.at-end { -webkit-mask-image: none; mask-image: none; }
        .pier-arrow {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
            width: 24px; height: 24px; border-radius: 50%; padding: 0;
            display: flex; align-items: center; justify-content: center;
            background: var(--surface-raised); border: 1px solid var(--border-strong);
            color: var(--text-secondary); cursor: pointer;
            font-family: inherit; font-size: 15px; line-height: 1;
            transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }
        .pier-arrow-l { left: 2px; }
        .pier-arrow-r { right: 2px; }
        .pier-arrow:hover { color: var(--text-primary); border-color: var(--brand-glow); }
        .pier-arrow[hidden] { display: none; }
        .pier-tab {
            font: inherit; font-size: 0.82rem; font-weight: 500; line-height: 1.3;
            color: var(--text-dim);
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 0.45rem 0.95rem;
            cursor: pointer;
            white-space: nowrap; flex: 0 0 auto;
            transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }
        .pier-tab:hover { color: var(--text-secondary); border-color: var(--border-strong); }
        .pier-tab.is-active { color: #fff; background: var(--brand-glow); border-color: transparent; font-weight: 600; }
        /* altura reservada p/ pergunta + resposta: evita o "pulo" ao carregar a resposta */
        .pier-thread { display: flex; flex-direction: column; gap: 12px; min-height: 208px; }
        .pier-msg { border-radius: 14px; padding: 14px 18px; }
        .pier-msg.is-in, .pier-typing.is-in { animation: pierIn 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
        .pier-msg.is-out, .pier-typing.is-out { animation: pierOut 0.36s cubic-bezier(0.4, 0, 0.6, 1) forwards; }
        .pier-user { align-self: flex-end; background: rgba(14, 111, 184, 0.22); border: 1px solid var(--border-strong); border-bottom-right-radius: 4px; max-width: min(80%, 440px); }
        .pier-bot { align-self: flex-start; background: var(--surface-raised); border: 1px solid var(--border); border-bottom-left-radius: 4px; max-width: min(88%, 580px); }
        .pier-msg p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--text-primary); }
        .pier-bot p { color: var(--text-secondary); }
        .pier-badge { display: inline-block; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-glow); margin-bottom: 7px; }
        .pier-typing { align-self: flex-start; display: flex; gap: 5px; padding: 12px 16px; background: var(--surface-raised); border: 1px solid var(--border); border-radius: 14px; border-bottom-left-radius: 4px; }
        .pier-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); animation: pierTyping 1.1s ease-in-out infinite; }
        @keyframes pierIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
        @keyframes pierOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(-10px) scale(0.98); } }

        /* Perguntas sugeridas: grid 2 x 2 (2 por linha) */
        .pier-suggestions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 800px; margin: 1.4rem auto 0; }
        .pier-chip {
            font: inherit; font-size: 0.85rem; line-height: 1.35;
            color: var(--text-secondary);
            background: var(--surface-raised);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 0.6rem 1rem;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center; text-align: center;
            transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.25s ease;
        }
        .pier-chip:hover { border-color: var(--border-strong); color: var(--text-primary); transform: translateY(-1px); }
        .pier-chip.is-active { color: var(--brand-glow); border-color: rgba(13, 153, 255, 0.5); background: rgba(13, 153, 255, 0.08); }
        /* Em telas menores, a faixa de setores quebra em vez de rolar */
        @media (max-width: 640px) {
            .pier-sectors {
                flex-wrap: wrap; justify-content: center; overflow-x: visible;
                -webkit-mask-image: none; mask-image: none;
            }
            .pier-sectors-wrap { padding: 0; }
            .pier-arrow { display: none; }
            .pier-thread { min-height: 268px; }
            .pier-suggestions { grid-template-columns: 1fr; }
        }
        .pier-typing span:nth-child(2) { animation-delay: 0.18s; }
        .pier-typing span:nth-child(3) { animation-delay: 0.36s; }
        @keyframes pierTyping { 40% { transform: translateY(-4px); background: var(--text-secondary); } }
        .cta-card { animation: ctaGlow 4.5s ease-in-out infinite; }
        @keyframes ctaGlow {
            0%, 100% { box-shadow: 0 0 0 rgba(13, 153, 255, 0); }
            50% { box-shadow: 0 0 44px rgba(13, 153, 255, 0.12); }
        }
        @media (prefers-reduced-motion: reduce) {
            .pier-msg.is-in, .pier-typing.is-in, .pier-msg.is-out, .pier-typing.is-out { animation: none; }
            .pier-typing { display: none; }
        }


        /* ---------- F5: ajustes do gate (itens 1-9) ---------- */
        /* hero: eyebrow ancorado à esquerda (junto da headline), trust central abaixo */
        .hero-v2 .hero-tagline { margin-bottom: 1.15rem; }
        .hero-v2 .hero-trust { justify-content: center; margin-top: 1.6rem; }
        .hero-v2 .hero-ctas { margin-bottom: 0.4rem; }
        .hero-scene { display: flex; flex-direction: column; align-items: center; }
        .hero-scene .hero-logo { height: 64px; margin-bottom: 0; position: relative; z-index: 2; }
        .hero-scene svg { margin-top: -8px; }
        /* varredura DENTRO do palco da jornada (4º movimento) */
        .j-scanlayer { clip-path: inset(0 100% 0 0); }
        .j-beamwrap {
            position: absolute; top: 98px; bottom: 0; left: -12%; width: 130px;
            transform: translateX(-50%); pointer-events: none; z-index: 3;
            opacity: 0; visibility: hidden;
        }
        .j-beam {
            position: absolute; inset: 0;
            clip-path: polygon(50% 0, 2% 100%, 98% 100%);
            background: linear-gradient(to bottom, rgba(13, 153, 255, 0.30), rgba(13, 153, 255, 0.06) 62%, transparent);
        }
        .j-scanline {
            position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(13, 153, 255, 0.9) 25%, rgba(13, 153, 255, 0.9) 78%, transparent);
            box-shadow: 0 0 18px rgba(13, 153, 255, 0.55);
        }
        .j-sat {
            position: absolute; top: 38px; left: -12%;
            transform: translateX(-50%); pointer-events: none; z-index: 3;
            filter: drop-shadow(0 0 14px rgba(13, 153, 255, 0.35));
            opacity: 0; visibility: hidden;
        }
        @media (prefers-reduced-motion: reduce) {
            .j-scanlayer { clip-path: none; }
            .j-beamwrap, .j-sat { display: none; }
        }


        /* ---------- F5 rodada 2 ---------- */
        /* item 1: diorama do hero centralizado na coluna */
        .hero-scene svg { width: 100%; max-width: 560px; margin: 0 auto; }
        /* item 4: logo M mais afastada do diorama */
        .hero-scene .hero-logo { margin-bottom: 26px; }
        /* item 6: efeito de tela (scanlines) na logo, como no site anterior */
        .hero-logo-wrap { position: relative; display: inline-block; z-index: 2; }
        .hero-logo-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(4, 8, 15, 0.22) 3px 4px);
            pointer-events: none;
        }


        /* ---------- F5 rodadas 3-4 ---------- */
        .hero-v2 { padding: 2.6rem 0 4.75rem; }
        /* coluna da cena estica; logo fica no topo (alinhada à headline) e o
           diorama centra VERTICALMENTE no espaço restante (margin auto) */
        .hero-grid { align-items: stretch; }
        .hero-scene { display: flex; flex-direction: column; align-items: center; }
        .hero-scene .hero-logo { height: 66px; margin-bottom: 12px; }
        .hero-scene svg { margin: auto 0; }
