        :root {
            --lux-bg: #0a0a0a;
            --lux-surface: rgba(255, 255, 255, 0.025);
            --lux-border: rgba(255, 255, 255, 0.08);
            --lux-border-hover: rgba(255, 255, 255, 0.22);
            --lux-primary: #ffffff;
            --lux-muted: #94a3b8;
            --lux-accent: #ffffff;
            --font-display: 'Outfit', 'Inter', -apple-system, sans-serif;
        }

        body {
            background-color: var(--lux-bg) !important;
            color: #f8fafc !important;
            font-family: 'Inter', sans-serif !important;
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════════════════════════
           CINEMATIC REVEAL & MICRO-ANIMATIONS ENGINE (HIGH-TECH LUX)
           ═══════════════════════════════════════════════════════════════ */
        .reveal {
            opacity: 0 !important;
            transform: translateY(38px) scale(0.985) !important;
            filter: blur(6px) !important;
            transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
            will-change: opacity, transform, filter;
        }

        .reveal.active {
            opacity: 1 !important;
            transform: translateY(0) scale(1) !important;
            filter: blur(0) !important;
        }

        .reveal.delay-1 { transition-delay: 0.12s !important; }
        .reveal.delay-2 { transition-delay: 0.24s !important; }
        .reveal.delay-3 { transition-delay: 0.36s !important; }
        .reveal.delay-4 { transition-delay: 0.48s !important; }
        .reveal.delay-5 { transition-delay: 0.60s !important; }

        /* MICRO-ANIMAÇÕES DE CARDS COM LIFT E GLOW (DESKTOP + HOVER) */
        .bento-card,
        .stat-cell,
        .consultor-banner-lux,
        .form-box-lux,
        #faq .faq-item {
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.45s ease,
                        background 0.45s ease !important;
        }

        @media (hover: hover) and (pointer: fine) {
            .bento-card:hover,
            .consultor-banner-lux:hover {
                transform: translateY(-6px) scale(1.012) !important;
                box-shadow: 0 24px 50px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
                border-color: rgba(255, 255, 255, 0.22) !important;
            }

            .stat-cell:hover {
                transform: translateY(-4px) !important;
                background: rgba(255, 255, 255, 0.04) !important;
                border-color: rgba(255, 255, 255, 0.2) !important;
            }

            #faq .faq-item:hover {
                border-color: rgba(255, 255, 255, 0.22) !important;
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
            }
        }

        /* BOTÕES INTERATIVOS E MAGNÉTICOS */
        .btn-lux-primary,
        .btn-lux-outline,
        .btn-lux-whatsapp {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        @media (hover: hover) {
            .btn-lux-primary:hover,
            .btn-lux-outline:hover,
            .btn-lux-whatsapp:hover {
                transform: translateY(-3px) scale(1.02) !important;
            }
            .btn-lux-primary:active,
            .btn-lux-outline:active,
            .btn-lux-whatsapp:active {
                transform: translateY(-1px) scale(0.98) !important;
            }
        }

        /* ÍCONES COM PULSO E ROTAÇÃO SUTIL NO HOVER */
        .bento-icon-pill {
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease !important;
        }

        .bento-card:hover .bento-icon-pill {
            transform: scale(1.12) rotate(4deg) !important;
            background: rgba(255, 255, 255, 0.15) !important;
        }

        /* HEADER FLUTUANTE EM CÁPSULA (ULTRA-PREMIUM & COMPACTO) */
        /* HEADER FLUTUANTE EM CÁPSULA (ESTADO INICIAL: TOM DE GLASS CRISTALINO IGUAL AOS CARDS DO HERO) */
        #main-header {
            position: fixed !important;
            top: 14px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            width: 90% !important;
            max-width: 1120px !important;
            height: 62px !important;
            border-radius: 62px !important;
            background: rgba(255, 255, 255, 0.035) !important;
            backdrop-filter: blur(24px) !important;
            -webkit-backdrop-filter: blur(24px) !important;
            border: 1px solid rgba(255, 255, 255, 0.14) !important;
            padding: 0 28px !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
            transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        top 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        background-color 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                        border-color 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1) !important;
            display: flex !important;
            align-items: center !important;
            overflow: visible !important;
        }

        /* CAMADA DE ANIMAÇÃO CINEMÁTICA AO DESLIZAR (OBSIDIAN DYNAMIC MORPH) */
        #main-header::before {
            content: "" !important;
            position: absolute !important;
            inset: 0 !important;
            border-radius: inherit !important;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 25, 38, 0.96) 100%) !important;
            opacity: 0 !important;
            transform: scale(0.88) !important;
            filter: blur(14px) !important;
            transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                        filter 0.65s cubic-bezier(0.16, 1, 0.3, 1) !important;
            z-index: 0 !important;
            pointer-events: none !important;
        }

        /* ESTADO AO DESLIZAR (.header-scrolled) - OBSIDIAN DEEP CÁPSULA */
        #main-header.header-scrolled {
            top: 10px !important;
            height: 56px !important;
            background: transparent !important;
            border-color: rgba(255, 255, 255, 0.24) !important;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 25px rgba(255, 255, 255, 0.08) !important;
        }

        #main-header.header-scrolled::before {
            opacity: 1 !important;
            transform: scale(1) !important;
            filter: blur(0) !important;
        }

        /* GARANTIR QUE O CONTEÚDO FIQUE ACIMA DO ::before DO HEADER */
        .header-container {
            position: relative !important;
            z-index: 2 !important;
            width: 100% !important;
            max-width: 100% !important;
            height: 100% !important;
            padding: 0 !important;
            margin: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
        }

        .logo {
            display: flex !important;
            align-items: center !important;
            height: 100% !important;
            z-index: 1002 !important;
            text-decoration: none !important;
        }

        .logo-dark {
            display: none !important;
        }

        /* LOGO BRANCA EM AMBAS AS VERSÕES COM TRANSFORMATION E SPRING NO MORPH */
        .logo-white {
            display: block !important;
            height: 46px !important;
            width: auto !important;
            max-height: none !important;
            object-fit: contain !important;
            filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45)) !important;
            transform: scale(1) !important;
            transition: filter 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                        height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        #main-header.header-scrolled .logo-white {
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)) !important;
            transform: scale(0.96) !important;
        }

        nav {
            display: flex !important;
            align-items: center !important;
            height: 100% !important;
        }

        .nav-menu {
            display: flex !important;
            align-items: center !important;
            gap: 32px !important;
            list-style: none !important;
            margin: 0 !important;
            padding: 0 !important;
            height: 100% !important;
        }

        /* BOTÃO FALE CONOSCO DE ALTO CONTRASTE EM AMBAS AS VERSÕES DO GLASS */
        .btn-nav-fale {
            background: #ffffff !important;
            color: #0a0a0a !important;
            font-weight: 600 !important;
            font-size: 13px !important;
            height: 36px !important;
            padding: 0 20px !important;
            border-radius: 36px !important;
            box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15) !important;
            transform: scale(1) !important;
            transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .btn-nav-fale:hover {
            transform: translateY(-2px) scale(1.02) !important;
            background: #f8fafc !important;
            box-shadow: 0 8px 22px rgba(255, 255, 255, 0.3) !important;
        }

        #main-header.header-scrolled .btn-nav-fale {
            background: #ffffff !important;
            color: #0a0a0a !important;
            box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25) !important;
        }

        #main-header.header-scrolled .btn-nav-fale:hover {
            background: #f8fafc !important;
            transform: translateY(-2px) scale(1.03) !important;
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.45) !important;
        }

        /* LINKS DA NAV COM SUAVE ESPLENDOR E TRANSICÃO EM AMBAS AS VERSÕES DO GLASS */
        .nav-link {
            font-weight: 600 !important;
            font-size: 14px !important;
            letter-spacing: 0.3px !important;
            color: #e2e8f0 !important;
            position: relative;
            transform: translateY(0) !important;
            transition: color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        text-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .nav-link:hover {
            color: #ffffff !important;
            transform: translateY(-1px) !important;
            text-shadow: 0 0 16px rgba(255, 255, 255, 0.4) !important;
        }

        #main-header.header-scrolled .nav-link {
            color: #e2e8f0 !important;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.15) !important;
        }

        #main-header.header-scrolled .nav-link:hover {
            color: #ffffff !important;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
        }

        /* HAMBURGER NO MOBILE COM MORPH CINEMÁTICO */
        .hamburger span {
            background-color: #ffffff !important;
            transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        #main-header.header-scrolled .hamburger span {
            background-color: #ffffff !important;
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.4) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            width: 4px;
            height: 4px;
            background: var(--lux-accent);
            border-radius: 50%;
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-link:hover::after {
            transform: translateX(-50%) scale(1);
        }

        /* HERO ARQUITETÔNICO COM FOTO DE FUNDO (FACHADA.JPG) & GRADE MICROSCOPICA */
        .hero {
            position: relative;
            padding-top: 135px !important;
            padding-bottom: 90px !important;
            overflow: hidden;
            background: #0a0a0a !important;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.68) 100%),
                        url('assets/FACHADA.jpg') center / cover no-repeat fixed !important;
            z-index: 0;
            opacity: 1;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: 32px 32px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.5;
        }

        .hero-minimal-container {
            max-width: 1020px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-pill-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 7px 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--lux-border);
            border-radius: 40px;
            font-size: 12px;
            font-weight: 600;
            color: #e2e8f0;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            margin-bottom: 22px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .hero-pill-badge .glow-pulse {
            width: 8px;
            height: 8px;
            background: var(--lux-accent);
            border-radius: 50%;
            box-shadow: 0 0 12px var(--lux-accent);
            position: relative;
        }

        .hero-pill-badge .glow-pulse::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px solid var(--lux-accent);
            animation: pulseRing 2s infinite;
        }

        @keyframes pulseRing {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(2.2); opacity: 0; }
        }

        .hero-minimal-title {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 700;
            line-height: 1.12;
            letter-spacing: -2px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 60%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-minimal-desc {
            font-size: 20px;
            line-height: 1.65;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 32px;
            max-width: 800px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
        }

        .hero-actions-minimal {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn-lux-primary {
            background: #ffffff !important;
            color: #0a0a0a !important;
            padding: 16px 36px !important;
            border-radius: 14px !important;
            font-weight: 600 !important;
            font-size: 15px !important;
            border: 1px solid transparent !important;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15) !important;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none !important;
        }

        .btn-lux-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25) !important;
            background: #f1f5f9 !important;
            text-decoration: none !important;
        }

        .btn-lux-outline {
            background: rgba(255, 255, 255, 0.03) !important;
            color: #ffffff !important;
            padding: 16px 36px !important;
            border-radius: 14px !important;
            font-weight: 600 !important;
            font-size: 15px !important;
            border: 1px solid var(--lux-border) !important;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-lux-outline:hover {
            background: rgba(255, 255, 255, 0.08) !important;
            border-color: rgba(255, 255, 255, 0.25) !important;
            transform: translateY(-2px) !important;
            text-decoration: none !important;
        }

        /* BENTO GRID DE ESTATÍSTICAS NO HERO */
        .hero-stats-bento {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            background: rgba(255, 255, 255, 0.018);
            border: 1px solid var(--lux-border);
            border-radius: 20px;
            backdrop-filter: blur(16px);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .stat-cell {
            padding: 28px 24px;
            border-right: 1px solid var(--lux-border);
            display: grid;
            grid-template-rows: auto 1fr;
            align-content: start;
            gap: 8px;
        }

        .stat-cell:last-child {
            border-right: none;
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
            line-height: 1.2;
            white-space: nowrap;
            display: flex;
            align-items: center;
            min-height: 32px;
        }

        .stat-label {
            font-size: 13.5px;
            color: #94a3b8;
            font-weight: 400;
            line-height: 1.45;
        }

        /* SOBRE COM VÍDEO CINEMÁTICO DE FUNDO & LISTA LIMPA ABAIXO DO TEXTO */
        #sobre.sobre-cinematic-bg {
            position: relative;
            padding: 110px 0 !important;
            overflow: hidden;
        }

        #sobre.sobre-cinematic-bg .sobre-video-full {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.72;
        }

        #sobre.sobre-cinematic-bg::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(15, 23, 42, 0.25) 0%, rgba(10, 10, 10, 0.65) 100%),
                        linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.15) 25%, rgba(10, 10, 10, 0.15) 75%, rgba(10, 10, 10, 0.95) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .sobre-content-single {
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .sobre-content-single h2 {
            font-family: var(--font-display);
            font-size: 44px;
            font-weight: 700;
            letter-spacing: -1.2px;
            color: #ffffff;
            margin-bottom: 28px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
        }

        .sobre-content-single p {
            font-size: 18px;
            line-height: 1.85;
            color: #e2e8f0;
            font-weight: 300;
            margin-bottom: 24px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
        }

        .sobre-check-list-clean {
            list-style: none;
            padding: 36px 0 0 0;
            margin: 40px 0 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .sobre-check-list-clean li {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            font-size: 16px;
            line-height: 1.7;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        }

        .sobre-check-list-clean li svg {
            color: #ffffff;
            flex-shrink: 0;
            margin-top: 2px;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
        }

        .sobre-check-item svg {
            color: var(--lux-accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* BENTO GRID DOS DIFERENCIAIS */
        #diferenciais {
            padding: 130px 0 !important;
        }

        .section-header-clean {
            margin-bottom: 60px;
            text-align: left;
        }

        .section-header-clean h2 {
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -1px;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .section-header-clean p {
            font-size: 18px;
            color: #94a3b8;
            font-weight: 300;
        }

        .grid-bento {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .bento-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid var(--lux-border);
            border-radius: 20px;
            padding: 42px 36px;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .bento-card:hover {
            transform: translateY(-6px);
            border-color: var(--lux-border-hover);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.06);
        }

        .bento-card:hover::before {
            opacity: 1;
        }

        .bento-icon-pill {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            margin-bottom: 26px;
        }

        .bento-card h3 {
            font-family: var(--font-display);
            font-size: 21px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .bento-card p {
            font-size: 15px;
            color: #94a3b8;
            line-height: 1.7;
            font-weight: 300;
            margin: 0;
        }

        /* UNIFORMIZAÇÃO DO FUNDO PRETO DAS SEÇÕES (.consultor-cta e #diferenciais) */
        .consultor-cta,
        #diferenciais,
        #sobre,
        #faq,
        .advisor {
            background: #0a0a0a !important;
        }

        /* CTA CONSULTOR COM DESIGN SUPREMO (GRADIENTE EXECUTIVO COM EMERALD GLOW) */
        .consultor-banner-lux {
            background: radial-gradient(circle at 90% 50%, rgba(16, 185, 129, 0.15) 0%, rgba(22, 22, 22, 0.92) 55%, rgba(10, 10, 10, 0.98) 100%) !important;
            backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            padding: 56px 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .consultor-banner-lux h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        }

        .consultor-banner-lux p {
            font-size: 17px;
            color: #cbd5e1;
            line-height: 1.7;
            font-weight: 300;
            margin: 0;
            max-width: 620px;
        }

        .btn-lux-whatsapp {
            background: #ffffff !important;
            color: #0f172a !important;
            padding: 18px 40px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            font-size: 15px !important;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
            box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15) !important;
            text-decoration: none !important;
        }

        .btn-lux-whatsapp svg {
            color: #10b981 !important;
            transition: transform 0.3s ease;
        }

        .btn-lux-whatsapp:hover {
            background: #10b981 !important;
            color: #ffffff !important;
            transform: translateY(-3px) !important;
            box-shadow: 0 20px 45px rgba(16, 185, 129, 0.4) !important;
        }

        .btn-lux-whatsapp:hover svg {
            color: #ffffff !important;
            transform: scale(1.15);
        }

        /* SEÇÃO ADVISOR COM FUNDO PLATINA SUAVE (#f1f5f9) E CARD EXECUTIVO BRANCO */
        .advisor {
            background: #f1f5f9 !important;
            padding: 90px 0 !important;
            border-top: 1px solid #e2e8f0 !important;
            border-bottom: 1px solid #e2e8f0 !important;
        }

        .advisor .section-title {
            color: #0f172a !important;
            font-family: var(--font-display);
            font-size: 34px !important;
            font-weight: 700 !important;
            letter-spacing: -1px !important;
            margin-bottom: 40px !important;
            text-align: center !important;
        }

        .advisor-card {
            max-width: 860px !important;
            margin: 0 auto !important;
            background: #ffffff !important;
            color: #0f172a !important;
            border: 1px solid #e2e8f0 !important;
            border-radius: 24px !important;
            padding: 56px 64px !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07) !important;
        }

        .advisor-header {
            display: flex !important;
            align-items: center !important;
            gap: 22px !important;
            margin-bottom: 32px !important;
            border-bottom: 1px solid #f1f5f9 !important;
            padding-bottom: 26px !important;
        }

        .advisor-monogram {
            width: 60px !important;
            height: 60px !important;
            border-radius: 16px !important;
            background: #0f172a !important;
            border: 1px solid #1e293b !important;
            color: #ffffff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            font-size: 20px !important;
            font-weight: 700 !important;
            letter-spacing: 1.5px !important;
            flex-shrink: 0 !important;
            box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15) !important;
        }

        .advisor-card h3 {
            font-size: 28px !important;
            font-weight: 700 !important;
            color: #0f172a !important;
            margin: 0 0 6px 0 !important;
            letter-spacing: -0.5px !important;
        }

        .advisor-role {
            display: inline-block !important;
            font-size: 12.5px !important;
            font-weight: 600 !important;
            text-transform: uppercase !important;
            letter-spacing: 2px !important;
            color: #475569 !important;
        }

        .advisor-body p {
            font-size: 16.5px !important;
            line-height: 1.8 !important;
            color: #334155 !important;
            margin-bottom: 20px !important;
            font-weight: 400 !important;
        }

        .advisor-body p:last-child {
            margin-bottom: 0 !important;
        }

        /* FAQ EXECUTIVO SÓBRIO & PRESTÍGIO SUÍÇO (ALTO CONTRASTE & ZERO ESPALHAFATOSO) */
        #faq {
            background: #f1f5f9 !important;
            padding: 100px 0 !important;
            border-top: 1px solid #e2e8f0 !important;
            border-bottom: 1px solid #e2e8f0 !important;
        }

        #faq .section-title {
            color: #0f172a !important;
            font-family: var(--font-display);
            font-size: 36px !important;
            font-weight: 700 !important;
            letter-spacing: -1px !important;
            margin-bottom: 50px !important;
            text-align: center !important;
        }

        #faq .faq-item {
            background: #ffffff !important;
            border: 1px solid #cbd5e1 !important;
            border-radius: 18px !important;
            margin-bottom: 18px !important;
            box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06) !important;
            overflow: hidden !important;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        #faq .faq-summary {
            width: 100% !important;
            text-align: left !important;
            padding: 26px 32px !important;
            font-family: var(--font-display);
            font-size: 18px !important;
            font-weight: 700 !important;
            color: #0f172a !important;
            background: transparent !important;
            border: none !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            letter-spacing: -0.3px !important;
            transition: background 0.3s ease, color 0.3s ease !important;
        }

        #faq .faq-summary:hover {
            background: #f8fafc !important;
            color: #000000 !important;
        }

        #faq .faq-summary::after {
            content: "+" !important;
            font-size: 24px !important;
            font-weight: 300 !important;
            color: #64748b !important;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease !important;
        }

        #faq .faq-item.faq-open {
            border-color: #000000 !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
        }

        #faq .faq-item.faq-open .faq-summary {
            color: #000000 !important;
        }

        #faq .faq-item.faq-open .faq-summary::after {
            content: "−" !important;
            transform: rotate(180deg) !important;
            color: #000000 !important;
        }

        #faq .faq-content p {
            padding: 0 32px 30px 32px !important;
            margin: 0 !important;
            color: #334155 !important;
            font-size: 16.5px !important;
            line-height: 1.8 !important;
            font-weight: 400 !important;
        }

        /* CONTATO DE ALTO LUXO COM FUNDO DE RECEPÇÃO (assets/recepcao.png) */
        #contato.contact {
            position: relative !important;
            padding: 100px 0 !important;
            overflow: hidden !important;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.86) 0%, rgba(18, 18, 18, 0.82) 50%, rgba(10, 10, 10, 0.88) 100%),
                        url('assets/recepcao.png') center / cover no-repeat fixed !important;
        }

        #contato.contact .container {
            position: relative !important;
            z-index: 2 !important;
        }

        .contact-grid-lux {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 50px;
            align-items: start;
        }

        .form-box-lux {
            background: rgba(10, 10, 10, 0.85) !important;
            backdrop-filter: blur(24px) !important;
            border: 1px solid rgba(255, 255, 255, 0.14) !important;
            border-radius: 20px !important;
            padding: 46px !important;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
        }

        .form-box-lux h3 {
            font-family: var(--font-display);
            font-size: 26px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .form-box-lux p {
            color: #94a3b8;
            font-size: 15px;
            margin-bottom: 32px;
        }

        .map-box-lux {
            border-radius: 20px !important;
            overflow: hidden !important;
            border: 1px solid rgba(255, 255, 255, 0.14) !important;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
            background: rgba(10, 10, 10, 0.85) !important;
            backdrop-filter: blur(24px) !important;
        }

        /* ═══════════════════════════════════════════════════════════════
           RESPONSIVIDADE COMPLETA — TABLET (≤1024px)
           ═══════════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .hero-minimal-title { font-size: 44px !important; }
            .hero-minimal-desc { font-size: 17px !important; }
            .hero-stats-bento { grid-template-columns: repeat(2, 1fr) !important; }
            .stat-cell:nth-child(2) { border-right: none !important; }
            .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--lux-border) !important; }
            .sobre-grid-lux, .contact-grid-lux { grid-template-columns: 1fr !important; }
            .grid-bento { grid-template-columns: repeat(2, 1fr) !important; }
            .consultor-banner-lux { flex-direction: column !important; text-align: center !important; padding: 40px 28px !important; }
            .consultor-banner-lux h3 { font-size: 26px !important; }
            .advisor-card { padding: 40px 36px !important; }
            .advisor-card h3 { font-size: 24px !important; }
            .advisor-body p { font-size: 15px !important; }
            #faq .section-title { font-size: 30px !important; }
            .section-header-clean h2 { font-size: 34px !important; }
            .sobre-content-single h2 { font-size: 36px !important; }
            .form-box-lux { padding: 36px 28px !important; }
        }

        /* ═══════════════════════════════════════════════════════════════
           RESPONSIVIDADE COMPLETA — CELULAR (≤768px)
           ═══════════════════════════════════════════════════════════════ */
        @media (max-width: 768px) {

            /* HEADER: cápsula compacta com hamburger */
            #main-header {
                top: 10px !important;
                width: 94% !important;
                height: 62px !important;
                border-radius: 62px !important;
                padding: 0 18px !important;
                overflow: visible !important;
            }
            #main-header.header-scrolled {
                height: 56px !important;
            }
            .logo-white {
                height: 44px !important;
            }
            .nav-menu {
                position: fixed !important;
                top: 74px !important;
                left: 50% !important;
                transform: translateX(-50%) translateY(-20px) !important;
                width: 90% !important;
                max-width: 420px !important;
                height: auto !important;
                background: rgba(15, 20, 32, 0.88) !important;
                backdrop-filter: blur(40px) saturate(180%) !important;
                -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
                flex-direction: column !important;
                align-items: stretch !important;
                justify-content: flex-start !important;
                padding: 12px 8px !important;
                gap: 4px !important;
                border-radius: 24px !important;
                border: 1px solid rgba(255, 255, 255, 0.18) !important;
                box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
                opacity: 0 !important;
                visibility: hidden !important;
                pointer-events: none !important;
                transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.65s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1), top 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
                z-index: 1001 !important;
                list-style: none !important;
            }
            #main-header.header-scrolled .nav-menu {
                top: 68px !important;
                background: rgba(10, 10, 10, 0.95) !important;
                border-color: rgba(255, 255, 255, 0.24) !important;
                box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 255, 255, 0.08) !important;
            }
            .nav-menu.active {
                opacity: 1 !important;
                visibility: visible !important;
                pointer-events: auto !important;
                transform: translateX(-50%) translateY(0) !important;
            }
            .nav-menu li {
                width: 100% !important;
                text-align: center !important;
            }
            .nav-link {
                font-size: 16px !important;
                font-weight: 600 !important;
                letter-spacing: 0.4px !important;
                color: #ffffff !important;
                display: block !important;
                padding: 16px 20px !important;
                border-radius: 14px !important;
                transition: color 0.2s ease, background 0.2s ease !important;
                text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
            }
            .nav-link:hover {
                color: #ffffff !important;
                background: rgba(255, 255, 255, 0.06) !important;
            }
            .nav-link::after {
                display: none !important;
            }
            .btn-nav-fale {
                background: #ffffff !important;
                color: #0a0a0a !important;
                font-size: 14px !important;
                height: 44px !important;
                padding: 0 28px !important;
                border-radius: 44px !important;
                margin: 8px 20px 12px 20px !important;
                width: calc(100% - 40px) !important;
            }
            .hamburger {
                display: flex !important;
                z-index: 1002 !important;
            }

            /* CONTAINER: padding lateral para respiro nas bordas */
            .container {
                width: 92% !important;
                padding-left: 16px !important;
                padding-right: 16px !important;
            }

            /* HERO: texto e botões empilhados (com textos mais baixos e botões deslocados para baixo) */
            .hero {
                padding-top: 160px !important;
                padding-bottom: 60px !important;
            }
            .hero::before {
                background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.68) 100%),
                            url('assets/FACHADA.jpg') center / cover no-repeat scroll !important;
            }
            .hero-minimal-container {
                padding: 0 4px !important;
            }
            .hero-minimal-title {
                font-size: 30px !important;
                line-height: 1.2 !important;
                letter-spacing: -0.8px !important;
                word-break: break-word !important;
                margin-bottom: 20px !important;
            }
            .hero-minimal-desc {
                font-size: 16px !important;
                line-height: 1.65 !important;
                color: #ffffff !important;
                font-weight: 500 !important;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
                margin-bottom: 50px !important;
            }
            .hero-actions-minimal {
                flex-direction: column !important;
                width: 100% !important;
                gap: 14px !important;
            }
            .hero-actions-minimal a,
            .btn-lux-primary,
            .btn-lux-outline {
                width: 100% !important;
                justify-content: center !important;
                padding: 15px 20px !important;
                font-size: 14px !important;
                box-sizing: border-box !important;
            }
            .hero-stats-bento {
                grid-template-columns: repeat(2, 1fr) !important;
                border-radius: 14px !important;
                margin-top: 40px !important;
            }
            .stat-cell {
                padding: 14px 12px !important;
                border-right: 1px solid var(--lux-border) !important;
                border-bottom: 1px solid var(--lux-border) !important;
            }
            .stat-cell:nth-child(2), .stat-cell:nth-child(4) {
                border-right: none !important;
            }
            .stat-cell:nth-child(3), .stat-cell:nth-child(4) {
                border-bottom: none !important;
            }
            .stat-num {
                font-size: 16px !important;
                min-height: auto !important;
            }
            .stat-label {
                font-size: 11.5px !important;
                line-height: 1.35 !important;
            }

            /* SOBRE: padding e fontes compactados */
            #sobre.sobre-cinematic-bg {
                padding: 80px 0 !important;
            }
            .sobre-content-single h2 {
                font-size: 30px !important;
                margin-bottom: 22px !important;
            }
            .sobre-content-single p {
                font-size: 16px !important;
                line-height: 1.75 !important;
            }
            .sobre-check-list-clean {
                padding: 24px 0 0 0 !important;
                margin: 28px 0 0 0 !important;
                gap: 18px !important;
            }
            .sobre-check-list-clean li {
                font-size: 14.5px !important;
                gap: 12px !important;
            }
            .sobre-check-list-clean li svg {
                width: 20px !important;
                height: 20px !important;
            }

            /* TICKER/PARCEIROS BANNER */
            .parceiros-banner {
                padding: 16px 0 !important;
            }
            .parceiro-item {
                font-size: 13px !important;
            }

            /* ADVISOR */
            .advisor {
                padding: 60px 0 !important;
            }
            .advisor .section-title {
                font-size: 26px !important;
                margin-bottom: 28px !important;
            }
            .advisor-card {
                padding: 22px 18px !important;
                border-radius: 16px !important;
            }
            .advisor-header {
                flex-direction: column !important;
                text-align: center !important;
                gap: 12px !important;
                margin-bottom: 20px !important;
                padding-bottom: 16px !important;
            }
            .advisor-monogram {
                width: 44px !important;
                height: 44px !important;
                font-size: 16px !important;
                border-radius: 12px !important;
            }
            .advisor-title-box {
                text-align: center !important;
            }
            .advisor-card h3 {
                font-size: 20px !important;
            }
            .advisor-role {
                font-size: 11px !important;
                letter-spacing: 1.5px !important;
            }
            .advisor-body p {
                font-size: 14px !important;
                line-height: 1.65 !important;
                margin-bottom: 14px !important;
            }

            /* CONSULTOR CTA */
            .consultor-banner-lux {
                flex-direction: column !important;
                text-align: center !important;
                padding: 24px 18px !important;
                border-radius: 16px !important;
                gap: 18px !important;
            }
            .consultor-banner-lux h3 {
                font-size: 19px !important;
                margin-bottom: 8px !important;
            }
            .consultor-banner-lux p {
                font-size: 13.5px !important;
                line-height: 1.6 !important;
            }
            .btn-lux-whatsapp {
                width: 100% !important;
                justify-content: center !important;
                padding: 14px 22px !important;
                font-size: 14px !important;
            }

            /* BENTO GRID DIFERENCIAIS */
            #diferenciais {
                padding: 80px 0 !important;
            }
            .section-header-clean {
                margin-bottom: 36px !important;
            }
            .section-header-clean h2 {
                font-size: 28px !important;
            }
            .section-header-clean p {
                font-size: 15px !important;
            }
            .grid-bento {
                grid-template-columns: 1fr !important;
                gap: 14px !important;
            }
            .bento-card {
                padding: 20px 18px !important;
                border-radius: 14px !important;
            }
            .bento-card h3 {
                font-size: 17px !important;
                margin-bottom: 6px !important;
            }
            .bento-card p {
                font-size: 13.5px !important;
                line-height: 1.6 !important;
            }
            .bento-icon-pill {
                width: 38px !important;
                height: 38px !important;
                border-radius: 10px !important;
                margin-bottom: 12px !important;
            }
            .bento-icon-pill svg {
                width: 18px !important;
                height: 18px !important;
            }

            /* FAQ */
            #faq {
                padding: 70px 0 !important;
            }
            #faq .section-title {
                font-size: 26px !important;
                margin-bottom: 32px !important;
            }
            #faq .faq-item {
                border-radius: 14px !important;
                margin-bottom: 12px !important;
            }
            #faq .faq-summary {
                padding: 16px 18px !important;
                font-size: 15px !important;
            }
            #faq .faq-summary::after {
                font-size: 18px !important;
            }
            #faq .faq-content p {
                padding: 0 18px 18px 18px !important;
                font-size: 13.5px !important;
                line-height: 1.65 !important;
            }

            /* CONTATO */
            #contato.contact {
                padding: 70px 0 !important;
                background-attachment: scroll !important;
            }
            .contact-grid-lux {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            .form-box-lux {
                padding: 22px 18px !important;
                border-radius: 16px !important;
            }
            .form-box-lux h3 {
                font-size: 20px !important;
                margin-bottom: 8px !important;
            }
            .form-box-lux p {
                font-size: 13.5px !important;
                margin-bottom: 18px !important;
            }
            .input-row {
                grid-template-columns: 1fr !important;
            }
            .map-box-lux {
                border-radius: 16px !important;
            }
            .map-box-lux iframe {
                height: 240px !important;
            }

            /* FOOTER */
            .footer-logo-wrap img, .footer-logo-wrap svg {
                height: 70px !important;
            }
            .footer-middle {
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }
            .footer-nav {
                justify-content: center !important;
                flex-wrap: wrap !important;
            }
            .footer-credits {
                flex-direction: column !important;
                gap: 8px !important;
                text-align: center !important;
            }

            /* COOKIE BANNER */
            .cookie-content {
                flex-direction: column !important;
                text-align: center !important;
                gap: 15px !important;
            }
            .cookie-buttons {
                width: 100% !important;
                justify-content: center !important;
            }
            .cookie-banner {
                height: auto !important;
                padding: 16px 0 !important;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           RESPONSIVIDADE COMPLETA — CELULAR PEQUENO (≤480px)
           ═══════════════════════════════════════════════════════════════ */
        @media (max-width: 480px) {
            #main-header {
                width: 96% !important;
                padding: 0 14px !important;
                height: 58px !important;
                border-radius: 58px !important;
            }
            .logo-white {
                height: 42px !important;
            }
            .hero {
                padding-top: 145px !important;
                padding-bottom: 60px !important;
            }
            .hero-minimal-title {
                font-size: 27px !important;
                letter-spacing: -0.5px !important;
                margin-bottom: 18px !important;
            }
            .hero-minimal-desc {
                font-size: 15.5px !important;
                color: #ffffff !important;
                font-weight: 500 !important;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95) !important;
                margin-bottom: 44px !important;
            }
            .btn-lux-primary,
            .btn-lux-outline {
                padding: 14px 20px !important;
                font-size: 14px !important;
                border-radius: 12px !important;
            }
            .hero-stats-bento {
                grid-template-columns: repeat(2, 1fr) !important;
                border-radius: 12px !important;
                margin-top: 36px !important;
            }
            .stat-cell {
                padding: 12px 10px !important;
            }
            .stat-num {
                font-size: 15px !important;
            }
            .stat-label {
                font-size: 11px !important;
            }
            .sobre-content-single h2 {
                font-size: 26px !important;
            }
            .sobre-content-single p {
                font-size: 15px !important;
            }
            .advisor-card {
                padding: 18px 14px !important;
            }
            .advisor-card h3 {
                font-size: 18px !important;
            }
            .advisor-body p {
                font-size: 13.5px !important;
            }
            .consultor-banner-lux {
                padding: 20px 14px !important;
            }
            .consultor-banner-lux h3 {
                font-size: 18px !important;
            }
            .section-header-clean h2 {
                font-size: 24px !important;
            }
            .bento-card {
                padding: 16px 14px !important;
                border-radius: 12px !important;
            }
            .bento-card h3 {
                font-size: 16px !important;
            }
            .bento-card p {
                font-size: 13px !important;
            }
            #faq .section-title {
                font-size: 24px !important;
            }
            #faq .faq-summary {
                padding: 14px 14px !important;
                font-size: 14px !important;
            }
            #faq .faq-content p {
                padding: 0 14px 16px 14px !important;
                font-size: 13px !important;
            }
            .form-box-lux {
                padding: 18px 14px !important;
            }
            .form-box-lux h3 {
                font-size: 18px !important;
            }
            .map-box-lux iframe {
                height: 200px !important;
            }
            .footer-logo-wrap img, .footer-logo-wrap svg {
                height: 50px !important;
            }
        }

        /* FOOTER COM LOGO DE IMPONÊNCIA CORPORATIVA */
        .footer-logo-wrap {
            width: auto !important;
            max-width: 600px !important;
            margin: 0 auto 40px auto !important;
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
        }

        .footer-logo-wrap img, .footer-logo-wrap svg {
            width: auto !important;
            height: 130px !important;
            max-width: 100% !important;
            object-fit: contain !important;
        }

        /* CRÉDITOS DO RODAPÉ COM LEITURA CONFORTÁVEL E EXECUTIVA */
        .footer-credits, .footer-credits small, .footer-dev, .footer-dev small {
            font-size: 11px !important;
            color: #71717a !important;
            line-height: 1.6 !important;
            letter-spacing: 0.3px !important;
        }

        .footer-dev a {
            font-size: 11px !important;
            color: #71717a !important;
            font-weight: 500 !important;
            text-decoration: underline !important;
        }

        .footer-dev a:hover {
            color: #ffffff !important;
        }

        /* BOTÕES FLUTUANTES NO INDEX COPY */
        .back-to-top.show,
        .whatsapp-float.show {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) scale(1) !important;
        }

        .whatsapp-float:hover {
            transform: translateY(-4px) scale(1.06) !important;
            box-shadow: 0 16px 35px rgba(37, 211, 102, 0.45) !important;
            background: #22c35e !important;
        }

        .back-to-top:hover {
            transform: translateY(-4px) scale(1.06) !important;
            background: #262626 !important;
        }
