
/* --- RESET E VARIÁVEIS --- */
:root {
    --primary-color: #0f172a; /* Dark Navy */
    --secondary-color: #1e293b; /* Lighter Navy */
    --accent-color: #3b82f6; /* Bright Blue */
    --accent-hover: #2563eb;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --text-dark: #334155;
    --success: #10b981;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; }
ul { list-style: none; }

/* --- UTILITÁRIOS --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* --- HEADER --- */
header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent-color); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: white; }

.mobile-menu-btn { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1.1fr;
    gap: 5px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text h1 span {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    position: relative;
}

/* Customização da lista na seção Hero (Lado a Lado) */
.hero-text ul {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap; /* Permite que os itens desçam uma linha em telas de celular */
    gap: 24px; /* Espaço entre cada um dos 3 itens */
}

.hero-text li {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px; /* Espaço entre o ponto e o texto */
}

.hero-text li::before {
    content: "•"; /* Ponto em formato de bullet */
    color: var(--accent-color); /* Usa o tom de azul do seu tema */
    font-size: 1.5rem;
    line-height: 1; /* Ajuda a centralizar o ponto perfeitamente com a altura do texto */
}

#video {
    width:100%; 
    max-width:540px; 
    min-height:289px; 
    aspect-ratio: 16/9; 
    border-radius: 12px; 
    box-shadow: 0 20px 50px rgba(59,130,246,0.15); 
    background: #000; 
    display: block; 
    margin-left: auto; 
    margin-right: auto;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

/* --- PROBLEMAS --- */
.problems { background-color: white; }

/* --- SECTION PROBLEMAS (Minimalista) --- */
.problems-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 650px; /* Limita a largura para o texto não ficar esticado */
    margin: 40px auto 0; /* Centraliza a lista na tela */
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Cria uma linha divisória sutil */
    transition: background-color 0.3s ease;
}

/* Remove a linha do último item para um acabamento mais limpo */
.problem-item:last-child {
    border-bottom: none;
}

/* Efeito sutil ao passar o mouse */
.problem-item:hover {
    background-color: rgba(0, 0, 0, 0.02); 
    border-radius: 8px;
}

.problem-item i {
    color: #e74c3c; /* Cor vermelha para indicar que é um problema/ponto de atenção */
    font-size: 1.2rem;
    flex-shrink: 0; /* Impede que o ícone esprema caso o texto quebre a linha no celular */
}

.problem-item p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--text-color, #333); /* Usa a variável do seu tema, se existir */
    font-weight: 500;
}

/* Destaque final da seção de problemas */
.problems-alert {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(231, 76, 60, 0.05); /* Um fundo vermelho bem clarinho */
}

.problems-alert p {
    color: #e74c3c; /* Vermelho para o "E o pior" */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.problems-alert span {
    font-size: 1.4rem;
    color: var(--text-dark, #222);
    font-weight: 600;
    display: block;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .problems-alert span {
        font-size: 1.2rem;
    }
}

/* ==========================================
   QUEBRA DE CRENÇA (Belief Break)
========================================== */
.belief-break {
    background-color: var(--primary-color); /* Fundo escuro (Dark Navy) do seu tema */
    color: var(--text-light);
    text-align: center;
}

.belief-content {
    max-width: 800px;
    margin: 0 auto;
}

.belief-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 800;
}

.belief-content h2 span {
    color: #e74c3c; /* Vermelho para dar ênfase na negação */
}

.belief-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.belief-list p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin: 0;
}

.belief-list p i {
    color: rgba(231, 76, 60, 0.7); /* Vermelho sutil nos ícones de "banido" */
    margin-right: 10px;
}

.belief-highlight {
    background: rgba(255, 255, 255, 0.05); /* Fundo translúcido elegante */
    padding: 35px 20px;
    border-radius: 12px;
    border-left: 4px solid #e74c3c; /* Borda lateral vermelha chamativa */
}

.belief-highlight p {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.belief-highlight span {
    font-size: 1.15rem;
    color: var(--text-gray);
    font-style: italic;
    display: block;
}

/* ==========================================
   SOLUÇÃO (Solution Section)
========================================== */
.solution-section {
    background-color: #ffffff; /* Volta para o fundo claro trazendo alívio */
    text-align: center;
}

.solution-content {
    max-width: 850px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.solution-content h2 span {
    color: var(--accent-color); /* Azul principal do seu tema */
}

.solution-subtitle {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.solution-highlight {
    background: rgba(59, 130, 246, 0.08); /* Fundo azul bem suave */
    padding: 35px 20px;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.05);
    transition: transform 0.3s ease;
}

.solution-highlight:hover {
    transform: translateY(-5px); /* Efeito sutil ao passar o mouse */
}

.solution-highlight p {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0;
}

.solution-description {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

/* ==========================================
   AJUSTES RESPONSIVOS (Celular)
========================================== */
@media (max-width: 768px) {
    .belief-content h2, 
    .solution-content h2 {
        font-size: 2rem;
    }

    .belief-highlight p, 
    .solution-highlight p {
        font-size: 1.4rem;
    }

    .belief-list p,
    .solution-subtitle,
    .solution-description {
        font-size: 1.1rem;
    }
    
    .belief-highlight {
        padding: 25px 15px;
    }
}

/* --- SOLUÇÃO (TIMELINE) --- */
.solution { background-color: var(--secondary-color); color: white; }
.solution .section-title h2 { color: white; }
.solution .section-title p { color: var(--text-gray); }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline2 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline2::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #10b981;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--accent-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item2 {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item2::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid #10b981;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.timeline-content {
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-content h3 { color: var(--accent-color); margin-bottom: 8px; }

.timeline-content2 {
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-content2 h3 { color: #10b981; margin-bottom: 8px; }


.line {
    width: 100%;
    border-top: 4px dashed rgba(255,255,255,0.1);
    margin-top: 20px;
    margin-bottom: 20px;
}
/* ==========================================
   CONCLUSÃO DA TIMELINE (Jornada de Vendas)
========================================== */
.timeline-conclusion {
    text-align: center;
    margin: 50px auto 0; /* Centraliza e dá um respiro do topo */
    padding: 20px 30px;
    background-color: rgba(16, 185, 129, 0.08); /* Fundo verde suave (cor de sucesso) */
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.05);
}

.timeline-conclusion p {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.timeline-conclusion p strong {
    color: var(--success, #10b981); /* Usa a variável de sucesso do seu tema */
    font-weight: 800;
}

/* Ajustes para telas menores (celular) */
@media (max-width: 768px) {
    .timeline-conclusion {
        margin-top: 40px;
        padding: 15px 20px;
        width: 90%;
    }
    
    .timeline-conclusion p {
        font-size: 1.25rem;
    }
}

/*grafico de gantt*/
.implementation-gantt {
background: #f8fafc;
}

.gantt {
margin-top: 40px;
border: 1px solid #e2e8f0;
border-radius: 12px;
overflow: hidden;
background: white;
}

/* header */
.gantt-header {
display: grid;
grid-template-columns: 200px repeat(7, 1fr);
background: #f1f5f9;
font-size: 0.85rem;
font-weight: 600;
}

.gantt-header div {
padding: 12px;
text-align: center;
border-right: 1px solid #e2e8f0;
}

/* linhas */
.gantt-row {
display: grid;
grid-template-columns: 200px repeat(7, 1fr);
align-items: center;
border-top: 1px solid #e2e8f0;
}

.gantt-row span {
padding: 14px;
font-size: 0.9rem;
color: #334155;
font-weight: 500;
}

/* ==========================================
   CONCLUSÃO DO GANTT
========================================== */
.gantt-conclusion {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(59, 130, 246, 0.05); /* Fundo azul bem suave, combina com o tema */
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.1); /* Borda muito leve */
}

.gantt-conclusion p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.gantt-conclusion p strong {
    color: var(--accent-color); /* Puxa a cor azul principal do seu tema */
    font-weight: 700;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .gantt-conclusion {
        margin-top: 30px;
        padding: 15px;
    }
    
    .gantt-conclusion p {
        font-size: 1.1rem;
    }
}

/* barras */
.bar {
height: 14px;
background: linear-gradient(90deg, #93c5fd, #3b82f6);
border-radius: 6px;
margin: 8px;
position: relative;
transition: 0.3s;
}

.bar:hover {
transform: scaleY(1.2);
}

/* barras principais */
.bar.strong {
background: linear-gradient(90deg, #3b82f6, #2563eb);
height: 16px;
}

/* efeito glow */
.bar::after {
content: '';
position: absolute;
inset: 0;
border-radius: 6px;
box-shadow: 0 0 12px rgba(59,130,246,0.4);
opacity: 0;
transition: 0.3s;
}

.bar:hover::after {
opacity: 1;
}

/* Floating WhatsApp */
.floating-whatsapp {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: #25d366;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
z-index: 1000;
transition: transform 0.3s;
text-decoration: none;
}

.floating-whatsapp:hover {
transform: scale(1.1);
box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

/* Pulse Animation */
.floating-whatsapp::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: #25d366;
opacity: 0.6;
z-index: -1;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
    transform: scale(1);
    opacity: 0.6;
}

100% {
    transform: scale(1.6);
    opacity: 0;
}
}

/* responsivo */
@media (max-width: 768px) {
.gantt-header,
.gantt-row {
    grid-template-columns: 120px repeat(7, 1fr);
}

.gantt-row span {
    font-size: 0.75rem;
}
}

/* ==========================================
   ANTES VS DEPOIS
========================================== */
.before-after {
    background-color: #f8fafc; /* Fundo claro para contrastar */
}

.comparison-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.card-before {
    border-top: 5px solid #e74c3c;
}

.card-after {
    border-top: 5px solid var(--success, #10b981);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.card-before .card-header h3 { color: #e74c3c; }
.card-after .card-header h3 { color: var(--success, #10b981); }

.card-header span {
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.card-before .comparison-list i { color: #e74c3c; margin-top: 3px; }
.card-after .comparison-list i { color: var(--success, #10b981); margin-top: 3px; }

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-white, #fff);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--text-gray);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ==========================================
   PROVA / IMPACTO
========================================== */
.impact-section {
    background-color: var(--primary-color); /* Fundo escuro Dark Navy */
}

.section-title.light-text h2,
.section-title.light-text p {
    color: var(--text-light); /* Garante que o texto brilhe no fundo escuro */
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.impact-card {
    background: rgba(255, 255, 255, 0.05); /* Fundo translúcido elegante */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.impact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.impact-card h3 {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 10px;
}

.impact-card p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

.impact-conclusion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(59, 130, 246, 0.15); /* Fundo azul translúcido */
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.impact-conclusion p {
    font-size: 1.4rem;
    color: #ffffff;
    margin: 0;
}

.impact-conclusion strong {
    color: var(--accent-color); /* Azul brilhante */
}

/* ==========================================
   AJUSTES RESPONSIVOS (Mobile)
========================================== */
@media (max-width: 900px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no tablet */
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        flex-direction: column;
    }
    
    .comparison-card {
        width: 100%;
    }
    
    .comparison-divider {
        transform: rotate(90deg); /* Vira a seta para baixo no celular */
        margin: 10px 0;
    }

    .impact-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
        gap: 15px;
    }

    .impact-conclusion p {
        font-size: 1.2rem;
    }
}

/* --- SEÇÃO DE PLANOS (ALTURAS IGUAIS E ENFASE) --- */
.pricing-section {
    background-color: var(--bg-page);
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Garante que todos os cards tenham a mesma altura */
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* Organiza os elementos verticalmente */
    transition: var(--transition);
    position: relative;
}

/* Card em Destaque (Plano 2) com tamanho fixado e sombra forte */
.pricing-card.highlight {
    border: 2px solid var(--accent-color);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Efeito de hover mantendo a proporção de igualdade */
.pricing-card:hover {
    transform: translateY(-5px);
}

/* Badge do plano destaque */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-width: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Faz a lista ocupar todo o espaço disponível, empurrando o botão para baixo */
.pricing-features {
    flex-grow: 1; 
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.pricing-features li i {
    color: var(--success);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* Alinhamento e estilização dos botões fixos no rodapé */
.pricing-card .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: auto; /* Empurra o botão para o final do card */
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.highlight {
        margin-top: 15px;
    }
}

/* --- COMO FUNCIONA (SQUAD) --- */
.methodology { background-color: white; }

.squad-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.squad-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.squad-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: #eff6ff;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.squad-card h3 { font-size: 1.2rem; margin-bottom: 15px; }
.squad-card ul { text-align: left; margin-top: 15px; }
.squad-card ul li { margin-bottom: 8px; font-size: 0.95rem; color: var(--text-dark); }
.squad-card ul li i { color: var(--success); margin-right: 8px; }

/* --- DIFERENCIAIS --- */
.differentials { background-color: #f8fafc; }
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.diff-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-top: 4px;
}

/* --- MENSAGEM FINAL (Estilo Manifesto) --- */
.final-message {
    margin-top: 80px; /* Dá um espaço grande entre o time e a mensagem */
    padding: 40px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05); /* Linha divisória sutil */
}

.message-content {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.final-message p {
    font-size: 1.8rem; /* Fonte maior para impacto */
    color: var(--primary-color);
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.final-message p strong {
    color: var(--accent-color); /* Destaque na palavra "Execução" */
    font-weight: 800;
    text-transform: uppercase;
}

.final-message i {
    font-size: 1.2rem;
    color: var(--text-gray);
    opacity: 0.5;
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .final-message {
        margin-top: 50px;
        padding: 30px 15px;
    }
    
    .final-message p {
        font-size: 1.4rem;
    }
    
    .message-content i {
        display: none; /* Esconde as aspas no celular para sobrar espaço para o texto */
    }
}

/* --- QUEM SOMOS --- */
.team { background-color: white; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.team-card {
    text-align: center;
}
.team-photo {
    width: 150px;
    height: 150px;
    background-color: #ddd; /* Placeholder */
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--accent-color);
}
.team-card h3 { margin-bottom: 5px; color: var(--primary-color); }
.team-card span { color: var(--accent-color); font-weight: 600; display: block; margin-bottom: 15px; }
.team-card p { font-size: 0.95rem; color: var(--text-dark); }

/* --- RESULTADOS --- */
.results { background-color: var(--primary-color); color: white; }
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 40px;
    text-align: center;
}
.stat-item h3 { font-size: 3rem; color: var(--accent-color); font-weight: 800; }
.stat-item p { font-size: 1rem; color: var(--text-gray); margin-top: 10px; }

/* --- DASHBOARD --- */
.dashboard-section { background: white; }
.dashboard-img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* --- CTA FINAL --- */
.cta-section {
    background-color: #f8fafc;
    padding: 80px 0;
}

.cta-card {
    background: var(--primary-color, #0f172a); /* Fundo azul escuro super elegante */
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}


.cta-card::after {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #25D366); 
}

/* --- TEXTOS MAIS BONITOS E BEM DIAGRAMADOS --- */
.cta-content h2 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--accent-color, #3b82f6); /* Destaca a "máquina de vendas" */
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #94a3b8; /* Cinza claro elegante */
    max-width: 600px;
    margin: 0 auto 10px auto;
    line-height: 1.6;
}

.cta-alert {
    font-size: 1.1rem;
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 45px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #ffffff;
    padding: 8px 100px;
    border-radius: 16px;
    text-decoration: none;
    max-width: 650px; /* Segura a largura para o texto ficar bem distribuído */
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-5px);
    background-color: #128C7E; /* Verde mais escuro no hover */
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta i {
    font-size: 3rem;
    flex-shrink: 0; /* Impede o ícone de ser esmagado pelo texto longo */
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left; /* Como o texto é longo, alinhar à esquerda facilita a leitura */
}

/* --- AJUSTES PARA CELULAR --- */
@media (max-width: 768px) {
    .cta-card {
        padding: 50px 20px;
        border-radius: 16px;
    }

    .cta-content h2 { 
        font-size: 2.2rem; 
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }

    .btn-whatsapp-cta {
        text-align: center;
        padding: 9px 69px;
        gap: 15px;
    }

    .btn-text { 
        width: 113px;
        text-align: center; 
        font-size: 1.05rem; 
    }
}

/* --- FAQ --- */
.faq { background-color: #f8fafc; }
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-dark);
}
.faq-item.active .faq-answer { padding: 0 20px 20px; max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* --- FOOTER --- */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-gray);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.brand-col p {
    margin: 20px 0;
    line-height: 1.6;
    max-width: 320px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col.links-col ul li a {
    color: var(--text-gray);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col.links-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.footer-col.contact-col ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-col.contact-col ul li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-gray);
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 2.1rem; }
    #video {min-height:218px; margin-top: 30px;}
    .timeline::after { left: 31px; }
    .timeline2::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .timeline-item2 { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item2::after { left: 21px; }
    .left::after, .right::after { left: 21px; }
    .right { left: 0%; }
    .stats-grid { flex-direction: column; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 40px; }
}
.form-section {
    padding: 100px 0;
    background: var(--bg-page);
}

.form-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.form-text {
    text-align: center;
    margin-bottom: 30px;
}

.form-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.form-text p {
    color: var(--text-muted);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group textarea {
    min-height: 100px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.form button {
    margin-top: 10px;
    width: 100%;
}

.form-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .form-box {
        padding: 30px 20px;
    }
    .nav-cta {
        display: none;
    }
}
