        /* Icones SVG inline (substituem emojis estruturais) */
        .icon { display: inline-block; vertical-align: -0.18em; flex-shrink: 0; }

        /* ─── CURSOR-STYLE RESET & BASE ─── */
        *, *::before, *::after { box-sizing: border-box; }

        /* Global color tokens — Cursor palette */
        :root {
            --c-bg:       #f5f4ef;
            --c-bg-card:  #ededea;
            --c-bg-hover: #e8e7e2;
            --c-ink:      #0d0d0d;
            --c-ink-2:    #3a3a3a;
            --c-ink-3:    #6b6b6b;
            --c-ink-4:    #9a9a9a;
            --c-border:   rgba(0,0,0,0.10);
            --c-border-2: rgba(0,0,0,0.16);
            --c-blue:     #2563EB;
            --c-green:    #16a34a;
            --c-red:      #dc2626;
            --c-radius:   8px;
            --c-font:     "Söhne", "Helvetica Neue", Arial, sans-serif;
        }

        body {
            background: var(--c-bg);
            color: var(--c-ink);
            font-family: var(--c-font);
            font-size: 16px;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }

        /* ─── WHATSAPP FLOAT ─── */
        .wa-float {
            position: fixed; bottom: 24px; right: 24px; z-index: 9999;
            width: 50px; height: 50px; border-radius: 50%;
            background: #25D366; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 16px rgba(0,0,0,0.18);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 22px rgba(0,0,0,0.22); }
        .wa-float img { width: 26px; }

        /* ─── NAV — Cursor style ─── */
        .c-nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            height: 56px;
            background: rgba(245,244,239,0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--c-border);
        }
        .c-nav-inner {
            max-width: 1160px; margin: 0 auto; padding: 0 28px;
            height: 100%; display: flex; align-items: center; gap: 0;
        }
        .c-nav-brand {
            display: flex; align-items: center; gap: 9px;
            font-size: 14.5px; font-weight: 700; letter-spacing: -0.3px;
            color: var(--c-ink); text-decoration: none; margin-right: 32px;
            white-space: nowrap;
        }
        .c-nav-brand img { width: 24px; height: 24px; border-radius: 5px; }
        .c-nav-links {
            display: flex; align-items: center; list-style: none; gap: 0; flex: 1;
        }
        .c-nav-links a {
            font-size: 13.5px; color: var(--c-ink-3); text-decoration: none;
            padding: 7px 13px; border-radius: 6px;
            transition: color 0.12s, background 0.12s;
        }
        .c-nav-links a:hover { color: var(--c-ink); background: var(--c-bg-hover); }
        .c-nav-right { display: flex; align-items: center; gap: 8px; }
        .c-nav-link-plain {
            font-size: 13.5px; color: var(--c-ink-3); text-decoration: none;
            padding: 7px 13px; border-radius: 6px;
            transition: color 0.12s, background 0.12s; border: none; background: none; cursor: pointer;
        }
        .c-nav-link-plain:hover { color: var(--c-ink); background: var(--c-bg-hover); }
        .c-nav-btn {
            font-size: 13.5px; font-weight: 600; color: #fff;
            background: var(--c-ink); border: none; cursor: pointer;
            padding: 8px 18px; border-radius: 7px;
            transition: opacity 0.12s; white-space: nowrap;
        }
        .c-nav-btn:hover { opacity: 0.82; }
        @media (max-width: 860px) { .c-nav-links { display: none; } }
        @media (max-width: 580px) { .c-nav-link-plain { display: none; } }

        /* ─── HERO — Cursor layout ─── */
        .c-hero {
            padding-top: 100px;
            padding-bottom: 0;
            max-width: 1160px;
            margin: 0 auto;
            padding-left: 28px;
            padding-right: 28px;
        }

        /* Text block — left-aligned, huge */
        .c-hero-text {
            max-width: 680px;
            padding-top: 48px;
            padding-bottom: 20px;
        }
        .c-hero-eyebrow {
            font-size: 13px; color: var(--c-ink-3); font-weight: 500;
            margin-bottom: 20px; letter-spacing: 0.01em;
        }
        .c-hero h1 {
            font-size: clamp(2rem, 4.4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.10;
            letter-spacing: -1.2px;
            color: var(--c-ink);
            margin-bottom: 28px;
        }
        .c-hero-sub {
            font-size: 17px;
            color: var(--c-ink-2);
            line-height: 1.62;
            max-width: 560px;
            margin-bottom: 36px;
        }

        /* CTA row */
        .c-hero-ctas {
            display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .c-btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: var(--c-ink); color: #fff;
            font-size: 15px; font-weight: 600;
            padding: 13px 28px; border-radius: 8px;
            border: none; cursor: pointer; text-decoration: none;
            transition: opacity 0.14s, transform 0.14s; white-space: nowrap;
        }
        .c-btn-primary:hover { opacity: 0.84; transform: translateY(-1px); }
        .c-btn-secondary {
            display: inline-flex; align-items: center; gap: 6px;
            background: transparent; color: var(--c-ink-2);
            font-size: 14px; font-weight: 500;
            padding: 13px 22px; border-radius: 8px;
            border: 1px solid var(--c-border-2);
            text-decoration: none; cursor: pointer;
            transition: all 0.14s; white-space: nowrap;
        }
        .c-btn-secondary:hover { background: var(--c-bg-hover); color: var(--c-ink); border-color: rgba(0,0,0,0.24); }

        /* Proof row */
        .c-hero-proof {
            display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
            font-size: 12.5px; color: var(--c-ink-4);
            margin-top: 4px;
        }
        .c-hero-proof-sep { color: var(--c-border-2); }
        .c-hero-proof-tag {
            display: inline-flex; align-items: center; gap: 4px;
            background: rgba(22,163,74,0.10); border: 1px solid rgba(22,163,74,0.22);
            color: var(--c-green); font-size: 11.5px; font-weight: 600;
            padding: 2px 9px; border-radius: 100px;
        }

        /* ─── METRICS STRIP ─── */
        .c-metrics {
            display: flex; gap: 12px;
            margin-top: 10px;
            padding: 0;
            border: none;
        }
        .c-metric {
            display: flex; flex-direction: column;
            padding: 3px 0;
        }
        .c-metric-label { font-size: 10px; color: var(--c-ink-4); line-height: 1.2; text-transform: uppercase; }
        .c-metric-value { font-size: 12px; font-weight: 700; color: var(--c-green); line-height: 1.2; }
        .c-metric-value.blue { color: var(--c-blue); }
        @media (max-width: 700px) {
            .c-metrics { flex-direction: column; margin: 0; }
            .c-metric { border-right: none; border-bottom: 1px solid var(--c-border); }
            .c-metric:last-child { border-bottom: none; }
        }

        /* ─── PRODUCT SCREENSHOT / VIDEO ─── */
        .c-hero-product {
            background: var(--c-bg-card);
            border: 1px solid var(--c-border-2);
            border-radius: 12px 12px 0 0;
            overflow: hidden;
            margin-top: 20px;
            box-shadow: 0 -4px 40px rgba(0,0,0,0.06);
            position: relative;
        }
        .c-product-bar {
            background: #e2e1dc; padding: 10px 16px;
            display: flex; align-items: center; gap: 7px;
            border-bottom: 1px solid var(--c-border);
        }
        .c-product-dot { width: 11px; height: 11px; border-radius: 50%; }
        .c-product-dot.r { background: #f87171; }
        .c-product-dot.y { background: #fbbf24; }
        .c-product-dot.g { background: #4ade80; }
        .c-product-title {
            flex: 1; text-align: center; font-size: 12px; color: var(--c-ink-4);
            margin-left: -60px; /* compensate dots */
        }
        .c-product-badge {
            position: absolute; top: 52px; right: 16px;
            background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.25);
            color: var(--c-green); font-size: 11.5px; font-weight: 700;
            padding: 4px 11px; border-radius: 100px;
        }
        .c-hero-product video, .c-hero-product img {
            width: 100%; display: block;
        }

        /* ─── TRUST BADGE PROOF ─── */
        .c-chatgpt-proof {
            background: rgba(22,163,74,0.04);
            border: 1px solid rgba(22,163,74,0.18);
            border-radius: var(--c-radius);
            padding: 20px 24px;
            display: flex; align-items: flex-start; gap: 14px;
            margin-top: 24px; margin-bottom: 48px;
        }
        .c-chatgpt-proof-icon {
            width: 36px; height: 36px; border-radius: 8px;
            background: #10A37F; display: flex; align-items: center; justify-content: center;
            font-size: 18px; flex-shrink: 0;
        }
        .c-chatgpt-proof-text { font-size: 14px; color: var(--c-ink-2); line-height: 1.6; }
        .c-chatgpt-proof-text strong { color: var(--c-ink); }
        .c-chatgpt-proof-meta { font-size: 11.5px; color: var(--c-ink-4); margin-top: 6px; }

        /* ─── SECTION OVERRIDES (rest of page) ─── */
        /* Keep existing styles but adapt palette to Cursor bg */
        .origins-section, .problem-section, .arch-section, .cap-section,
        .cases-section, .trust-bar, .faq-section, .final-cta-section,
        .pricing-section, .video-showcase-section {
            background: var(--c-bg) !important;
        }
        .problem-card, .arch-step, .cap-card, .case-card, .origins-card, .price-card, .faq-item, .video-card {
            background: #fff !important;
            border-color: var(--c-border) !important;
        }
        .price-card.featured { background: #0d0d0d !important; }

        /* Soberania section responsive */
        @media (max-width: 768px) {
            #soberania [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
            #soberania [style*="display:flex; align-items:center; gap:32px"] { flex-direction: column !important; }
        }
        .section-title { color: var(--c-ink) !important; }
        .section-desc, .arch-step p, .cap-card p, .problem-card p, .video-info p { color: var(--c-ink-2) !important; }
        .section-label { background: #ededea !important; border: 1px solid var(--c-border) !important; color: var(--c-ink-2) !important; font-size: 12px !important; }
        .faq-question { color: var(--c-ink) !important; }
        .faq-answer { color: var(--c-ink-2) !important; }
        .trust-item span { color: var(--c-ink-2) !important; }
        .v2-footer { background: var(--c-ink) !important; }

        /* Audience pills */
        .audience-pill {
            background: #ededea; border: 1px solid var(--c-border);
            color: var(--c-ink-2); padding: 8px 22px; border-radius: 100px;
            font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
        }
        .audience-pill.active {
            background: var(--c-ink); border-color: var(--c-ink);
            color: #fff;
        }

        /* FAQ inline */
        .faq-inline { margin: 60px auto 0; max-width: 800px; text-align: left; }
        .faq-inline-item { border-bottom: 1px solid var(--c-border); }
        .faq-inline-question {
            padding: 18px 0; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            font-weight: 600; color: var(--c-ink);
        }
        .faq-inline-answer {
            max-height: 0; overflow: hidden; transition: all 0.3s ease;
            color: var(--c-ink-2); font-size: 0.95rem; line-height: 1.6;
        }
        .faq-inline-item.active .faq-inline-answer { max-height: 300px; padding-bottom: 18px; }
        .faq-inline-item.active .faq-inline-question svg { transform: rotate(180deg); }

        /* Security badges */
        .security-badge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; margin-top: 20px; }
        @media (max-width: 768px) { .security-badge-grid { grid-template-columns: 1fr 1fr; } }
        .security-badge-item { background: #fff; border: 1px solid var(--c-border); padding: 14px; border-radius: 10px; display: flex; align-items: center; gap: 10px; }
        .badge-icon { color: var(--c-green); font-size: 1.1rem; }
        .security-badge-item div div:first-child { color: var(--c-ink) !important; }

        /* ─── GEO-ALERT TICKER ─── */
        .geo-alert-ticker {
            display: flex; align-items: center; gap: 10px;
            background: linear-gradient(90deg, rgba(220,38,38,0.06) 0%, rgba(245,158,11,0.06) 100%);
            border: 1px solid rgba(220,38,38,0.18);
            border-radius: 8px;
            padding: 8px 14px;
            margin: 14px 0 22px;
            overflow: hidden;
            position: relative;
        }
        .geo-alert-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: #DC2626; flex-shrink: 0;
            animation: geo-pulse 1.6s ease-in-out infinite;
        }
        @keyframes geo-pulse {
            0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(220,38,38,0.5); }
            50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 5px rgba(220,38,38,0); }
        }
        .geo-ticker-track {
            display: flex; align-items: center; gap: 18px;
            white-space: nowrap;
            animation: geo-scroll 30s linear infinite;
        }
        .geo-alert-ticker:hover .geo-ticker-track { animation-play-state: paused; }
        @keyframes geo-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .geo-ticker-item { font-size: 12px; color: #7f1d1d; font-weight: 500; }
        .geo-ticker-sep { font-size: 12px; color: rgba(220,38,38,0.35); font-weight: 700; }

        /* ─── GEO CHIPS ROW ─── */
        .geo-chips-row {
            display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
            margin-bottom: 16px;
        }
        .geo-chip {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: 12px; font-weight: 600;
            padding: 5px 12px; border-radius: 100px;
            transition: transform 0.15s;
        }
        .geo-chip:hover { transform: translateY(-1px); }
        .geo-chip-safe {
            background: rgba(22,163,74,0.09); border: 1px solid rgba(22,163,74,0.22);
            color: #166534;
        }
        .geo-chip-risk {
            background: rgba(220,38,38,0.07); border: 1px solid rgba(220,38,38,0.2);
            color: #991b1b;
        }
        .geo-chip-risk:hover { background: rgba(220,38,38,0.12); }
        .price-val { color: var(--c-ink) !important; }
        .price-sub { color: var(--c-ink-3) !important; }
        .price-features li { color: var(--c-ink-2) !important; }
        .origins-card h3 { color: #1e3a8a !important; }
        .origins-card h4, .arch-step h4, .cap-card h4, .problem-card h4, .video-info h4 { color: var(--c-ink) !important; }

        /* ─── FEATURED CARD — texto branco no fundo escuro ─── */
        .price-card.featured h3,
        .price-card.featured .price-val,
        .price-card.featured .price-val span,
        .price-card.featured .price-sub,
        .price-card.featured .price-features li,
        .price-card.featured .price-features li strong,
        .price-card.featured p { color: #ffffff !important; }

        /* ─── HAMBURGER MENU ─── */
        .c-nav-hamburger {
            display: none; background: none; border: none; cursor: pointer;
            padding: 6px 8px; border-radius: 6px; color: var(--c-ink);
            font-size: 20px; line-height: 1; transition: background 0.15s;
        }
        .c-nav-hamburger:hover { background: var(--c-bg-hover); }
        @media (max-width: 860px) { .c-nav-hamburger { display: flex; align-items: center; } }

        /* Mobile drawer */
        .c-nav-drawer {
            display: none;
            position: fixed; top: 56px; left: 0; right: 0; z-index: 999;
            background: rgba(245,244,239,0.98);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--c-border);
            padding: 12px 20px 20px;
            flex-direction: column;
            gap: 2px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        }
        .c-nav-drawer.open { display: flex; }
        .c-nav-drawer a {
            font-size: 14px; color: var(--c-ink-2); text-decoration: none;
            padding: 11px 14px; border-radius: 6px;
            transition: background 0.12s, color 0.12s;
            display: flex; align-items: center; gap: 8px;
        }
        .c-nav-drawer a:hover { background: var(--c-bg-hover); color: var(--c-ink); }
        .c-nav-drawer-divider { height: 1px; background: var(--c-border); margin: 8px 0; }
        /* ─── COUNTRY SELECTOR MODAL ─── */
        #country-selector-modal {
            display: none; position: fixed; inset: 0; z-index: 10000;
            background: rgba(13,13,13,0.6); backdrop-filter: blur(8px);
            align-items: center; justify-content: center; padding: 20px;
        }
        .country-modal-card {
            background: #fff; width: 100%; max-width: 440px; border-radius: 16px;
            padding: 32px; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
            text-align: center; border: 1px solid var(--c-border);
        }
        .country-modal-flag { font-size: 40px; margin-bottom: 16px; display: block; }
        .country-modal-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--c-ink); }
        .country-modal-text { font-size: 15px; color: var(--c-ink-3); margin-bottom: 24px; line-height: 1.5; }
        .country-modal-btns { display: flex; flex-direction: column; gap: 12px; }
        .country-btn-global {
            background: var(--c-ink); color: #fff; padding: 12px; border-radius: 8px;
            font-weight: 600; text-decoration: none; transition: opacity 0.2s;
        }
        .country-btn-stay {
            background: var(--c-bg-hover); color: var(--c-ink); padding: 12px; border-radius: 8px;
            font-weight: 500; text-decoration: none; border: 1px solid var(--c-border);
            cursor: pointer;
        }
        .country-btn-global:hover { opacity: 0.9; }
        .country-btn-stay:hover { background: #e0dfd8; }

        /* Nav country toggle */
        .c-nav-lang {
            display: flex; align-items: center; gap: 6px; padding: 6px 10px;
            border-radius: 6px; border: 1px solid var(--c-border);
            font-size: 12px; font-weight: 600; color: var(--c-ink-2);
            text-decoration: none; transition: all 0.2s;
        }
        .c-nav-lang:hover { background: var(--c-bg-hover); border-color: var(--c-border-2); }
