        /* ============================================================
           DESIGN TOKENS (Identidade Exclusiva InvestHunter)
        ============================================================ */
        :root {
            --bg-dark: #07090e;
            --bg-surface: #0e121a;
            --bg-card: #131924;
            --electric-blue: #0052ff;
            --neon-cyan: #00d2ff;
            --text-main: #f3f5f9;
            --text-muted: #8fa0dd;
            --border-glow: rgba(0, 82, 255, 0.15);
            --font-display: 'Space Grotesk', sans-serif;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --r-bezier: cubic-bezier(.25, 1, .5, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        .wrap {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .eyebrow {
            font-family: var(--font-display);
            color: var(--neon-cyan);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 12px;
            display: block;
        }

        /* ============================================================
           HEADER
        ============================================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s;
        }

        header.solid {
            background: rgba(7, 9, 14, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 14px 0;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-txt {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
        }

        .logo-txt span {
            color: var(--electric-blue);
        }

        .nav-list {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-list a {
            color: var(--text-muted);
            font-size: 13px;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.25s;
        }

        .nav-list a:hover {
            color: #fff;
        }

        .btn-nav {
            background: var(--electric-blue);
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(0, 82, 255, 0.3);
        }

        /* ============================================================
           HERO
        ============================================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 82, 255, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }

        .hero-title em {
            font-style: normal;
            background: linear-gradient(90deg, #fff, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-p {
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 36px;
            max-width: 540px;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-main {
            background: var(--electric-blue);
            color: #fff;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 24px rgba(0, 82, 255, 0.3);
            transition: all 0.3s;
        }

        .btn-main:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 82, 255, 0.45);
        }

        .btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            perspective: 1000px;
        }

        .tech-sphere {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.1), rgba(0, 82, 255, 0.4) 70%, #000 100%);
            box-shadow:
                inset -20px -20px 50px rgba(0, 0, 0, 0.9),
                0 0 60px rgba(0, 82, 255, 0.3);
            position: relative;
            transform-style: preserve-3d;
            animation: floatSphere 8s ease-in-out infinite alternate;
        }

        .tech-sphere::before,
        .tech-sphere::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            border-radius: 50%;
            border: 1px solid rgba(0, 210, 255, 0.2);
            transform: translate(-50%, -50%) rotateX(70deg);
        }

        .tech-sphere::before {
            width: 140%;
            height: 140%;
            border-top-color: var(--neon-cyan);
            animation: orbit 15s linear infinite;
        }

        .tech-sphere::after {
            width: 180%;
            height: 180%;
            border-bottom-color: var(--electric-blue);
            animation: orbit 25s linear infinite reverse;
        }

        @keyframes floatSphere {
            0% {
                transform: translateY(0px) rotateY(0deg);
            }

            100% {
                transform: translateY(-20px) rotateY(10deg);
            }
        }

        @keyframes orbit {
            100% {
                transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
            }
        }

        /* ============================================================
           QUOTE SECTION
        ============================================================ */
        .quote-section {
            padding: 120px 0;
            background: #040508;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.02);
        }

        .quote-text {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 400;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        /* ============================================================
           LOGO TICKER
        ============================================================ */
        .logo-ticker-section {
            background: var(--bg-dark);
            padding: 40px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        }

        .ticker-wrap {
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }

        .ticker-track {
            display: flex;
            width: calc(200px * 10);
            animation: scrollTicker 20s linear infinite;
        }

        .ticker-track:hover {
            animation-play-state: paused;
        }

        .ticker-item {
            width: 200px;
            flex-shrink: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0.5;
            transition: opacity 0.3s;
            filter: grayscale(100%);
        }

        .ticker-item:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .ticker-logo {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 2px;
            white-space: nowrap;
        }

        @keyframes scrollTicker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 5));
            }
        }

        /* ============================================================
           PILARETES DE SOLUÇÃO
        ============================================================ */
        .pillars {
            padding: 100px 0;
            background: var(--bg-surface);
            position: relative;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .pillar-card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.02);
            position: relative;
            transition: all 0.4s var(--r-bezier);
        }

        .pillar-card:hover {
            transform: translateY(-6px);
            border-color: rgba(0, 82, 255, 0.25);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .pillar-icon {
            font-size: 24px;
            color: var(--electric-blue);
            margin-bottom: 20px;
            display: block;
        }

        .pillar-card h3 {
            font-family: var(--font-display);
            font-size: 18px;
            margin-bottom: 12px;
        }

        .pillar-card p {
            color: var(--text-muted);
            font-size: 13.5px;
            line-height: 1.6;
        }

        /* ============================================================
           CAROUSEL — PROGRAMAS DE FOMENTO
        ============================================================ */
        .carousel-section {
            padding: 100px 0;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .carousel-wrap {
            position: relative;
            user-select: none;
            margin: 40px auto;
            overflow: hidden;
            width: 100%;
            padding: 10px 0;
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .carousel-track {
            display: flex;
            will-change: transform;
            animation: scrollCards 30s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .carousel-slide {
            flex: 0 0 380px;
            max-width: 380px;
            padding: 0 12px;
        }

        .slide-inner {
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.03);
            padding: 40px 32px;
            border-radius: 12px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px;
            transition: border-color 0.4s, box-shadow 0.4s;
        }

        .slide-inner:hover {
            border-color: rgba(0, 82, 255, 0.25);
            box-shadow: 0 12px 40px rgba(0, 82, 255, 0.1);
        }

        .slide-head h4 {
            font-family: var(--font-display);
            font-size: 22px;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .slide-head .tag {
            font-size: 10px;
            text-transform: uppercase;
            color: var(--neon-cyan);
            font-weight: 600;
            letter-spacing: 1.5px;
        }

        .slide-body {
            color: var(--text-muted);
            font-size: 13.5px;
            line-height: 1.6;
            margin: 20px 0;
        }

        .slide-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 20px;
        }

        .metric {
            font-size: 12px;
            color: #fff;
        }

        .metric strong {
            display: block;
            font-size: 16px;
            color: var(--neon-cyan);
            font-family: var(--font-display);
        }

        @keyframes scrollCards {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ============================================================
           COMO ATUAMOS (Linha do Tempo Fluida)
        ============================================================ */
        .process-section {
            padding: 100px 0;
            background: var(--bg-surface);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
            position: relative;
        }

        .process-card {
            position: relative;
        }

        .process-step {
            font-family: var(--font-display);
            font-size: 40px;
            font-weight: 700;
            color: rgba(0, 82, 255, 0.1);
            line-height: 1;
            margin-bottom: 12px;
        }

        .process-card h4 {
            font-size: 15px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .process-card p {
            color: var(--text-muted);
            font-size: 13px;
            line-height: 1.6;
        }

        /* ============================================================
           SEÇÃO DE CONTATO IMERSIVA (Dark Theme c/ Nova Imagem)
        ============================================================ */
        .contact-section {
            position: relative;
            background-color: var(--bg-dark);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .contact-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80%;
            /* Caminho atualizado para a imagem que você enviou */
            background: url('img/bg-contato.jpg') center bottom / cover no-repeat;
            opacity: 0.6;
            z-index: 1;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
            mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
            pointer-events: none;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            position: relative;
            z-index: 2;
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 46px);
            font-weight: 500;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .contact-desc {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
            max-width: 400px;
        }

        .minimal-form {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 500px;
            margin-left: auto;
        }

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input-group label {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-main);
        }

        .input-group input,
        .input-group textarea {
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-family: var(--font-body);
            font-size: 14px;
            padding: 8px 0;
            outline: none;
            transition: border-color 0.3s;
            resize: vertical;
        }

        .input-group input::placeholder,
        .input-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.2);
        }

        .input-group input:focus,
        .input-group textarea:focus {
            border-bottom-color: var(--electric-blue);
        }

        .privacy-note {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: -10px;
        }

        .privacy-note a {
            color: var(--electric-blue);
            text-decoration: none;
        }

        .btn-submit {
            background: #ffffff;
            color: #000000;
            border: none;
            border-radius: 40px;
            padding: 18px 36px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            width: fit-content;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: var(--neon-cyan);
            transform: translateY(-2px);
        }

        /* ============================================================
           RESPONSIVIDADE
        ============================================================ */
        @media (max-width: 1024px) {
            .carousel-slide {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .pillars-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .minimal-form {
                margin-left: 0;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-p {
                margin-left: auto;
                margin-right: auto;
            }

            .cta-group {
                justify-content: center;
            }

            .hero-visual {
                display: none;
            }

            .carousel-slide {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .nav-list {
                display: none;
            }
        }
