
        /* ===== RESET & TOKENS ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --accent: #d2943c;
            --accent2: #4a9eff;
            --glass: rgba(255, 255, 255, 0.06);
            --glass-b: rgba(255, 255, 255, 0.12);
            --glass-h: rgba(255, 255, 255, 0.10);
            --text: #e8e8e8;
            --text-dim: rgba(232, 232, 232, 0.7);
            --tr: all 0.3s ease;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.03);
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
        }

        /* ===== NAV ===== */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 2rem;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-b);
            transition: var(--tr);
        }

        #nav.scrolled {
            padding: 0.7rem 2rem;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            text-decoration: none;
        }

        .nav-brand img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
        }

        .nav-brand span {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 0.25rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            padding: 0.45rem 1rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--tr);
        }

        .nav-links a:hover {
            color: #fff;
            background: var(--glass);
        }

        .lang-switcher {
            display: flex;
            gap: 0.5rem;
            margin-left: 1rem;
        }

        .lang-switcher a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.3rem 0.5rem;
            border-radius: 6px;
            transition: var(--tr);
        }

        .lang-switcher a:hover,
        .lang-switcher a.active {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

        #hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 36px;
            height: 36px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        #hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: var(--tr);
        }

        #mobile-menu {
            display: none;
            position: fixed;
            top: 65px;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            padding: 1rem 0;
            z-index: 999;
            border-bottom: 1px solid var(--glass-b);
        }

        #mobile-menu.open {
            display: block;
        }

        #mobile-menu a {
            display: block;
            color: var(--text-dim);
            text-decoration: none;
            padding: 0.9rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            transition: var(--tr);
        }

        #mobile-menu a:hover {
            color: #fff;
            background: var(--glass);
        }

        /* ===== HERO ===== */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('../images/bg.jpg') center/cover no-repeat;
            position: relative;
            text-align: center;
            padding: 6rem 1.5rem 3rem;
        }

        #hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(10, 10, 10, 0.9) 100%);
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(210, 148, 60, 0.15);
            border: 1px solid rgba(210, 148, 60, 0.35);
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-inner h1 {
            font-size: clamp(2.4rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 1.2rem;
            animation: fadeUp 0.9s ease both;
        }

        .hero-inner h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-inner p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-dim);
            max-width: 560px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
            animation: fadeUp 0.9s 0.15s ease both;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.9s 0.3s ease both;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--tr);
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background: #e8a845;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(210, 148, 60, 0.4);
        }

        .btn-ghost {
            background: transparent;
            color: #fff;
            font-weight: 600;
            padding: 0.9rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: 1px solid var(--glass-b);
            transition: var(--tr);
            font-size: 0.95rem;
        }

        .btn-ghost:hover {
            background: var(--glass);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--text-dim);
            font-size: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: bounce 2s infinite;
        }

        .hero-scroll .icon {
            font-size: 22px;
        }

        /* ===== SECTION WRAPPER ===== */
        .section {
            padding: 6rem 1.5rem;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }

        .section-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
            max-width: 60px;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .section-sub {
            color: var(--text-dim);
            font-size: 1.05rem;
            line-height: 1.7;
            max-width: 640px;
            margin-bottom: 3rem;
        }

        /* ===== GLASS CARD ===== */
        .card {
            background: var(--glass);
            border: 1px solid var(--glass-b);
            border-radius: 16px;
            padding: 2rem;
            transition: var(--tr);
            backdrop-filter: blur(12px);
        }

        .card:hover {
            background: var(--glass-h);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        }

        /* ===== REVEAL ANIMATION ===== */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== INTRO SECTION ===== */
        .intro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

        .intro-card {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .intro-card .ic-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(210, 148, 60, 0.12);
            border: 1px solid rgba(210, 148, 60, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .intro-card .ic-icon .material-icons-outlined {
            color: var(--accent);
            font-size: 24px;
        }

        .intro-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
        }

        .intro-card p {
            color: var(--text-dim);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        /* ===== PORTFOLIO / vitXGO ===== */
        .product-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .product-header img {
            width: 64px;
            height: 64px;
            object-fit: contain;
        }

        .nav-brand img {
            height: 40px;
            width: 40px;
            object-fit: contain;
            display: block;
        }

        .product-header h3 {
            font-size: 1.7rem;
            font-weight: 800;
            color: #fff;
        }

        .product-header p {
            color: var(--text-dim);
            font-size: 0.95rem;
            margin-top: 0.3rem;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .module-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .module-num {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            flex-shrink: 0;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            box-shadow: 0 4px 15px rgba(210, 148, 60, 0.35);
        }

        .module-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
        }

        .module-card p {
            color: var(--text-dim);
            font-size: 0.88rem;
            line-height: 1.65;
            flex: 1;
        }

        .tag-list {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-top: auto;
        }

        .tag {
            background: rgba(74, 158, 255, 0.08);
            border-left: 3px solid var(--accent2);
            padding: 0.4rem 0.7rem;
            border-radius: 0 6px 6px 0;
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        .tag strong {
            color: #fff;
        }

        /* ===== VIDEO PLAYER ===== */
        .video-wrapper {
            background: var(--glass);
            border: 1px solid var(--glass-b);
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .video-thumb {
            width: 100%;
            height: 420px;
            background: url('../images/vitxgo_abertura_filme.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }

        .video-thumb::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            transition: var(--tr);
        }

        .video-thumb:hover::after {
            background: rgba(0, 0, 0, 0.25);
        }

        .play-btn {
            position: relative;
            z-index: 1;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--tr);
            color: #fff;
            cursor: pointer;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.28);
        }

        .play-btn .material-icons-outlined {
            font-size: 36px;
            margin-left: 4px;
        }

        #portVideo {
            width: 100%;
            max-height: 420px;
            display: none;
            background: #000;
        }

        .video-info {
            padding: 1.5rem 2rem;
        }

        .video-info p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        /* ===== CONCLUSION BOX ===== */
        .conclusion {
            background: linear-gradient(135deg, rgba(210, 148, 60, 0.1), rgba(74, 158, 255, 0.08));
            border: 1px solid var(--glass-b);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            margin-top: 3rem;
        }

        .conclusion h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.7rem;
        }

        .conclusion p {
            color: var(--text-dim);
            margin-bottom: 1.5rem;
        }

        .cta-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===== BOOQ / OTHERS ===== */
        .coming-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }

        .coming-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .coming-card .cc-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--glass);
            border: 1px solid var(--glass-b);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .coming-card .cc-icon .material-icons-outlined {
            font-size: 26px;
            color: var(--accent2);
        }

        .coming-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #fff;
        }

        .coming-card p {
            color: var(--text-dim);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        .chip {
            display: inline-block;
            background: rgba(74, 158, 255, 0.12);
            border: 1px solid rgba(74, 158, 255, 0.25);
            color: var(--accent2);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 0.25rem 0.65rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ===== ABOUT ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .about-text p {
            color: var(--text-dim);
            line-height: 1.75;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .stat-card {
            text-align: center;
        }

        .stat-card .num {
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }

        .stat-card .lbl {
            font-size: 0.82rem;
            color: var(--text-dim);
            margin-top: 0.3rem;
        }

        /* ===== CONTACT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-btns {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            background: var(--glass);
            border: 1px solid var(--glass-b);
            transition: var(--tr);
            color: #fff;
        }

        .contact-btn:hover {
            background: var(--glass-h);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }

        .contact-btn .cb-icon {
            width: 46px;
            height: 46px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-btn .cb-icon .material-icons-outlined {
            font-size: 24px;
            color: #fff;
        }

        .cb-email .cb-icon {
            background: rgba(74, 158, 255, 0.2);
        }

        .cb-wa .cb-icon {
            background: rgba(37, 211, 102, 0.2);
        }

        .contact-btn .cb-label {
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        .contact-btn .cb-value {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
        }

        .contact-info-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .ci-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            border-radius: 10px;
            background: var(--glass);
            border: 1px solid var(--glass-b);
        }

        .ci-row .material-icons-outlined {
            color: var(--accent);
            font-size: 20px;
            margin-top: 1px;
            flex-shrink: 0;
        }

        .ci-row .ci-text {
            font-size: 0.88rem;
            color: var(--text-dim);
            line-height: 1.5;
        }

        .ci-row .ci-text strong {
            color: #fff;
            display: block;
            margin-bottom: 0.2rem;
        }

        .ci-row a {
            color: var(--accent2);
            text-decoration: none;
        }

        .ci-row a:hover {
            text-decoration: underline;
        }

        /* ===== LEGAL PAGES ===== */
        #page-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(10, 10, 10, 0.97);
            backdrop-filter: blur(20px);
            overflow-y: auto;
            padding: 5rem 1.5rem 3rem;
        }

        #page-overlay.open {
            display: block;
        }

        .legal-wrap {
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-wrap h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 2rem;
        }

        .legal-section {
            margin-bottom: 2rem;
        }

        .legal-section h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.7rem;
        }

        .legal-section p,
        .legal-section li {
            color: var(--text-dim);
            font-size: 0.93rem;
            line-height: 1.7;
            margin-bottom: 0.5rem;
        }

        .legal-section ul {
            padding-left: 1.5rem;
        }

        .close-legal {
            position: fixed;
            top: 1.2rem;
            right: 1.5rem;
            background: var(--glass);
            border: 1px solid var(--glass-b);
            color: #fff;
            cursor: pointer;
            border-radius: 10px;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: var(--tr);
            z-index: 2001;
        }

        .close-legal:hover {
            background: var(--glass-h);
        }

        /* cookie table */
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.2rem 0;
        }

        .cookie-table th,
        .cookie-table td {
            padding: 0.8rem 1rem;
            text-align: left;
            border-bottom: 1px solid var(--glass-b);
            font-size: 0.88rem;
        }

        .cookie-table th {
            background: var(--glass);
            color: #fff;
            font-weight: 700;
        }

        .cookie-table td {
            color: var(--text-dim);
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 52px;
            height: 28px;
            flex-shrink: 0;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            inset: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 28px;
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: '';
            height: 20px;
            width: 20px;
            left: 4px;
            bottom: 4px;
            background: #fff;
            border-radius: 50%;
            transition: .4s;
        }

        input:checked+.slider {
            background: var(--accent2);
        }

        input:checked+.slider:before {
            transform: translateX(24px);
        }

        .control-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid var(--glass-b);
            gap: 1rem;
        }

        .control-item:last-child {
            border-bottom: none;
        }

        .control-item div {
            flex: 1;
        }

        .control-item strong {
            color: #fff;
            font-size: 0.95rem;
        }

        .control-item p {
            color: var(--text-dim);
            font-size: 0.82rem;
            margin-top: 0.2rem;
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: 1px solid var(--glass-b);
            padding: 2rem 1.5rem;
            text-align: center;
            color: var(--text-dim);
            font-size: 0.85rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 0.8rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: var(--tr);
        }

        .footer-links a:hover {
            color: #fff;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }

            to {
                opacity: 1;
                transform: none;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            #hamburger {
                display: flex;
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .video-thumb,
            #portVideo {
                height: 240px;
            }

            .section {
                padding: 4rem 1.2rem;
            }

            .conclusion {
                padding: 2rem 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

            .product-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .hero-inner h1 {
                font-size: 2.2rem;
            }
        }
    