/* ===== VARIÁVEIS CSS (CORES E TIPOGRAFIA) ===== */
        :root {
            /* Cores extraídas da Logo */
            --cor-primaria: #0d1522; /* Azul Marinho Escuro da Logo */
            --cor-secundaria: #b88b48; /* Dourado/Bronze da Logo */
            
            /* Paleta Base (TEMA CLARO) */
            --cor-fundo: #ffffff; /* Fundo principal */
            --cor-surface: #f8fafc; /* Fundo de cards e seções elevadas */
            --cor-surface-hover: #f1f5f9;
            
            --cor-texto: #0f172a; /* Texto principal escuro */
            --cor-texto-mutado: #475569; /* Texto secundário escuro */
            
            --cor-destaque: #966f33; /* Variação mais escura do Dourado para hover */
            
            /* Tipografia */
            --font-principal: 'Plus Jakarta Sans', sans-serif;
            
            /* Espaçamentos e Estrutura */
            --container-width: 1280px;
            --section-padding: 8rem 2rem;
            --border-radius: 16px;
            
            /* Animações /* EDITE AQUI: velocidades padrão */
            --transition-speed: 0.3s;
        }

        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: initial; /* Lenis takes over */
        }

        body {
            font-family: var(--font-principal);
            background-color: var(--cor-fundo);
            color: var(--cor-texto);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Utility Classes */
        .text-gradient {
            background: linear-gradient(135deg, var(--cor-secundaria), #e8c484);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--cor-texto-mutado);
            max-width: 600px;
            margin-bottom: 4rem;
        }

        /* ===== BOTÕES ===== */
        .btn-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all var(--transition-speed) ease;
            cursor: pointer;
            border: none;
            gap: 0.5rem;
        }

        .btn-primary {
            background-color: var(--cor-secundaria);
            color: var(--cor-primaria);
            box-shadow: 0 4px 20px rgba(184, 139, 72, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--cor-destaque);
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(184, 139, 72, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--cor-texto);
            border: 1px solid rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            border-color: var(--cor-secundaria);
            color: var(--cor-secundaria);
            transform: translateY(-2px);
        }

        /* Ícone WhatsApp SVG */
        .wpp-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* ===== SEÇÃO: NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 0;
            z-index: 100;
            transition: all 0.4s ease;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 1rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

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

        .logo-placeholder {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        .logo-mark {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, var(--cor-primaria), var(--cor-secundaria));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .nav-collapse {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--cor-texto-mutado);
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--cor-secundaria);
        }

        .nav-ctas {
            display: flex;
            gap: 1rem;
        }

        /* Hamburger menu for mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background-color: var(--cor-texto);
            transition: 0.3s;
        }

        /* ===== SEÇÃO: HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px; /* Space for navbar */
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(184, 139, 72, 0.15) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        /* Vídeo de fundo do Hero */
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.16;
            pointer-events: none;
        }
        /* Suaviza as bordas do vídeo para o fundo branco */
        .hero-video-overlay {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, var(--cor-fundo) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 5.5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: var(--cor-texto-mutado);
            margin-bottom: 3rem;
            max-width: 650px;
        }

        /* ===== SEÇÃO: NÚMEROS (PROVA SOCIAL) ===== */
        .numbers {
            padding: 4rem 0;
            background-color: var(--cor-surface);
            border-top: 1px solid rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            position: relative;
            z-index: 2;
        }

        .numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .number-item h3 {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            color: var(--cor-secundaria);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .number-item p {
            color: var(--cor-texto-mutado);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        /* ===== SEÇÃO: SERVIÇOS ===== */
        .services {
            padding: var(--section-padding);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            background-color: var(--cor-surface);
            padding: 3rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(184, 139, 72, 0.1), transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(184, 139, 72, 0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

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

        .service-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(184, 139, 72, 0.1);
            color: var(--cor-secundaria);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--cor-texto-mutado);
        }

        /* ===== SEÇÃO: MÉTODO / PROCESSO ===== */
        .process {
            padding: var(--section-padding);
            background-color: #f1f5f9; /* Fundo mais escuro no tema claro */
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        /* Linha conectora */
        .process-steps::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--cor-secundaria), transparent);
            opacity: 0.3;
        }

        .process-step {
            display: flex;
            gap: 3rem;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--cor-primaria);
            border: 2px solid var(--cor-secundaria);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            color: var(--cor-secundaria);
            flex-shrink: 0;
            box-shadow: 0 0 20px rgba(184, 139, 72, 0.2);
        }

        .step-content {
            background-color: var(--cor-surface);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            flex-grow: 1;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--cor-primaria);
        }
        
        .step-content p {
            color: var(--cor-texto-mutado);
        }

        /* ===== SEÇÃO: CASES / RESULTADOS ===== */
        .cases {
            padding: var(--section-padding);
        }

        .cases-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .case-card {
            border-radius: var(--border-radius);
            overflow: hidden;
            background-color: var(--cor-surface);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            group: case;
        }

        .case-image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(45deg, #e2e8f0, #f1f5f9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cor-texto-mutado);
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }
        
        .case-image-placeholder::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
        }

        .case-content {
            padding: 2.5rem;
        }

        .case-tags {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .case-tag {
            background-color: rgba(184, 139, 72, 0.1);
            color: var(--cor-secundaria);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .case-content h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .case-metrics {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        .case-metric h4 {
            color: var(--cor-secundaria);
            font-size: 1.5rem;
            font-weight: 800;
        }

        .case-metric p {
            font-size: 0.85rem;
            color: var(--cor-texto-mutado);
        }

        /* ===== SEÇÃO: DEPOIMENTOS ===== */
        .testimonials {
            padding: var(--section-padding);
            background-color: #f1f5f9;
        }

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

        .testimonial-card {
            background-color: var(--cor-surface);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 3rem;
            color: rgba(184, 139, 72, 0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #2a3b5c;
        }

        .author-info h4 {
            font-size: 1rem;
            color: var(--cor-primaria);
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--cor-texto-mutado);
        }

        /* ===== SEÇÃO: FAQ ===== */
        .faq {
            padding: var(--section-padding);
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 8px;
            background-color: var(--cor-surface);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: var(--cor-surface-hover);
        }

        .faq-icon {
            color: var(--cor-secundaria);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            color: var(--cor-texto-mutado);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem 1.5rem;
            max-height: 500px; /* arbitrary large value */
        }

        /* ===== SEÇÃO: CTA FINAL ===== */
        .cta-final {
            padding: 6rem 2rem;
            margin: 4rem auto;
            max-width: var(--container-width);
            background: linear-gradient(135deg, var(--cor-surface), #e2e8f0);
            border-radius: 24px;
            text-align: center;
            border: 1px solid rgba(184, 139, 72, 0.2);
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .cta-final::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at center, rgba(184, 139, 72, 0.15), transparent 70%);
            pointer-events: none;
        }

        .cta-final h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .cta-final p {
            font-size: 1.25rem;
            color: var(--cor-texto-mutado);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-final .btn-group {
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        /* ===== FOOTER ===== */
        .footer {
            background-color: var(--cor-primaria);
            padding: 4rem 0 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand p {
            color: var(--cor-texto-mutado);
            margin-top: 1.5rem;
            max-width: 300px;
        }

        .footer h4 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--cor-texto-mutado);
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cor-secundaria);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--cor-texto-mutado);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVIDADE ===== */
        /* EDITE AQUI: breakpoints de responsividade */
        @media (max-width: 1024px) {
            .services-grid, .cases-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-collapse {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 1.25rem;
                background-color: var(--cor-fundo);
                padding: 1.5rem 2rem 2rem;
                border-top: 1px solid rgba(0,0,0,0.05);
                box-shadow: 0 14px 30px rgba(0,0,0,0.1);
            }
            .navbar.menu-open .nav-collapse {
                display: flex;
            }
            .nav-links {
                flex-direction: column;
                gap: 0.25rem;
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 0.6rem 0;
                font-size: 1.05rem;
                border-bottom: 1px solid rgba(0,0,0,0.04);
            }
            .nav-ctas {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                width: 100%;
                margin-top: 0.5rem;
            }
            .nav-ctas .btn {
                width: 100%;
            }
            /* Hambúrguer vira X */
            .navbar.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .navbar.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
            .navbar.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
            
            .process-step {
                flex-direction: column;
                gap: 1.5rem;
            }
            .process-steps::before {
                left: 40px;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .btn-group {
                flex-direction: column;
                width: 100%;
            }
            .btn {
                width: 100%;
            }
        }
        
        /* Prefers Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            .gsap-reveal {
                opacity: 1 !important;
                transform: none !important;
            }
        }

        /* Utility para GSAP */
        .gsap-reveal {
            opacity: 0;
            transform: translateY(30px);
        }

        /* ===== FOOTER: CHIP DA LOGO ===== */
        .footer-logo-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #ffffff;
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        /* ===== BOTÃO FLUTUANTE DE WHATSAPP ===== */
        .wpp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #25D366;
            color: #ffffff;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: wpp-pulse 2.4s infinite;
        }

        .wpp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
        }

        .wpp-float svg {
            width: 30px;
            height: 30px;
            fill: currentColor;
        }

        @keyframes wpp-pulse {
            0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
            70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @media (max-width: 768px) {
            .wpp-float {
                width: 54px;
                height: 54px;
                bottom: 18px;
                right: 18px;
            }
            .wpp-float svg { width: 26px; height: 26px; }
        }

        @media (prefers-reduced-motion: reduce) {
            .wpp-float { animation: none; }
        }

        /* ===== MODAL DE FORMULÁRIO ===== */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(13, 21, 34, 0.6);
            backdrop-filter: blur(6px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-card {
            background: var(--cor-fundo);
            width: 100%;
            max-width: 480px;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
            border-top: 5px solid var(--cor-secundaria);
            position: relative;
            transform: translateY(20px) scale(0.98);
            transition: transform 0.3s ease;
            max-height: 92vh;
            overflow-y: auto;
        }

        .modal-overlay.open .modal-card {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.25rem;
            background: none;
            border: none;
            font-size: 1.75rem;
            line-height: 1;
            color: var(--cor-texto-mutado);
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .modal-close:hover { color: var(--cor-primaria); }

        .modal-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--cor-primaria);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .modal-card .modal-sub {
            color: var(--cor-texto-mutado);
            font-size: 0.98rem;
            margin-bottom: 1.75rem;
        }

        .form-group { margin-bottom: 1.1rem; }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--cor-primaria);
            margin-bottom: 0.4rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem 1rem;
            font-family: var(--font-principal);
            font-size: 1rem;
            color: var(--cor-texto);
            background: var(--cor-surface);
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 10px;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group textarea { resize: vertical; min-height: 90px; }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cor-secundaria);
            box-shadow: 0 0 0 3px rgba(184, 139, 72, 0.15);
        }

        .modal-card .btn-primary {
            width: 100%;
            margin-top: 0.5rem;
        }

        .modal-card .btn-primary:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            font-size: 0.78rem;
            color: var(--cor-texto-mutado);
            text-align: center;
            margin-top: 1rem;
        }

        /* ===== ÍCONES DE SERVIÇO (LOGOS) ===== */
        .service-icon svg {
            width: 34px;
            height: 34px;
        }

        /* ===== NOSSOS PILARES ===== */
        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }
        .pillar {
            text-align: center;
            padding: 0 1rem;
        }
        .pillar-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.25rem;
            border-radius: 16px;
            background: rgba(184, 139, 72, 0.1);
            color: var(--cor-secundaria);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .pillar-icon svg { width: 30px; height: 30px; }
        .pillar h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--cor-primaria);
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }
        .pillar p {
            color: var(--cor-texto-mutado);
            font-size: 0.98rem;
            max-width: 320px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .pillars-grid { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* ===== SEÇÃO: FUNDADOR ===== */
        .founder { padding: var(--section-padding); }
        .founder-grid {
            display: grid;
            grid-template-columns: 0.85fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .founder-photo-wrap { position: relative; }
        .founder-photo-wrap::before {
            content: '';
            position: absolute;
            inset: -8% -8% -8% -8%;
            background: radial-gradient(circle at 30% 30%, rgba(184, 139, 72, 0.25), transparent 65%);
            border-radius: 50%;
            z-index: 0;
        }
        .founder-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 420px;
            border-radius: 20px;
            box-shadow: 0 25px 55px rgba(13, 21, 34, 0.22);
        }
        .founder-role {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--cor-secundaria);
            background: rgba(184, 139, 72, 0.1);
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }
        .founder-content h2 {
            font-size: clamp(1.9rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }
        .founder-content p {
            color: var(--cor-texto-mutado);
            font-size: 1.05rem;
            margin-bottom: 1.1rem;
        }
        .founder-sign {
            font-weight: 600;
            color: var(--cor-primaria);
            font-style: italic;
            margin: 1.5rem 0 2rem;
        }
        @media (max-width: 900px) {
            .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .founder-photo-wrap { text-align: center; }
            .founder-photo { margin: 0 auto; }
        }

        /* ===== PARA QUEM É (AUDIENCE) ===== */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
        .cases-note {
            text-align: center;
            margin-top: 2.5rem;
            color: var(--cor-texto-mutado);
            font-weight: 500;
        }
        @media (max-width: 1024px) {
            .audience-grid { grid-template-columns: 1fr; }
        }

        /* ===== MAIOR CASE ===== */
        .flagship { padding: 6rem 2rem; }
        .flagship-head { text-align: center; margin-bottom: 3rem; }
        .flagship-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--cor-secundaria);
            background: rgba(184, 139, 72, 0.1);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }
        .flagship-head h2 {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        .flagship-card {
            max-width: var(--container-width);
            margin: 0 auto;
            background: linear-gradient(135deg, #0d1522 0%, #16243b 100%);
            border-radius: 28px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(184, 139, 72, 0.35);
            box-shadow: 0 35px 80px rgba(13, 21, 34, 0.35);
            display: grid;
            grid-template-columns: 0.85fr 1.15fr;
            gap: 3.5rem;
            align-items: center;
        }
        /* faixa dourada no topo */
        .flagship-card::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--cor-secundaria), #e8c484, var(--cor-secundaria));
        }
        .flagship-watermark {
            position: absolute;
            bottom: -70px;
            left: -50px;
            width: 300px;
            height: auto;
            opacity: 0.06;
            z-index: 0;
            pointer-events: none;
        }
        .flagship-left, .flagship-right { position: relative; z-index: 1; }
        .flagship-logo {
            background: #fff;
            border-radius: 18px;
            padding: 2.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        }
        .flagship-logo img { max-width: 100%; height: auto; }
        .flagship-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-top: 1.5rem;
        }
        .flagship-tags span {
            font-size: 0.76rem;
            font-weight: 600;
            color: var(--cor-secundaria);
            border: 1px solid rgba(184, 139, 72, 0.4);
            padding: 0.35rem 0.85rem;
            border-radius: 50px;
        }
        .flagship-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--cor-primaria);
            background: var(--cor-secundaria);
            padding: 0.35rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 1.25rem;
        }
        .flagship-right h3 {
            color: #fff;
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .flagship-right p {
            color: rgba(255,255,255,0.78);
            margin-bottom: 1rem;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        .flagship-right .btn { margin-top: 1rem; }
        @media (max-width: 900px) {
            .flagship-card { grid-template-columns: 1fr; gap: 2.25rem; padding: 2.5rem 1.75rem; }
            .flagship-right h3 { font-size: 2rem; }
            .flagship-logo { padding: 2rem; }
        }

        /* ===== VSL (VÍDEO) ===== */
        .vsl { padding: 6rem 2rem; background: var(--cor-surface); }
        .vsl-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
        .vsl-eyebrow {
            display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; color: var(--cor-secundaria); background: rgba(184,139,72,0.1);
            padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
        }
        .vsl-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
        .vsl-head p { color: var(--cor-texto-mutado); font-size: 1.1rem; }

        .vsl-stage { position: relative; width: 100%; max-width: 920px; margin: 0 auto; aspect-ratio: 16 / 9; border-radius: 20px; }
        .vsl-stage.is-floating { background: #0d1522 center/cover; }
        .vsl-stage.is-floating::after {
            content: 'Vídeo minimizado no canto  ↘'; position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85);
            background: rgba(13,21,34,0.9); border-radius: 20px; font-weight: 600; letter-spacing: 0.5px;
            border: 1px dashed rgba(184,139,72,0.35);
        }
        .vsl-player {
            position: absolute; inset: 0; border-radius: 20px; overflow: hidden; background: #000;
            box-shadow: 0 30px 70px rgba(13,21,34,0.3); border: 1px solid rgba(184,139,72,0.25); cursor: pointer;
            transition: box-shadow 0.3s ease;
        }
        .vsl-player video { width: 100%; height: 100%; object-fit: cover; display: block; }
        .vsl-player.floating {
            position: fixed !important;
            top: auto !important; left: auto !important;
            right: 24px !important; bottom: 100px !important;
            width: min(380px, 82vw); height: auto;
            aspect-ratio: 16 / 9; z-index: 998; box-shadow: 0 20px 55px rgba(0,0,0,0.5);
            animation: vsl-dock 0.35s ease;
        }
        @keyframes vsl-dock { from { transform: translateY(20px) scale(0.9); opacity: 0.4; } to { transform: none; opacity: 1; } }

        .vsl-sound-cta {
            position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
            display: inline-flex; align-items: center; gap: 0.55rem; background: rgba(13,21,34,0.85);
            color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 0.85rem 1.5rem; border-radius: 50px;
            font-family: inherit; font-size: 1rem; font-weight: 600; cursor: pointer; z-index: 3;
            transition: transform .2s ease, background .2s ease, color .2s ease; animation: vsl-pulse 2s infinite;
        }
        .vsl-sound-cta:hover { background: var(--cor-secundaria); color: var(--cor-primaria); }
        .vsl-sound-cta svg { width: 20px; height: 20px; fill: currentColor; }
        .vsl-player.sound-on .vsl-sound-cta { display: none; }
        @keyframes vsl-pulse { 0%{box-shadow:0 0 0 0 rgba(184,139,72,.5)} 70%{box-shadow:0 0 0 18px rgba(184,139,72,0)} 100%{box-shadow:0 0 0 0 rgba(184,139,72,0)} }

        .vsl-play-icon {
            position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
            width: 74px; height: 74px; border-radius: 50%; background: rgba(13,21,34,0.8);
            display: none; align-items: center; justify-content: center; z-index: 2; pointer-events: none;
        }
        .vsl-play-icon svg { width: 30px; height: 30px; fill: #fff; margin-left: 3px; }
        .vsl-player.sound-on.paused .vsl-play-icon { display: flex; }

        .vsl-mute {
            position: absolute; left: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%;
            background: rgba(13,21,34,0.7); border: none; color: #fff; cursor: pointer;
            display: none; align-items: center; justify-content: center; z-index: 3;
        }
        .vsl-player.sound-on .vsl-mute { display: flex; }
        .vsl-mute svg { width: 20px; height: 20px; fill: currentColor; }

        .vsl-close {
            position: absolute; right: 8px; top: 8px; width: 30px; height: 30px; border-radius: 50%;
            background: rgba(13,21,34,0.9); border: none; color: #fff; font-size: 1.2rem; line-height: 1;
            cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 4;
        }
        .vsl-player.floating .vsl-close { display: flex; }
        @media (max-width: 768px) {
            .vsl-player.floating { width: min(240px, 62vw); right: 12px !important; bottom: 84px !important; }
        }

        /* ===== CTA REPETIDO (MINI) ===== */
        .mini-cta { padding: 3rem 2rem; text-align: center; }
        .mini-cta .inner { max-width: 640px; margin: 0 auto; }
        .mini-cta p {
            font-size: clamp(1.1rem, 2.2vw, 1.35rem);
            font-weight: 700;
            color: var(--cor-primaria);
            letter-spacing: -0.01em;
            margin-bottom: 1.5rem;
        }
