/* ==========================================
   RESET COMPLETO E CONFIGURAÇÕES DE CORE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #030706; 
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   HEADER / NAVBAR ULTRA MODERNA (LOGO CORRIGIDA)
   ========================================== */
.header {
    background-color: rgba(3, 7, 6, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Aumentado o tamanho da logo de 36px para 54px para dar presença real no topo */
.logo-img {
    height: 54px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #ffffff;
}

.btn-header {
    background-color: #0066ff; /* Alterado para Azul */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
    transition: all 0.2s ease;
}

.btn-header:hover {
    background-color: #0052cc;
    box-shadow: 0 0 25px rgba(0, 102, 255, 0.35);
    transform: translateY(-1px);
}

/* ==========================================
   HERO SECTION (CORES ATUALIZADAS PARA AZUL)
   ========================================== */
.hero {
    padding: 20px 0;
    background: radial-gradient(circle at 85% 25%, rgba(0, 102, 255, 0.06) 0%, transparent 55%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 1fr; 
    align-items: center;
    gap: 50px;
}

.hero-text-side {
    text-align: left;
}

.tagline {
    background-color: rgba(255, 255, 255, 0.02);
    color: #0066ff; /* Azul */
    border: 1px solid rgba(0, 102, 255, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
}

.tagline .dot {
    width: 6px;
    height: 6px;
    background-color: #0066ff;
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: #0066ff; /* Destaque em Azul */
}

.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 36px;
    max-width: 530px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background-color: #0066ff; /* Azul */
    color: #ffffff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border 0.2s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================
   MOCKUP DO COMPONENTE DE VÍDEO COMPUTAÇÃO
   ========================================== */
.hero-video-side {
    width: 100%;
}

.video-mockup {
    background-color: #0b0f12;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.mockup-header {
    background-color: rgba(255, 255, 255, 0.01);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.circles {
    display: flex;
    gap: 6px;
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.circle.red { background-color: #ef4444; }
.circle.yellow { background-color: #f59e0b; }
.circle.green { background-color: #10b981; }

.mockup-url {
    margin: 0 auto;
    font-size: 0.8rem;
    color: #475569;
    font-family: monospace;
}

.video-container {
    background-color: #000;
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: contain; 
}

.mockup-footer {
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    background-color: rgba(255, 255, 255, 0.01);
}

.sync-text {
    color: #0066ff; /* Azul */
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #0066ff;
    border-radius: 50%;
}

/* ==========================================
   SEÇÕES GLOBAIS - PADRONIZAÇÃO DE TÍTULOS
   ========================================== */
.section-subtitle {
    display: block;
    text-align: center;
    color: #0066ff; /* Azul */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    text-align: center;
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 55px auto;
}

/* ==========================================
   SEÇÃO 3 PASSOS
   ========================================== */
.steps-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background-color: #020504;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 60px;
}

.step-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 12px;
}

.step-number {
    font-size: 6.5rem; /* Aumentado drasticamente para um impacto gigante */
    font-weight: 900;  /* Força máxima de Bold (estilo Black/Ultra Bold) */
    line-height: 0.9;  /* Ajusta a altura da linha para o texto não empurrar o título muito para baixo */
    margin-bottom: 12px;
    letter-spacing: -3px; /* Deixa o número com aspecto mais robusto e integrado */
    
    /* Efeito de Degradê Azul Ultra Brilhante no preenchimento */
    background: linear-gradient(135deg, #0066ff 0%, #0033aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Mantém uma leve opacidade para o fundo escuro do card dar o contraste perfeito */
    opacity: 0.95; 
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.step-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ==========================================
   SEÇÃO RECURSOS (FEATURES 6 CARDS)
   ========================================== */
.features-section {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 36px;
    border-radius: 16px;
    transition: border-color 0.2s, background-color 0.2s;
}

.feature-card:hover {
    border-color: rgba(0, 102, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
}

.icon-box {
    width: 46px;
    height: 46px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066ff; /* Azul */
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================
   SEÇÃO DE REGRAS COMPARATIVAS (MÉTODOS)
   ========================================== */
.comparison-section {
    padding: 60px 0;
    background-color: #020504;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 50px auto 0 auto;
}

.comp-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
}

.comp-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
}

.tech-red { background-color: rgba(239, 68, 68, 0.1); color: #f87171; }
.tech-blue { background-color: rgba(0, 102, 255, 0.15) !important; color: #0066ff; }

.comp-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 32px;
}

.comp-card ul {
    list-style: none;
}

.comp-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.circle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.red-icon { background-color: rgba(239, 68, 68, 0.08); color: #f87171; }
.blue-icon { background-color: rgba(0, 102, 255, 0.1); color: #0066ff; }

/* ==========================================
   ESTILIZAÇÃO DOS QUADRINHOS DE DEPOIMENTOS
   ========================================== */
.testimonials-section {
    padding: 60px 0;
    background-color: #030706;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

.testimonial-card.highlighted-card {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(0, 102, 255, 0.15);
}

.testimonial-stars {
    color: #0066ff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

.author-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.author-company {
    color: #475569;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==========================================
   ESTILIZAÇÃO DO NOVO BOTÃO DE CAPTURA WHATSAPP
   ========================================== */
.form-section {
    padding: 60px 0;
}

.form-inner-container {
    max-width: 580px;
    text-align: center;
}

.form-inner-container h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.form-inner-container p {
    color: #94a3b8;
    margin-bottom: 36px;
    font-size: 1.05rem;
}

/* Botão Premium Azul que direciona pro WhatsApp direto */
.btn-submit-landing {
    background-color: #0066ff;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
    transition: all 0.25s ease;
    width: 100%;
    max-width: 460px;
}

.btn-submit-landing:hover {
    background-color: #0052cc;
    box-shadow: 0 10px 35px rgba(0, 102, 255, 0.5);
    transform: translateY(-2px);
}

.form-inner-container div {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-footer-text {
    display: block;
    margin-top: 22px;
    font-size: 0.8rem;
    color: #475569;
}

/* ==========================================
   FOOTER (RODAPÉ)
   ========================================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.85rem;
    color: #475569;
    background-color: #020504;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #94a3b8;
}

/* ==========================================
   REGRAS DE RESPONSIVIDADE COMPLETA
   ========================================== */
@media (max-width: 992px) {
    .header {
        padding: 16px 0;
    }
    .logo-img {
        height: 100px; /* Fixado em tamanho seguro para tablets */
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr; /* Quebra em lista no mobile */
        gap: 20px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; 
    }
    .section-main-title {
        font-size: 2rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .btn-submit-landing {
        width: 100%;
        font-size: 1rem;
        padding: 18px 20px;
    }
}