/* --- CONFIGURAÇÕES GERAIS E VARIÁVEIS --- */
:root {
    --primary: #0E3453;
    --primary-dark: #051a2e;
    --primary-light: #1c527c;
    --accent: #D4AF37; /* Dourado Premium */
    --accent-hover: #b5952f;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --text-main: #1a1a1a;
    --text-muted: #666;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 20px 40px rgba(0,0,0,0.05);
    --shadow-hover: 0 30px 60px rgba(14, 52, 83, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); /* Gradiente Cyan Tech */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.dot { color: var(--accent); }

/* --- NAVBAR PREMIUM --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: color 0.3s;
}

.navbar.scrolled .logo { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.navbar.scrolled .nav-links a { color: var(--primary); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--primary-light); }

.btn-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: transform 0.3s;
}

.navbar.scrolled .btn-nav {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-nav:hover { transform: translateY(-2px); }

/* --- HERO SECTION CINEMATOGRÁFICA --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.video-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.video-wrapper video {
    width: 100%; height: 100%; object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Gradiente Profundo e Elegante */
    background: linear-gradient(135deg, rgba(14, 52, 83, 0.95) 20%, rgba(14, 52, 83, 0.7) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    padding-top: 80px;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-group { display: flex; gap: 16px; }

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }

.btn-glass {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-glass:hover { background: rgba(255,255,255,0.2); }

/* Hero Stats Card */
.hero-stats {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stat-box h3 { font-size: 2.5rem; font-weight: 700; color: var(--white); }
.stat-box p { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* Scroll Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.mouse {
    width: 26px; height: 40px; border: 2px solid white; border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: white; border-radius: 50%;
    animation: scroll 2s infinite;
}
@keyframes scroll { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* --- COMPARISON SECTION (PRICING STYLE) --- */
.comparison-section { padding: 100px 0; background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 60px; }
.overline { color: var(--accent-hover); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.85rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary); margin: 10px 0 15px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.card-compare {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid transparent;
}

.card-compare.bpo {
    border: 1px solid #e5e5e5;
    opacity: 0.8;
}

.card-compare.bto {
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--primary);
    transform: scale(1.05); /* Leve aumento para destaque */
    z-index: 2;
}

.popular-tag {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: var(--primary-dark);
    padding: 5px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 700;
}

.card-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.card-header h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--primary); }
.status { font-size: 0.85rem; background: #eee; padding: 4px 12px; border-radius: 4px; color: #777; }
.status.active { background: rgba(14, 52, 83, 0.1); color: var(--primary); font-weight: 700; }

.card-compare ul { list-style: none; space-y: 15px; }
.card-compare li { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-muted); }
.bto li { color: var(--text-main); }
.fa-times { color: #ccc; }
.fa-check-circle { color: var(--primary); font-size: 1.2rem; }

.btn-full { width: 100%; background: var(--primary); color: white; display: block; margin-top: 30px; }
.btn-full:hover { background: var(--primary-light); }

/* --- TRUST STRIP --- */
.trust-strip { background: var(--primary); padding: 40px 0; color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; divide-x: 1px solid rgba(255,255,255,0.1); }
.trust-item h2 { font-size: 3rem; color: var(--accent); margin-bottom: 5px; }
.trust-item p { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* --- SERVICES --- */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }

.service-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-color: rgba(14, 52, 83, 0.1);
    transform: translateY(-10px);
}

.icon-box {
    width: 60px; height: 60px; background: var(--primary); color: white;
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 25px;
}

.service-card h3 { font-size: 1.3rem; margin-bottom: 15px; color: var(--primary); }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- CONTACT PREMIUM --- */
.contact-premium { padding: 100px 0; background: #0b2a42; color: white; position: relative; }
/* Elemento decorativo */
.contact-premium::before {
    content: ''; position: absolute; top: 0; right: 0; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.contact-text h2 { font-size: 3rem; margin-bottom: 20px; }
.contact-text p { opacity: 0.8; margin-bottom: 40px; font-size: 1.1rem; }

.contact-details { display: grid; gap: 30px; }
.detail { display: flex; gap: 20px; align-items: center; }
.detail i { font-size: 1.5rem; color: var(--accent); background: rgba(255,255,255,0.05); padding: 15px; border-radius: 50%; }

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    color: var(--text-main);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.input-group { margin-bottom: 20px; }
.input-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--primary); }
.input-group input, .input-group select {
    width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 8px; background: #f9f9f9; transition: 0.3s;
}
.input-group input:focus, .input-group select:focus {
    background: white; border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(14, 52, 83, 0.1);
}

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.submit-btn {
    width: 100%; padding: 16px; background: var(--primary); color: white; border: none; border-radius: 8px;
    font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.3s;
}

.submit-btn:hover { background: var(--primary-light); }

/* --- FOOTER --- */
.footer-flex { display: flex; justify-content: space-between; align-items: center; padding: 40px 24px; font-size: 0.9rem; color: var(--text-muted); }
.footer-logo { font-weight: 800; color: var(--primary); font-size: 1.5rem; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--primary); font-size: 1.2rem; transition: 0.3s; }
.footer-social a:hover { color: var(--accent); transform: translateY(-3px); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 968px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .cta-group { justify-content: center; }
    .hero-stats { margin-top: 30px; }
    .comparison-grid { grid-template-columns: 1fr; }
    .card-compare.bto { transform: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .nav-links, .btn-nav { display: none; }
    .menu-toggle { display: block; color: white; font-size: 1.5rem; cursor: pointer; }
    .navbar.scrolled .menu-toggle { color: var(--primary); }
    .trust-grid { grid-template-columns: 1fr; gap: 30px; divide-x: 0; divide-y: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
    .footer-flex { flex-direction: column; gap: 20px; text-align: center; }
}

/* --- SEÇÃO DE BENEFÍCIOS --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo automático */
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 35px 30px;
    background: var(--white);
    border: 1px solid #eee; /* Borda sutil inicial */
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Efeito Hover Premium */
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent); /* Borda fica dourada */
}

/* Pequeno detalhe decorativo no topo do card */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent);
    transition: 0.4s ease;
}

.benefit-card:hover::before {
    width: 100%; /* Linha dourada cresce no topo */
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 52, 83, 0.05); /* Azul muito claro */
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.4rem;
    transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: var(--white); /* Inverte as cores no hover */
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr; /* Um por linha no celular */
    }
}

/* --- AVALIAÇÕES GOOGLE (MARQUEE INFINITO) --- */
.google-reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Fundo levemente diferente para destacar */
    overflow: hidden; /* Essencial para não criar barra de rolagem horizontal */
}

/* Badge de Nota Geral */
.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: 20px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stars {
    color: #F4B400; /* Cor Amarelo Google */
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-left: 1px solid #ddd;
    padding-left: 15px;
}

.google-g-logo {
    width: 24px;
    height: 24px;
}

/* Wrapper da Animação */
.marquee-wrapper {
    margin-top: 60px;
    width: 100%;
    position: relative;
    /* Gradiente nas pontas para suavizar a entrada/saída */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px; /* Espaço entre os cards */
    width: max-content;
    /* Animação */
    animation: scrollInfinite 40s linear infinite;
}

/* O Card Estilo Google */
.review-card {
    background: var(--white);
    width: 350px; /* Largura fixa para manter padrão */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    flex-shrink: 0; /* Impede o card de esmagar */
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px); /* Efeito sutil ao passar mouse */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.g-icon {
    width: 20px;
    opacity: 0.7;
}

.review-stars {
    color: #F4B400;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    /* Limitar texto a 4 linhas para ficar uniforme */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* A Animação Keyframes */
@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move para a esquerda metade do tamanho total (já que duplicamos o conteúdo) */
        transform: translateX(-50%);
    }
}

/* Pausar animação ao passar o mouse (Opcional, mas recomendado para leitura) */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .review-card {
        width: 280px; /* Cards menores no celular */
    }
    .marquee-track {
        animation-duration: 30s; /* Um pouco mais rápido no mobile */
    }
}

/* --- SEÇÃO DE MÍDIA (YOUTUBE) --- */
.media-section {
    padding: 100px 0;
    background-color: var(--primary-dark); /* Fundo Escuro */
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* --- CLASSE NOVA (youtube-wrapper) --- */
/* Renomeada para não quebrar a Hero Section */
.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Mantém proporção 16:9 */
    height: 0;
    background: #000;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 20px;
}

.video-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.video-caption p {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* --- SEÇÃO INSTITUCIONAL / METODOLOGIA --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Layout Grid: Texto Esquerda | Passos Direita */
.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start; /* Alinha no topo */
    margin-bottom: 100px;
}

.method-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 25px;
}

.highlight-gold {
    color: var(--accent);
    position: relative;
    white-space: nowrap;
}

/* Sublinhado criativo no texto dourado */
.highlight-gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.2);
    z-index: -1;
}

.method-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.signature-block {
    margin-top: 40px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.founder-info strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}
.founder-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Passos Visuais (Lado Direito) */
.method-steps {
    position: relative;
    padding-left: 20px;
}

.step-card {
    display: flex;
    gap: 20px;
    background: var(--off-white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.step-card:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateX(-5px);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(14, 52, 83, 0.2); /* Número discreto */
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.step-line {
    width: 2px;
    height: 30px;
    background: rgba(14, 52, 83, 0.1);
    margin-left: 45px; /* Alinhado com o centro do ícone/número */
}

/* --- BLOCO DE PÚBLICO ALVO --- */
.audience-header {
    margin-bottom: 50px;
    text-align: center;
}
.audience-header h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.audience-card {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.audience-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Card do meio destacado */
.audience-card.featured {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 20px 40px rgba(14, 52, 83, 0.2);
    transform: scale(1.05);
}

.audience-card.featured h4, 
.audience-card.featured p {
    color: var(--white);
}

.audience-card.featured .check-icon {
    background: rgba(255,255,255,0.2);
    color: var(--accent);
}

.check-icon {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 1.2rem;
}

.audience-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 968px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-card.featured {
        transform: scale(1); /* Remove o zoom no mobile para alinhar */
    }
}

/* --- SEÇÃO DE TECNOLOGIA --- */
.tech-section {
    padding: 60px 0;
    background-color: #f8f9fc;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.tech-intro {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.tech-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tech-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a0aec0; /* Cor cinza desativada */
    padding: 15px 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: 0.3s;
    cursor: default;
}

/* Efeito ao passar o mouse: fica colorido/ativo */
.tech-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tech-note {
    font-size: 0.9rem;
    color: #48bb78; /* Verde segurança */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(72, 187, 120, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

/* --- SEÇÃO FAQ --- */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

/* Centralizar o FAQ (Utilitário manual se não tiver Tailwind) */
.max-w-3xl {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

/* Quando aberto, destaca a borda */
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Remove seta padrão feia */
    font-size: 1.1rem;
}

/* Remove seta padrão no Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--accent);
    transition: transform 0.3s;
}

/* Gira a setinha quando aberto */
.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    margin-top: -5px; /* Ajuste visual */
    padding-top: 15px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* --- SEÇÃO DE TECNOLOGIA (CORRIGIDO) --- */
.tech-section {
    padding: 80px 0;
    background-color: #f8f9fc;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    text-align: center; /* Garante que textos soltos fiquem no centro */
}

/* Centraliza o título e subtítulo */
.tech-section h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.tech-intro {
    display: block; /* Garante que o span se comporte como bloco */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 700;
}

/* O Grid dos Logos/Nomes */
.tech-grid {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar linha se não couber */
    justify-content: center; /* ALINHAMENTO PRINCIPAL: Centro Horizontal */
    align-items: center; /* Alinhamento Vertical */
    gap: 20px; /* Espaço entre os itens */
    max-width: 1000px; /* Largura máxima para não espalhar demais */
    margin: 0 auto 50px auto; /* Centraliza o bloco da grid na tela */
    padding: 0 20px; /* Margem de segurança nas laterais para mobile */
}

.tech-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: #94a3b8; /* Cinza suave */
    padding: 18px 35px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    cursor: default;
    min-width: 140px; /* Garante que todos tenham um tamanho mínimo igual */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efeito Hover Premium */
.tech-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 52, 83, 0.1);
}

/* Nota de Segurança */
.tech-note {
    font-size: 0.95rem;
    color: #27ae60; /* Verde escuro confiável */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(39, 174, 96, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
}

/* Ajuste Mobile Específico */
@media (max-width: 600px) {
    .tech-grid {
        gap: 10px;
    }
    .tech-item {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-width: auto; /* No celular, deixa o tamanho se ajustar */
        flex: 1 1 40%; /* Faz os itens ocuparem aprox metade da tela cada */
    }
}
/* --- LOGO NA NAVBAR --- */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px; /* Altura ideal para navbar */
    width: auto;  /* Mantém a proporção correta */
    transition: all 0.3s ease;
    object-fit: contain;
}

/* Ajuste quando a navbar rola (fica um pouco menor para elegância) */
.navbar.scrolled .logo-img {
    height: 40px;
}

/* --- TRUQUE DE CORES (IMPORTANTE) --- */
/* Cenário A: Se seu logo for COLORIDO (Azul Escuro):
   Ele vai sumir no fundo escuro do vídeo. Use o filtro abaixo para deixá-lo branco no topo.
*/
.logo-img {
    /* Deixa o logo totalmente branco quando está no topo (fundo transparente) */
    filter: brightness(0) invert(1); 
}

/* Quando rolar a página (fundo branco), volta a cor original do logo */
.navbar.scrolled .logo-img {
    filter: none;
}

/* Ajuste Mobile */
@media (max-width: 968px) {
    .logo-img {
        height: 35px; /* Menor no celular */
    }
}

/* --- CORREÇÃO DO MENU TOGGLE (NAVBAR) --- */

/* 1. Estado Padrão (Desktop) -> OCULTO */
.menu-toggle {
    display: none; 
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s;
}

/* Ajuste de cor quando a barra fica branca ao rolar */
.navbar.scrolled .menu-toggle {
    color: var(--primary);
}

/* 2. Estado Mobile (Telas menores que 968px) -> VISÍVEL */
@media (max-width: 968px) {
    .nav-links, .btn-nav {
        display: none; /* Esconde menu texto no mobile */
    }

    .menu-toggle {
        display: block; /* Mostra o ícone de hambúrguer no mobile */
    }
    
    /* Ajuste para garantir que o logo não fique gigante no mobile */
    .logo-img {
        height: 35px;
    }
}

/* --- MENU MOBILE FUNCIONAL --- */
@media (max-width: 968px) {
    
    /* 1. Botão Hambúrguer Visível */
    .menu-toggle {
        display: block; /* Aparece só no mobile */
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--white); /* Branco no topo (vídeo) */
        z-index: 1001;
    }

    /* Cor do hambúrguer quando a barra fica branca */
    .navbar.scrolled .menu-toggle {
        color: var(--primary);
    }

    /* 2. Menu (Links) - Estado Fechado */
    .nav-links {
        position: absolute;
        top: 100%; /* Logo abaixo da navbar */
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        
        /* Oculto por padrão */
        display: none; 
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }

    /* 3. Menu (Links) - Estado ABERTO (.active) */
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* Ajuste dos links no mobile */
    .nav-links a {
        color: var(--primary); /* Sempre escuro no menu mobile (fundo branco) */
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Ajuste do Botão CTA no mobile */
    .nav-links .btn-nav {
        display: inline-flex;
        background: var(--primary);
        color: var(--white) !important;
        width: 80%; /* Botão largo no celular */
        justify-content: center;
    }
}

/* Ajuste do Botão CTA no mobile (Botão Grande) */
    .nav-links .btn-nav {
        display: flex !important; /* Garante que apareça */
        width: calc(100% - 40px); /* 100% da tela menos 20px de cada lado */
        margin: 10px auto 0 auto; /* Centraliza na tela */
        justify-content: center; /* Centraliza o texto e ícone dentro do botão */
        align-items: center;
        background: var(--primary);
        color: var(--white) !important;
        padding: 16px 0; /* Altura confortável para o dedo */
        border-radius: 8px;
        font-size: 1.1rem;
        box-shadow: 0 4px 10px rgba(14, 52, 83, 0.2);
    }
    
    /* Garante que o item da lista (li) também ocupe o espaço se necessário */
    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* --- ESTRUTURA GLOBAL DA NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px; /* Altura fixa para controle total */
    display: flex;
    align-items: center; /* Centraliza tudo verticalmente */
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent; /* Começa transparente sobre o vídeo */
}

/* Navbar ao rolar */
.navbar.scrolled {
    height: 75px; /* Diminui um pouco ao rolar para dar sofisticação */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Garante que logo, links e botão estejam na mesma linha */
}

/* --- LINKS DE NAVEGAÇÃO --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- BOTÃO "FALAR COM CONSULTOR" (VERSÃO DESKTOP) --- */
.btn-nav {
    background: var(--white);
    color: var(--primary) !important;
    padding: 12px 48px !important; /* Altura e largura equilibradas */
    border-radius: 50px !important; /* Estilo pílula premium */
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap; /* Impede o texto de quebrar linha */
}

.navbar.scrolled .btn-nav {
    background: var(--primary);
    color: var(--white) !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: var(--accent) !important; /* Fica dourado no hover */
    color: var(--primary) !important;
}

/* --- LOGO --- */
.logo-img {
    height: 50px; /* Altura do logo proporcional à nav de 90px */
    width: auto;
    transition: 0.3s;
}

.navbar.scrolled .logo-img {
    height: 42px;
}

/* --- Estilos da Trust Strip com Logos Grandes --- */
.trust-strip {
    background: #0E3453;
    padding-top: 60px;
    padding-bottom: 40px;
    overflow: hidden;
    position: relative;
}

/* Container dos números (sem alterações grandes) */
.trust-grid {
    position: relative;
    z-index: 2;
    margin-bottom: 50px; /* Espaço entre os números e os carrosseis */
}

/* Bloco que segura os carrosseis */
.marquees-block {
    display: flex;
    flex-direction: column;
    gap: 30px; /* Espaço entre o carrossel de cima e o de baixo */
}

.logo-marquee-wrapper {
    position: relative; /* Não é mais absolute */
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1; /* Cores vivas */
}

.logo-track {
    display: inline-block;
    white-space: nowrap;
}

.partner-logo {
    height: 80px; /* Aumentado de 40px para 80px (Bem maiores) */
    width: auto; /* Mantém a proporção */
    margin: 0 40px; /* Espaçamento lateral maior */
    display: inline-block;
    vertical-align: middle;
    /* Sem filtros para manter cores originais */
}

/* Animações */
.move-left {
    animation: scrollLogos 45s linear infinite;
}

.move-right {
    animation: scrollLogos 45s linear infinite reverse;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .partner-logo {
        height: 50px; /* Menor no celular para não quebrar o layout */
        margin: 0 20px;
    }
    .trust-grid {
        margin-bottom: 30px;
    }
    .marquees-block {
        gap: 15px;
    }
}

/* Ajuste Mobile para Logos Grandes (2 por vez) */
@media (max-width: 768px) {
    .partner-logo {
        /* Aumentei para 90px no mobile (antes era 50px). 
           Isso fará com que logos retangulares ocupem quase metade da tela */
        height: 90px; 
        margin: 0 15px; /* Margem lateral levemente menor para caberem melhor */
    }

    .trust-strip {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .trust-grid {
        margin-bottom: 30px;
    }

    .marquees-block {
        gap: 20px; /* Espaço entre as duas fileiras de logos */
    }
}

/* --- Seção Boutique Financeira (TEMA CLARO) --- */
.boutique-section {
    background-color: #ffffff; /* Fundo Branco */
    padding: 80px 0;
    color: #333; /* Texto padrão escuro */
}

/* Ajuste do Título da Seção para Fundo Branco */
.boutique-section h2 {
    color: #111;
}

.boutique-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555; /* Cinza escuro para leitura */
    font-size: 1.1rem;
    line-height: 1.6;
}

.boutique-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.boutique-badges span {
    background: #fdfdfd;
    border: 1px solid #bfa15f;
    color: #bfa15f; /* Dourado */
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.boutique-badges i {
    margin-right: 5px;
}

/* Grid Layout */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Estilo do Card (Versão Clara) */
.boutique-card {
    background: #fff;
    border: 1px solid #e5e5e5; /* Borda cinza clara */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Adicionei uma sombra suave para destacar o card no fundo branco */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
}

.boutique-card:hover {
    border-color: #bfa15f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.boutique-card.active {
    border-color: #bfa15f;
    background: #fbfbfb; /* Fundo muito levemente cinza ao abrir */
}

/* Header do Card */
.boutique-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boutique-header .icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Ícones Dourados */
.boutique-header i.fa-hand-holding-dollar,
.boutique-header i.fa-file-signature,
.boutique-header i.fa-handshake,
.boutique-header i.fa-laptop-code,
.boutique-header i.fa-scale-unbalanced-flip {
    font-size: 1.5rem;
    color: #bfa15f;
}

.boutique-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222; /* Título do card preto */
}

.arrow-icon {
    color: #999; /* Seta cinza clara */
    transition: transform 0.3s ease;
}

.boutique-card.active .arrow-icon {
    transform: rotate(180deg);
    color: #bfa15f;
}

/* Corpo do Card */
.boutique-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    padding: 0 25px;
    color: #666; /* Texto explicativo cinza */
    font-size: 0.95rem;
    line-height: 1.6;
}

.boutique-card.active .boutique-body {
    max-height: 500px;
    padding-bottom: 25px;
    border-top: 1px solid #eee; /* Linha divisória suave */
    padding-top: 20px;
}

.boutique-body .highlight-text {
    color: #000; /* Destaque preto */
    font-weight: 600;
    margin-bottom: 10px;
}

.boutique-body ul {
    margin: 10px 0;
    padding-left: 20px;
}

.boutique-body ul li {
    margin-bottom: 5px;
    list-style-type: disc;
    color: #555;
}

.boutique-body strong {
    display: block;
    margin-top: 15px;
    color: #bfa15f; /* Frase de impacto dourada */
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }
}
/* Grid Layout */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    
    /* ADICIONE ESTA LINHA ABAIXO PARA CORRIGIR O ERRO */
    align-items: start; 
}
/* Aplica efeito visual APENAS em dispositivos com mouse */
@media (hover: hover) {
    .boutique-card:hover {
        border-color: #bfa15f;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
}

/* Container que permite a rolagem */
.marquee-wrapper {
    width: 100%;
    overflow-x: auto; /* Permite rolar */
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    position: relative;
    padding: 20px 0;
    cursor: grab;
}

/* Esconde barra de rolagem no Chrome */
.marquee-wrapper::-webkit-scrollbar {
    display: none; 
}

/* Quando estiver arrastando */
.marquee-wrapper.active {
    cursor: grabbing;
    scroll-behavior: auto; /* Remove suavidade durante o arraste manual */
}

/* A trilha onde ficam os cards */
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content; /* Importante: cards lado a lado */
    animation: none !important; /* Remove animação antiga */
    padding-left: 20px; /* Margem inicial mobile */
    padding-right: 20px; /* Margem final mobile */
}

/* Container das Setas (Centralizado Abaixo) */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 40px;
    width: 100%;
}

/* Estilo dos Botões */
.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}