
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #D4A017;
            --secondary: #111111;
            --accent: #333333;
            --dark: #111111;
            --light: #e8e8e8;
            --text-dark: #1a1a1a;
            --text-light: #555555;
            --border: #e0e0e0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: #e8e8e8;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* HEADER */
        header {
            background: #e8e8e8;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        nav a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 14px;
        }

        nav a:hover {
            color: var(--primary);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* HERO */
        .hero {
            background: linear-gradient(135deg, #111111 0%, #1a1500 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .hero-cta {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }

        .btn {
            padding: 15px 30px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: #111111;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-weight: 700;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,215,0,0.4);
        }

        .btn-secondary {
            background: #111111;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-weight: 700;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255,215,0,0.4);
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .pillar {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: transform 0.3s;
        }

        .pillar:hover {
            transform: scale(1.05);
        }

        .pillar i {
            font-size: 32px;
            display: block;
            margin-bottom: 10px;
        }

        .pillar h3 {
            font-size: 16px;
        }

        /* SEÇÕES */
        section {
            padding: 80px 20px;
            background: #e8e8e8;
        }

        section.light {
            background: #e8e8e8;
        }

        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 50px;
        }

        /* CONTEÚDO */
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .content-grid img {
            width: 100%;
            border-radius: 12px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .benefit-card {
            background: #e8e8e8;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
        }

        .benefit-card i {
            color: var(--secondary);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .benefit-card h4 {
            margin-bottom: 10px;
            color: var(--primary);
        }

        .steps {
            list-style: none;
            margin: 30px 0;
        }

        .steps li {
            padding: 15px 0 15px 50px;
            position: relative;
            margin-bottom: 15px;
        }

        .steps li:before {
            content: attr(data-step);
            position: absolute;
            left: 0;
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .card {
            background: #e8e8e8;
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-info {
            padding: 25px;
            background: #e8e8e8;
        }

        .gallery-info h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }

        .gallery-tag {
            display: inline-block;
            background: var(--light);
            color: var(--primary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            margin-top: 8px;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .video-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .video-item iframe {
            width: 100%;
            height: 300px;
            border: none;
        }

        .video-info {
            padding: 20px;
            background: #e8e8e8;
        }

        .video-info h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .testimonial {
            background: #e8e8e8;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid var(--secondary);
        }

        .testimonial-text {
            margin-bottom: 20px;
            color: var(--text-light);
            font-style: italic;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary);
        }

        .faq-items {
            max-width: 700px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #333333;
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: #1a1a1a;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #222222;
        }

        .faq-answer {
            padding: 20px;
            background: #1a1a1a;
            color: #bbbbbb;
            display: none;
            border-top: 1px solid #333333;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question {
            background: #222222;
        }

        /* FORMULÁRIO */
        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        label {
            margin-bottom: 8px;
            font-weight: 600;
            color: #1a1a1a;
        }

        input, textarea, select {
            padding: 12px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            background: #e8e8e8;
            color: #1a1a1a;
        }

        textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
        }

        .form-checkbox input {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .form-submit {
            grid-column: 1 / -1;
            margin-top: 20px;
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: white;
            padding: 50px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-section p {
            margin-bottom: 10px;
            color: #ccc;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--dark);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 30px;
            text-align: center;
            color: #999;
        }

        .footer-logo {
            height: 40px;
            width: auto;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            nav { display: none; }
            .mobile-menu { display: flex !important; }
            .container { padding: 0 14px !important; }
            section { padding: 20px 0 !important; }
            .section-title { font-size: 20px !important; margin-bottom: 4px !important; }
            .section-subtitle { font-size: 13px !important; margin-bottom: 14px !important; }
            h1 { font-size: 24px !important; line-height: 1.2 !important; }
            h2 { font-size: 18px !important; }
            h3 { font-size: 15px !important; }
            .hero h1 { font-size: 26px; }
            .hero-cta { grid-template-columns: 1fr; }
            .pillars { grid-template-columns: repeat(2, 1fr); }
            .btn { width: 100%; text-align: center; box-sizing: border-box; }
            .simulator-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
            [style*="display: flex; align-items: center; gap: 20px; flex-shrink: 0"] { flex-wrap: wrap !important; justify-content: center !important; }
            [style*="grid-template-columns: 1fr 1fr; gap: 60px"] { grid-template-columns: 1fr !important; gap: 20px !important; }
            [style*="height: 400px"][style*="border-radius: 16px"] { height: 200px !important; }
            .content-grid { grid-template-columns: 1fr !important; gap: 16px; }
            table { font-size: 11px !important; }
            table td, table th { padding: 6px 4px !important; }
            [style*="grid-template-columns: repeat(5, 1fr)"] { grid-template-columns: 1fr !important; }
            #cf-arrow { display: none !important; }
            [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: 1fr 1fr !important; }
            [style*="grid-template-columns: 1fr 1fr 1fr 1.4fr"] { grid-template-columns: 1fr 1fr !important; }
            [style*="grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: 1fr 1.3fr"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 32px"] { grid-template-columns: 1fr !important; }
            [style*="display: flex; align-items: center; gap: 24px"] { flex-direction: column !important; gap: 14px !important; }
            .cards-grid { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: repeat(3, 1fr); gap: 20px"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: repeat(3, 1fr); gap: 12px"] { grid-template-columns: 1fr !important; }
            .testimonial:nth-child(n+4) { display: none; }
            [style*="grid-template-columns: 1fr; gap: 24px; max-width: 540px"] { max-width: 100% !important; }
            [style*="display: flex; flex-wrap: wrap; justify-content: center"] { gap: 8px !important; }
            [style*="border: 1px solid var(--primary); border-radius: 10px; padding: 10px 18px"] { padding: 8px 12px !important; }
            [style*="display: flex"][style*="justify-content: space-between"][style*="align-items: center"] { flex-direction: column !important; gap: 14px !important; text-align: center !important; }
            iframe { max-width: 100% !important; }
            .footer-content { grid-template-columns: 1fr !important; gap: 24px !important; }
            .form-row { grid-template-columns: 1fr !important; }
            [style*="gap: 24px"] { gap: 10px !important; }
            [style*="gap: 20px"] { gap: 8px !important; }
            [style*="gap: 16px"] { gap: 8px !important; }
            [style*="margin-bottom: 50px"] { margin-bottom: 14px !important; }
            [style*="margin-bottom: 40px"] { margin-bottom: 12px !important; }
            [style*="margin-bottom: 60px"] { margin-bottom: 16px !important; }
            [style*="margin-bottom: 32px"] { margin-bottom: 12px !important; }
            [style*="margin-bottom: 24px"] { margin-bottom: 10px !important; }
            [style*="margin-bottom: 20px"] { margin-bottom: 8px !important; }
            [style*="padding-top:"] { padding-top: 16px !important; }
            [style*="padding-bottom:"] { padding-bottom: 16px !important; }
            a[style*="position: fixed"][style*="width: 58px"] { width: 48px !important; height: 48px !important; bottom: 16px !important; right: 16px !important; }
            #ig-section { display: none !important; }
            [style*="grid-template-columns: repeat(3, 1fr); gap: 24px"] { grid-template-columns: 1fr !important; gap: 16px !important; }
            [style*="grid-template-columns: repeat(3, 1fr); gap: 16px"] { grid-template-columns: 1fr !important; gap: 12px !important; }
            [style*="grid-template-columns: 1.4fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: 1.4fr 1fr 1fr"] > div:nth-child(n+3) { display: none !important; }
            [style*="grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px"] { grid-template-columns: 1fr !important; }
            [style*="padding: 28px 24px"] { padding: 14px 12px !important; }
            [style*="padding: 20px 18px"] { padding: 12px 12px !important; }
            [style*="padding: 24px"] { padding: 14px 12px !important; }
            [style*="padding: 32px"] { padding: 16px 14px !important; }
            .header-content { position: relative !important; }
            #investimentos { display: none !important; }
            #parcerias { display: none !important; }
            #outras-solucoes { display: none !important; }
            .pillars { display: none !important; }
            nav a[href="#investimentos"], nav a[href="#parcerias"], nav a[href="#outras-solucoes"] { display: none !important; }
            #quem-somos .qs-grid { grid-template-columns: 1fr !important; }
            #quem-somos .qs-imgs { height: 260px !important; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 22px !important; }
            .pillars { grid-template-columns: 1fr 1fr; }
            [style*="grid-template-columns: 1fr 1fr 1fr 1.4fr"] { grid-template-columns: 1fr !important; }
            [style*="grid-template-columns: repeat(4, 1fr)"] { grid-template-columns: 1fr !important; }
        }
        .icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; fill: currentColor; overflow: visible; flex-shrink: 0; }
