/* Design System B2B - Aquisição B2B (Inspirado em SaaS Enterprise / Sororo) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0F1711;   /* Verde Militar Dark */
    --primary-main: #1A261D;   /* Verde Militar Profundo */
    --primary-card: #233227;   /* Verde Card */
    --accent-orange: #FF6B00;  /* Laranja Industrial para CTAs */
    --accent-hover: #E05E00;
    --text-primary: #F8FAFC;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Sticky Vidro */
.header {
    background: rgba(15, 23, 17, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Animação e Estilo da Barra de Pipeline no Hero */
.pipeline-bar {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 12px 0 20px 0;
}

.pipeline-progress {
    width: 0%; /* Inicia zerada para animar via JS */
    height: 100%;
    background: linear-gradient(90deg, #FF6B00 0%, #FF8800 100%);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.6);
    transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1); /* Animação fluida estilo SaaS */
}
/* Hero Section */
.hero {
    background: radial-gradient(circle at 50% 0%, #253629 0%, var(--primary-dark) 75%);
    color: var(--text-primary);
    padding: 90px 0 110px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero .subtitle {
    font-size: 18px;
    color: #94A3B8;
    margin-bottom: 36px;
    max-width: 580px;
}

/* Mockup Dashboard Hero */
.hero-card-preview {
    background: var(--primary-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.metric-header {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.pipeline-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 24px;
}

.pipeline-progress {
    width: 82%;
    height: 100%;
    background: var(--accent-orange);
}

.metric-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.metric-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-item span { color: #94A3B8; }
.metric-item strong { color: var(--text-primary); }

/* Botões Modernos */
.btn-primary {
    background-color: var(--accent-orange);
    color: #FFFFFF;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Soluções (Cards Clean) */
.solucoes {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-service {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 18px;
}

.card-service h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-service p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Formulário Estilo SaaS Moderno (Inspiração Trysoro) */
.conversao-section {
    padding: 100px 0;
    background: #FFFFFF;
}

.conversao-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 50px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.07);
}

.conversao-header {
    text-align: center;
    margin-bottom: 36px;
}

.conversao-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.conversao-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-modern {
    margin-bottom: 22px;
}

.form-group-modern.full {
    grid-column: span 2;
}

.form-group-modern label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group-modern input, 
.form-group-modern select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-dark);
    background-color: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
}

.form-group-modern input:focus, 
.form-group-modern select:focus {
    background-color: #FFFFFF;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
}

.disclaimer {
    text-align: center;
    font-size: 13px;
    color: #94A3B8;
    margin-top: 18px;
}
/* Ajuste de Alta Visibilidade para o Menu de Navegação */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: #F8FAFC !important; /* Branco de alta intensidade e contraste */
    font-weight: 700 !important; /* Texto em Negrito (Bold) */
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease-in-out;
}

.nav-menu a:hover {
    color: #FF6B00 !important; /* Destaque Laranja no Hover */
}

/* Botão de Destaque no Menu */
.btn-primary-outline {
    border: 2px solid #FF6B00 !important;
    color: #FF6B00 !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 800 !important;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.btn-primary-outline:hover {
    background-color: #FF6B00 !important;
    color: #FFFFFF !important;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-group-modern.full { grid-column: span 1; }
    .conversao-card { padding: 32px 24px; }
    .nav-links { display: none; }
}