        /* === ALEXANDRIA THEME VARIABLES === */
        :root {
            --primary: #FFD148;
            --primary-hover: #E5BB40;
            --dark: #0A3C53;
            --gray-text: #4B5563; 
            --light-gray: #6B7280;
            --bg-page: #F9F6F0; 
            --bg-white: #FFFFFF;
            --bg-card: #F4F7F9;
            --bg-blue: #A4C8E1;
            
            --font-sans: 'Poppins', sans-serif;
            --font-serif: 'Playfair Display', serif;
            
            --radius-pill: 9999px;
            --radius-lg: 32px;
            --radius-md: 20px;
            --radius-sm: 12px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { background: #FFFFFF; overflow-x: hidden; max-width: 100vw; }

        body {
            font-size: 16px;
            font-family: var(--font-sans);
            color: var(--dark);
            background: #FFFFFF !important;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            -webkit-font-smoothing: antialiased;
        }

        .main-wrapper {
            background: var(--bg-page);
            width: 100%;
        }
        


        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }

        /* Helpers */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        .text-center { text-align: center; }
        .mt-24 { margin-top: 24px; }
        .mt-32 { margin-top: 32px; }
        .mt-48 { margin-top: 48px; }
        .mt-80 { margin-top: 80px; }
        .mt-120 { margin-top: 120px; }
        .mb-24 { margin-bottom: 24px; }
        .mb-48 { margin-bottom: 48px; }

        /* === BUTTONS & BADGES === */
        /* Nota: usando 'translate' no hover em vez de 'transform' para não dar conflito com GSAP */
        .btn {
            padding: 14px 28px; border-radius: var(--radius-pill); border: none;
            font-weight: 500; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
            gap: 8px; transition: translate 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
            font-family: var(--font-sans); font-size: 0.95rem;
        }
        
        .btn-primary { background: var(--primary); color: white; }
        .btn-primary:hover {
            background: var(--primary-hover);
            translate: 0 -3px;
        }
        
        .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: white; translate: 0 -3px; }
        
        .btn-white { background: white; color: var(--dark); }
        .btn-white:hover { background: #f9f9f9; translate: 0 -3px; }
        
        .btn-outline-white { border: 2px solid white; color: white; background: transparent; }
        .btn-outline-white:hover { background: white; color: var(--dark); translate: 0 -3px; }
        .badge-outline {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; border: 1px solid rgba(245, 139, 41, 0.5);
            color: var(--primary); border-radius: var(--radius-pill);
            font-size: 0.9rem; font-weight: 600; margin-bottom: 24px;
        }

        .split-title { line-height: 1.1; letter-spacing: -0.02em; }
        .split-title .text-light { color: var(--light-gray); }
        .reveal-word { opacity: 0.1; display: inline-block; }

        /* === PREMIUM BUTTONS (Based on User Reference) === */
        .btn-premium {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 6px 6px 24px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: none;
            cursor: pointer;
            gap: 16px;
            font-family: var(--font-sans);
            white-space: nowrap;
            width: auto;
        }
        .hero-actions .btn-premium { width: 280px; }

        .btn-premium-white {
            background: #FFFFFF;
            color: #0A3C53;
        }

        .btn-premium-dark {
            background: #0A3C53;
            color: #FFF;
        }

        .btn-icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            font-size: 1.2rem;
        }

        .btn-premium-white .btn-icon-circle {
            background: #0A3C53;
            color: white;
        }

        .btn-premium-dark .btn-icon-circle {
            background: white;
            color: #0A3C53;
        }

        .btn-premium:hover {
            transform: translateY(-2px);
        }
        .btn-premium-white:hover {
            background: #f0f0f0;
        }
        .btn-premium-dark:hover {
            background: #082d3e;
        }

        .btn-premium:hover .btn-icon-circle {
            transform: scale(0.9) rotate(45deg);
        }

        .btn-premium-dark:hover .btn-icon-circle {
            transform: scale(0.9);
        }

        /* === NAVBAR CAPSULE === */
        .navbar-wrapper {
            position: fixed; top: 32px; width: 100%;
            display: flex; justify-content: center; z-index: 1000;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        body.modal-active {
            overflow: hidden !important;
        }
        
        body.modal-active .navbar-wrapper {
            opacity: 0;
            pointer-events: none;
            visibility: hidden;
        }
        
        .navbar-capsule {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-pill);
            padding: 12px 24px; display: flex; align-items: center; justify-content: space-between;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03); width: 90%; max-width: 950px;
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .navbar-wrapper.scrolled {
            top: 0;
        }
        
        .navbar-wrapper.scrolled .navbar-capsule {
            width: 100%;
            max-width: 100%;
            border-radius: 0;
            padding: 12px 5%;
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            background: rgba(10, 60, 83, 0.95); /* #0A3C53 com transparência para manter o blur */
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
        }

        .navbar-wrapper.scrolled .logo-img {
            filter: brightness(0) invert(1);
        }

        .navbar-wrapper.scrolled .nav-links a {
            color: #FFFFFF;
        }

        .navbar-wrapper.scrolled .nav-links a:hover,
        .navbar-wrapper.scrolled .nav-links a.active {
            color: var(--primary);
        }

        .navbar-wrapper.scrolled .nav-contact-link {
            color: #FFFFFF !important;
        }
        .nav-contact-link:hover { color: var(--primary) !important; }

        .navbar-wrapper.scrolled .btn-premium-dark {
            background: var(--primary);
            color: var(--dark);
        }

        .navbar-wrapper.scrolled .btn-premium-dark .btn-icon-circle {
            background: #FFFFFF;
            color: var(--primary);
        }
        
        .nav-logo {
            display: flex; align-items: center; gap: 8px;
            font-weight: 700; font-size: 1.4rem; color: var(--primary);
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }
        .nav-logo::before {
            content: '';
            position: absolute;
            top: 0; left: -150%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg);
            z-index: 2;
        }

        /* === PRELOADER === */
        #preloader {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: #0A3C53;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 20000;
            color: white;
        }
        .preloader-icon {
            font-size: 5rem;
            color: #FFD148;
            margin-bottom: 24px;
            position: relative;
            animation: preloader-shock 0.15s infinite;
        }
        @keyframes preloader-shock {
            0% { transform: translate(0,0) scale(1); filter: drop-shadow(0 0 10px #FFD148); }
            20% { transform: translate(-3px, 2px) scale(1.02); filter: drop-shadow(0 0 30px #fff); }
            40% { transform: translate(3px, -2px); }
            60% { transform: translate(-2px, -3px) scale(0.98); filter: drop-shadow(0 0 20px #FFD148); }
            80% { transform: translate(2px, 2px); }
            100% { transform: translate(0,0); }
        }
        .preloader-text {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
            opacity: 0.7;
        }
        .loader-bar-bg {
            width: 200px;
            height: 2px;
            background: rgba(255,255,255,0.1);
            margin-top: 20px;
            border-radius: 4px;
            overflow: hidden;
        }
        .loader-bar-fill {
            width: 0%;
            height: 100%;
            background: #FFD148;
            transition: width 0.3s ease;
        }

        .nav-logo::before {
            content: '';
            position: absolute;
            top: 0; left: -150%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg);
            z-index: 2;
            transition: left 0s;
            pointer-events: none;
        }
        .nav-logo:hover::before {
            left: 200%;
            transition: left 0.6s ease;
        }
        .logo-img {
            height: 42px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease, filter 0.3s ease;
            position: relative;
            z-index: 1;
        }
        .footer-logo {
            height: 60px;
            filter: brightness(0) invert(1);
        }
        @media (max-width: 768px) {
            .logo-img { height: 32px; }
            .footer-logo { height: 48px; }
            .btn-premium { width: 100%; max-width: 340px; font-size: 0.95rem; }
            .hero-actions { flex-direction: column; }
        }
        
        .nav-links { display: flex; gap: 32px; }
        .nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--dark); transition: color 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }

        /* === MOBILE MENU === */
        .mobile-toggle {
            display: none; background: transparent; border: none; font-size: 1.8rem; color: var(--primary); cursor: pointer;
        }
        .navbar-wrapper.scrolled .mobile-toggle { color: white; }
        
        .mobile-menu-overlay {
            position: fixed; inset: 0; background: rgba(10, 60, 83, 0.6); backdrop-filter: blur(8px);
            z-index: 20000; opacity: 0; pointer-events: none; transition: 0.4s;
            display: flex; justify-content: flex-end;
        }
        .mobile-menu-overlay.active { opacity: 1; pointer-events: all; }
        
        .mobile-menu-drawer {
            width: 85%; max-width: 320px; height: 100%;
            background: #FFFFFF; transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding: 80px 32px 40px; display: flex; flex-direction: column; gap: 40px;
            position: relative;
        }
        .mobile-menu-overlay.active .mobile-menu-drawer { transform: translateX(0); }
        
        .mobile-menu-close {
            position: absolute; top: 24px; left: 24px; background: #F3F4F6; border: none;
            width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; color: var(--dark); cursor: pointer;
        }
        
        .mobile-nav-links { display: flex; flex-direction: column; gap: 24px; }
        .mobile-nav-links a { font-size: 1.3rem; font-weight: 600; color: var(--dark); transition: 0.3s; }
        .mobile-nav-links a:hover { color: var(--primary); padding-left: 8px; }
        
        .mobile-menu-footer { margin-top: auto; padding-top: 32px; border-top: 1px solid #F3F4F6; }
        .mobile-socials { display: flex; gap: 16px; margin-bottom: 24px; }
        .mobile-socials a {
            width: 40px; height: 40px; border-radius: 50%; background: #F3F4F6;
            display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--dark);
            transition: all 0.3s;
        }
        .mobile-socials a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

        /* === HERO SECTION === */
        .hero {
            height: 100vh; min-height: 900px;
            background: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?q=80&w=2000&auto=format&fit=crop') center 25% / cover;
            position: relative; display: flex; flex-direction: column; justify-content: center;
            padding-bottom: 140px;
        }
        
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
        }
        
        .hero-content {
            position: relative; z-index: 10; text-align: center; margin-top: 60px;
        }
        
        .hero-title {
            font-size: clamp(2.1rem, 3.8vw, 3.5rem); font-weight: 800; color: #0A3C53;
            line-height: 1.15; margin-bottom: 24px; letter-spacing: -0.02em;
        }
        .hero .hero-title { color: #FFFFFF; }
        .title-line-wrap {
            display: block;
            overflow: hidden;
            padding-bottom: 12px;
            margin-bottom: -12px;
        }
        .title-line {
            display: inline-block;
            transform-origin: left bottom;
        }
        
        .serif-italic { font-family: var(--font-serif); font-style: italic; color: var(--primary); font-weight: 600; }
        
        .hero-subtitle {
            font-size: 1.15rem; color: #FFFFFF; max-width: 80%; margin: 0 auto 32px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .hero-actions { display: flex; gap: 20px; justify-content: center; align-items: center; }

        /* Glass Cards */
        .glass-cards-container {
            position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
            width: 90%; max-width: 1100px; z-index: 10;
        }
        
        .glass-card {
            background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.3); border-radius: var(--radius-md);
            padding: 24px; color: white; display: flex; flex-direction: column;
            transition: translate 0.3s ease;
        }
        
        .glass-card:hover { translate: 0 -8px; }
        .glass-card h4 { font-size: 1.2rem; margin-bottom: 12px; font-weight: 600; }
        .glass-card p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; line-height: 1.5; }
        
        .read-more {
            color: white; font-size: 0.9rem; font-weight: 600;
            display: flex; justify-content: space-between; align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 8px; margin-top: auto;
        }
        
        .read-more .circle-icon {
            width: 32px; height: 32px; border: 1px solid white; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; transition: all 0.3s;
        }
        
        .read-more:hover .circle-icon { background: white; color: var(--primary); }

        .glass-card.middle { flex-direction: row; gap: 20px; align-items: center; padding: 20px; }
        .video-thumb {
            width: 100px; height: 100%; min-height: 120px;
            background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=400') center/cover;
            border-radius: 16px; display: flex; align-items: center; justify-content: center;
        }
        .video-thumb i {
            background: white; color: var(--primary); width: 36px; height: 36px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer;
        }
        .avatars { display: flex; margin-bottom: 12px; }
        .avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); margin-left: -12px; }
        .avatars img:first-child { margin-left: 0; }

        /* === MAIN WRAPPER === */
        .main-wrapper {
            background: var(--bg-white); border-radius: 48px 48px 0 0;
            position: relative; z-index: 20; margin-top: -48px;
            padding: 100px 0; box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
        }

        /* 1. About Us Section */
        .about-section { display: grid; grid-template-columns: 45% 55%; gap: 64px; align-items: center; }
        .about-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5; }
        
        .get-started-row {
            display: flex; justify-content: space-between; align-items: center;
            border-bottom: 1px solid #E5E7EB; padding-bottom: 24px; margin-bottom: 40px;
        }
        .get-started-row strong { font-size: 1.2rem; font-weight: 700; }
        .circle-icon-btn {
            background: var(--primary); color: white; width: 40px; height: 40px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            border: none; cursor: pointer; font-size: 1.2rem; transition: scale 0.3s, box-shadow 0.3s;
        }
        .circle-icon-btn:hover { scale: 1.1; box-shadow: 0 5px 15px rgba(245, 139, 41, 0.4); }

        .feature-squares { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .square-card { background: var(--bg-card); padding: 32px 24px; border-radius: var(--radius-md); transition: translate 0.3s; }
        .square-card:hover { translate: 0 -5px; }
        .icon-square {
            width: 48px; height: 48px; background: var(--primary); color: white;
            border-radius: 12px; display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; margin-bottom: 20px;
        }
        .square-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
        .square-card p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

        /* 2. Marquee & Data Cards */
        .marquee-title {
            font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600; letter-spacing: -0.03em;
            color: var(--dark); margin-bottom: 48px; text-transform: uppercase; line-height: 1.2;
        }
        .marquee-title .text-light { color: var(--light-gray); }

        .data-cards { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; }
        .d-card {
            border-radius: var(--radius-lg); padding: 32px; min-height: 280px; height: auto;
            position: relative; overflow: hidden; display: flex; flex-direction: column;
            transition: translate 0.3s; cursor: pointer;
        }
        .d-card.cap-card { overflow: visible; }
        .d-card:hover { translate: 0 -10px; }
        .d-card.orange { background: var(--primary); color: white; }
        .d-card.blue { background: #0A3C53; color: white; }
        
        .d-card h3 { font-size: 1.2rem; font-weight: 500; margin-bottom: auto; }
        .d-card .big-number { font-size: 4rem; font-weight: 700; line-height: 1; margin-bottom: 16px; }
        .d-card .top-right-icon {
            position: absolute; top: 32px; right: 32px;
            width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
            display: flex; align-items: center; justify-content: center;
        }
        .d-card-img {
            position: absolute; right: -25px; bottom: 0px; width: 190px;
            border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); transform: rotate(-6deg);
            opacity: 0.95;
        }

        /* 3. Increase Home Value Section */
        .increase-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .increase-section img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; aspect-ratio: 1/1; }
        
        .check-list { display: flex; flex-direction: column; gap: 24px; }
        .check-item { display: flex; gap: 16px; align-items: flex-start; }
        .hex-icon {
            background: rgba(245, 139, 41, 0.1); color: var(--primary);
            width: 40px; height: 40px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem; flex-shrink: 0;
        }
        .check-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
        .check-item p { font-size: 0.9rem; color: var(--gray-text); }

        /* 4. Accordion Services */
        .services-accordion { max-width: 1000px; margin: 0 auto; }
        .serv-acc-item { 
            border-bottom: 1px solid #E5E7EB; padding: 40px 0; cursor: pointer; 
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .serv-acc-header { display: flex; align-items: center; gap: 32px; }
        .serv-acc-number { 
            font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; 
            color: var(--primary); font-weight: 600; min-width: 40px;
        }
        .serv-acc-header h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; color: var(--dark); transition: all 0.3s; flex: 1; }
        .serv-acc-item:hover h3 { transform: translateX(10px); color: var(--primary); }
        .serv-acc-header i { font-size: 1.5rem; transition: transform 0.4s; color: var(--gray-text); }
        .serv-acc-content { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .serv-acc-item.active { padding: 48px 0; }
        .serv-acc-item.active .serv-acc-header h3 { color: var(--primary); }
        .serv-acc-item.active .serv-acc-content { max-height: 700px; opacity: 1; margin-top: 40px; }
        .serv-acc-item.active .serv-acc-header i { transform: rotate(180deg); color: var(--primary); }

        /* 5. Driving Future */
        .driving-future { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .arrow-list { display: flex; flex-direction: column; gap: 24px; }
        .arrow-item { display: flex; gap: 16px; align-items: center; background: var(--bg-card); padding: 16px 24px; border-radius: var(--radius-md); }
        .arrow-icon-sq {
            background: rgba(10, 60, 83, 0.08); color: var(--dark);
            width: 48px; height: 48px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
            border: 1px solid rgba(10, 60, 83, 0.1);
        }
        .arrow-item p { font-weight: 500; font-size: 0.95rem; margin: 0; }
        
        .video-large {
            background: url('midias/img01.png') center/cover;
            border-radius: var(--radius-lg); min-height: 450px;
            display: flex; align-items: center; justify-content: center;
        }

        /* 6. Stats Row */
        .stats-row {
            display: flex; justify-content: space-between;
            border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; padding: 48px 0;
        }
        .stat-col { text-align: center; flex: 1; border-right: 1px solid #E5E7EB; }
        .stat-col:last-child { border-right: none; }
        .stat-col h3 { font-size: 3.5rem; font-weight: 700; color: var(--dark); line-height: 1; margin-bottom: 8px; }
        .stat-col p { color: var(--gray-text); text-transform: uppercase; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;}

        /* 7. Dark Banner */
        .dark-banner {
            position: relative; overflow: hidden; border-radius: 40px; padding: 80px 48px;
            background: url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=2000') center bottom / cover no-repeat;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .dark-banner::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(10, 60, 83, 0.95) 0%, rgba(10, 60, 83, 0.3) 100%);
        }
        .db-content { position: relative; z-index: 10; }
        .db-content-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 64px; }
        .glass-cards-dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .glass-card-dark {
            background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md);
            padding: 32px 24px; display: flex; gap: 16px; align-items: flex-start;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
        }
        .glass-card-dark:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.12);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        /* 8. Testimonials */
        .testimonials { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; background: #FFFFFF; padding: 120px 0; }
        .test-carousel-container { position: relative; }
        .test-cards-wrapper { display: flex; flex-direction: column; gap: 32px; }
        .test-card {
            background: #FFFFFF; border: 1px solid #F3F4F6; border-radius: 20px;
            padding: 20px; display: flex; gap: 14px; align-items: flex-start;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            width: 92%; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .test-card:nth-child(odd) { align-self: flex-end; }
        .test-card:nth-child(even) { align-self: flex-start; }
        .test-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
        .test-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
        .test-info h3 { font-size: 1rem; margin-bottom: 2px; color: #0A3C53; font-weight: 700; }
        .test-info .stars { color: #FFC107; font-size: 0.8rem; margin-bottom: 8px; display: flex; gap: 2px; }
        .test-info p { font-size: 0.85rem; color: #4B5563; line-height: 1.5; margin: 0; }
        .badge-outline { color: #FF9800; border: 1px solid #FF9800; padding: 6px 16px; border-radius: 20px; display: inline-block; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; }

        /* 9. FAQ */
        .faq-accordion { text-align: left; display: flex; flex-direction: column; gap: 12px; }
        .faq-item { 
            background: #F9FAFB; border-radius: 16px; padding: 20px 24px; 
            border: 1px solid transparent; transition: all 0.3s ease; 
        }
        .faq-item:hover { border-color: rgba(245, 139, 41, 0.3); background: #FFF; }
        .faq-item.active { background: #FFF; border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.15rem; color: var(--dark); }
        .faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--gray-text); font-size: 1rem; line-height: 1.6; }
        .faq-item.active .faq-answer { max-height: 200px; opacity: 1; padding-top: 16px; }
        .faq-item i { transition: transform 0.3s; font-size: 1.4rem; color: var(--primary); }
        
        /* SEO & Performance Optimization */
        .split-title span, .hero-title span, .res-item, .test-card, .glass-card, .d-card, .faq-item { 
            will-change: transform, opacity; 
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
        .hero, .main-wrapper, .faq-section { 
            backface-visibility: hidden; 
            transform: translateZ(0); 
            -webkit-font-smoothing: antialiased; 
            force3D: true;
        }

        /* 10. Footer */
        .footer {
            background: #0B2936; border-radius: 48px 48px 0 0;
            padding: 80px 48px 40px; color: white; position: relative; overflow: hidden;
        }
        .footer-top {
            display: flex; justify-content: space-between; align-items: center;
            padding-bottom: 40px; margin-bottom: 64px;
        }
        .footer-socials {
            display: flex; gap: 16px;
        }
        .footer-socials a {
            width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white;
            transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1);
        }
        .footer-socials a:hover {
            background: var(--primary); color: white; transform: translateY(-3px); border-color: var(--primary);
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; position: relative; z-index: 10; }
        .footer-links { display: flex; flex-direction: column; gap: 16px; }
        .footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .watermark-img {
            position: absolute; bottom: -5vw; left: 50%; transform: translateX(-50%);
            width: 80vw; max-width: 900px;
            opacity: 0.03; pointer-events: none;
            filter: brightness(0) invert(1);
            z-index: 1;
        }

        /* Modal - Tela Toda */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
            z-index: 50000; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: 0.3s;
            display: none;
        }
        .modal-overlay.active { opacity: 1; pointer-events: all; display: flex; }
        .modal-content {
            background: white; width: 100vw; height: 100vh; overflow-y: auto; 
            position: relative; transform: translateY(20px); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .modal-overlay.active .modal-content { transform: translateY(0); }
        .modal-close {
            position: absolute; top: 24px; right: 24px; background: white; border: none;
            width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: 0.2s; z-index: 1000;
            display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--dark);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }
        .modal-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }
        
        /* Simulator Layout */
        .simulator-layout { display: flex; min-height: 100vh; }
        .sim-left { 
            width: 45%; background: var(--dark); padding: 80px 64px;
            display: flex; flex-direction: column; justify-content: center;
            position: relative; overflow: hidden;
        }
        .sim-left::after {
            content: ''; position: absolute; inset: 0;
            background: url('../midias/img.png') center/cover;
            opacity: 0.15; mix-blend-mode: overlay; pointer-events: none;
        }
        .sim-right {
            width: 55%; padding: 40px 64px; background: var(--bg-page);
            display: flex; flex-direction: column; justify-content: center; position: relative;
        }
        .results-list { display: flex; flex-direction: column; gap: 8px; }
        .res-item {
            background: white; border-radius: 12px; padding: 12px 20px;
            display: flex; align-items: center; gap: 16px;
            border: 1px solid #F3F4F6;
            transition: all 0.3s ease;
        }
        .res-item:hover { transform: translateX(5px); border-color: var(--primary); background: #FFFBF5; }
        .res-icon {
            width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
            display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
        }
        .res-text { display: flex; flex-direction: column; gap: 0px; }
        .res-text span { font-size: 0.85rem; color: var(--gray-text); font-weight: 500; }
        .res-text strong { font-size: 1.3rem; color: var(--dark); font-weight: 700; }
        
        .form-group { margin-bottom: 24px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; color: var(--dark); }
        .form-group input { 
            width: 100%; padding: 16px 20px; border: 2px solid #E5E7EB; 
            border-radius: var(--radius-sm); font-family: var(--font-sans); font-size: 1.05rem; 
            transition: all 0.3s;
        }
        .form-group input:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(255, 209, 72, 0.2); }
        
        @media (max-width: 1024px) {
            .simulator-layout { flex-direction: column; }
            .sim-left { display: none; }
            .sim-right { width: 100%; padding: 80px 32px; min-height: 100vh; }
        }

        /* === RESPONSIVE ALIGNMENT === */
        @media (max-width: 1024px) {
            .about-section, .increase-section, .driving-future, .testimonials { grid-template-columns: 1fr; gap: 48px; }
            .data-cards { grid-template-columns: 1fr; }
            .stats-row { flex-wrap: wrap; gap: 40px; justify-content: center; }
            .stat-col { border: none; min-width: 40%; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .hero { padding-bottom: 80px; height: auto; min-height: 0; }
            .main-wrapper { margin-top: -40px; }
            .glass-cards-container { position: relative; bottom: auto; left: auto; transform: none; display: grid; grid-template-columns: 1fr; width: 90%; margin: 60px auto 0; }
            .test-card { margin-left: 0 !important; width: 100%; align-self: center !important; }
            .test-card:nth-child(odd), .test-card:nth-child(even) { align-self: center !important; }
        }
        @media (max-width: 768px) {
            .navbar-wrapper { top: 0; width: 100%; padding: 0; box-sizing: border-box; }
            .navbar-wrapper.scrolled { top: 0; padding: 0; }
            .navbar-capsule { flex-wrap: nowrap; border-radius: 0; justify-content: space-between; padding: 16px 24px; width: 100%; box-sizing: border-box; }
            .navbar-wrapper.scrolled .navbar-capsule { border-radius: 0; padding: 16px 24px; }
            .nav-logo { font-size: 1.2rem; }
            .nav-links, .nav-actions { display: none !important; }
            .mobile-toggle { display: block; }
            
            .hero-title { font-size: 2.2rem; }
            .hero-subtitle { font-size: 1rem; max-width: 100%; }
            .hero-content { margin-top: 130px; }
            .hero { padding-top: 40px; }
            .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 300px; margin: 0 auto; }
            .hero-actions .btn { width: 100%; justify-content: center; }
            
            .main-wrapper { border-radius: 32px 32px 0 0; padding: 60px 0; }
            .mt-120 { margin-top: 60px; }
            .mt-80 { margin-top: 40px; }
            .mb-48 { margin-bottom: 24px; }
            .split-title { font-size: 1.8rem; }
            .marquee-title { font-size: 1.6rem; }
            
            .get-started-row { flex-direction: column; gap: 20px; align-items: flex-start; }
            .feature-squares { grid-template-columns: 1fr; }
            
            .d-card { min-height: 220px; padding: 24px; }
            .d-card .big-number { font-size: 3rem; }
            .d-card-img { width: 130px; right: -10px; bottom: 0px; }
            
            .stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0; }
            .stat-col h3 { font-size: 2.2rem; }
            .stat-col p { font-size: 0.75rem; }
            
            .db-content-flex { flex-direction: column; align-items: flex-start; gap: 24px; }
            .glass-cards-dark-grid { grid-template-columns: 1fr; display: grid; gap: 16px; }
            .dark-banner { padding: 40px 24px; }
            
            .test-card { flex-direction: column; align-items: flex-start; padding: 20px 16px; }
            .test-cards-wrapper { grid-template-columns: 1fr; }
            
            .footer { padding: 40px 24px; background: #0B2936; }
            .footer-top { flex-direction: column; gap: 24px; align-items: center; text-align: center; padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
            .footer-socials { justify-content: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .watermark { font-size: 35vw; bottom: 0; }
            .video-large { min-height: 250px; }
            .serv-acc-content img { height: 250px; }
            .faq-item { padding: 16px 20px; }
            .faq-question { font-size: 1rem; }
            .faq-answer { font-size: 0.9rem; }
        }

        /* === PAGE REVEAL === */
        #page-reveal {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: #0A3C53; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            transition: opacity 1s ease-in-out, visibility 1s;
        }
        #page-reveal.hidden { opacity: 0; visibility: hidden; }
        .reveal-content { text-align: center; }
        .reveal-logo {
            width: 150px; filter: brightness(0) invert(1);
            opacity: 1; transform: none;
        }
        @keyframes revealFadeIn {
            to { opacity: 1; transform: translateY(0); }
        }
        .loader-bar-wrapper {
            width: 180px; height: 2px; background: rgba(255,255,255,0.1);
            margin: 32px auto 12px; border-radius: 10px; overflow: hidden;
        }
        .loader-bar {
            width: 0%; height: 100%; background: #FFD148;
            transition: width 0.4s ease;
        }
        .loader-percentage {
            color: #FFD148; font-size: 0.9rem; font-weight: 600;
            font-family: sans-serif;
        }
