/* =========================================================
   SENTINEL — Landing Page · Design Navy & Gold
   Inspirado em: paleta #0E384D (navy) + #D2AE6D (gold)
   ========================================================= */

:root {
    /* Brand */
    --navy:           #0E384D;
    --navy-2:         #0A2A38;
    --navy-3:         #124860;
    --navy-rgb:       14, 56, 77;
    --gold:           #D2AE6D;
    --gold-2:         #BFA05A;
    --gold-light:     rgba(210, 174, 109, 0.1);
    --gold-border:    rgba(210, 174, 109, 0.4);

    /* Neutrals */
    --white:          #FFFFFF;
    --gray-50:        #F9FAFB;
    --gray-100:       #F3F4F6;
    --gray-200:       #E5E7EB;
    --border-light:   #E2E8F0;

    /* Text */
    --text-navy:      #0E384D;
    --text-muted:     rgba(14, 56, 77, 0.7);
    --text-light:     rgba(14, 56, 77, 0.8);
    --text-white:     #FFFFFF;
    --text-white-70:  rgba(255, 255, 255, 0.7);
    --text-white-80:  rgba(255, 255, 255, 0.8);
    --text-white-90:  rgba(255, 255, 255, 0.9);

    /* Semantic */
    --danger:         #EF4444;
    --danger-bg:      rgba(239, 68, 68, 0.08);
    --danger-border:  rgba(239, 68, 68, 0.35);
    --success:        #22C55E;

    /* KPI colors (mockup UI) */
    --kpi-total:      #2D7BFF;
    --kpi-pendente:   #EF4444;
    --kpi-analise:    #F59E0B;
    --kpi-aprovado:   #22C55E;
    --kpi-recusado:   #9CA3AF;
    --kpi-segredo:    #14B8A6;

    /* Font */
    --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm:  0 2px 8px rgba(14, 56, 77, 0.08);
    --shadow-md:  0 10px 30px rgba(14, 56, 77, 0.12);
    --shadow-lg:  0 30px 80px rgba(14, 56, 77, 0.20);
    --shadow-gold: 0 10px 40px rgba(210, 174, 109, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--text-navy);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* =================== LAYOUT =================== */
.lp-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.lp-section { padding: 100px 0; }
.lp-light { background: var(--white); color: var(--text-navy); }
.lp-gray { background: var(--gray-50); color: var(--text-navy); }
.lp-navy { background: var(--navy); color: var(--text-white); }

/* =================== NAVBAR =================== */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--navy-rgb), 0.1);
    transition: box-shadow 0.25s, background 0.25s;
}
.lp-nav.scrolled { box-shadow: 0 4px 24px rgba(14, 56, 77, 0.1); }
.lp-nav-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.lp-nav-links { display: flex; gap: 28px; margin-left: auto; }
.lp-nav-links a {
    color: var(--text-navy); font-size: 15px; font-weight: 500;
    transition: color 0.2s;
}
.lp-nav-links a:hover { color: var(--gold); }
.lp-nav-actions { display: flex; gap: 10px; }
.lp-nav-toggle {
    display: none; background: transparent; border: 0; color: var(--navy);
    font-size: 28px; cursor: pointer; margin-left: auto;
}
.lp-nav-mobile {
    display: none; flex-direction: column; gap: 6px; padding: 16px 24px;
    background: var(--white); border-top: 1px solid var(--border-light);
}
.lp-nav-mobile.open { display: flex; }
.lp-nav-mobile a {
    color: var(--text-navy); padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}

/* =================== BRAND / LOGO =================== */
.lp-brand { display: inline-flex; align-items: center; gap: 12px; }
.lp-brand-icon {
    background: var(--navy); padding: 8px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
}
.lp-brand-icon-gold-bg { background: var(--gold); }
.lp-logo-bars { display: inline-flex; align-items: flex-end; gap: 3px; height: 22px; }
.lp-logo-bars span { width: 5px; background: var(--gold); border-radius: 3px; display: block; }
.lp-brand-icon-gold-bg .lp-logo-bars span { background: var(--navy); }
.lp-logo-bars span:nth-child(1) { height: 40%; }
.lp-logo-bars span:nth-child(2) { height: 70%; }
.lp-logo-bars span:nth-child(3) { height: 100%; }
.lp-logo-bars-lg { height: 36px; }
.lp-logo-bars-lg span { width: 8px; }
.lp-brand-icon-lg { padding: 14px; border-radius: 16px; }
.lp-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.lp-brand-name { font-weight: 800; font-size: 16px; letter-spacing: 0.14em; color: var(--navy); }
.lp-brand-sub { font-size: 12px; color: var(--text-muted); }
.lp-brand-lg { margin-bottom: 24px; }
.lp-brand-icon-lg .lp-brand-name { display: none; }

/* =================== BUTTONS =================== */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 15px;
    border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s;
    text-decoration: none; white-space: nowrap;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-gold {
    background: var(--gold); color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.lp-btn-gold:hover { background: var(--gold-2); }
.lp-btn-outline {
    background: transparent; color: var(--navy); border-color: rgba(var(--navy-rgb), 0.25);
}
.lp-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.lp-btn-outline-light {
    background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3);
}
.lp-btn-outline-light:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); }
.lp-btn-navy {
    background: var(--navy); color: var(--white);
}
.lp-btn-navy:hover { background: var(--navy-2); }
.lp-btn-sm { padding: 9px 16px; font-size: 14px; }
.lp-btn-lg { padding: 15px 30px; font-size: 16px; }
.lp-btn-xl { padding: 18px 38px; font-size: 17px; }
.lp-btn-block { width: 100%; }

/* =================== PILLS / BADGES =================== */
.lp-pill-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(210, 174, 109, 0.15); border: 1px solid var(--gold);
    border-radius: 999px; padding: 8px 20px;
    color: var(--gold); font-size: 14px; font-weight: 600;
    margin-bottom: 24px;
}
.lp-pill-navy {
    display: inline-block; background: var(--gold-light); border: 1px solid var(--gold);
    border-radius: 999px; padding: 8px 20px;
    color: var(--navy); font-size: 14px; font-weight: 600;
    margin-bottom: 16px;
}
.lp-pill-danger {
    display: inline-block; background: rgba(239, 68, 68, 0.1); border: 1px solid var(--danger);
    border-radius: 999px; padding: 8px 20px;
    color: var(--danger); font-size: 14px; font-weight: 600;
    margin-bottom: 16px;
}

/* =================== TYPO HELPERS =================== */
.lp-text-gold { color: var(--gold); }
.lp-text-danger { color: var(--danger); }
.lp-text-success { color: var(--success); }
.lp-text-muted { color: var(--text-muted); }
.lp-mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.lp-center { text-align: center; }

.lp-section-head { max-width: 760px; margin-bottom: 56px; }
.lp-section-head-sm { max-width: 680px; margin: 56px auto 32px; text-align: center; }
.lp-section-title {
    font-size: clamp(28px, 4vw, 44px); line-height: 1.2; font-weight: 800;
    margin: 0 0 18px; letter-spacing: -0.01em; color: var(--navy);
}
.lp-section-title-light {
    font-size: clamp(28px, 4vw, 44px); line-height: 1.2; font-weight: 800;
    margin: 0 0 18px; letter-spacing: -0.01em; color: var(--white);
}
.lp-section-subtitle { font-size: 22px; font-weight: 700; margin: 0 0 12px; color: var(--navy); }
.lp-section-lead { font-size: 18px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.lp-section-lead-light { font-size: 18px; color: var(--text-white-70); line-height: 1.65; margin: 0; }
.lp-section-lead-lg { font-size: 20px; max-width: 820px; margin-left: auto; margin-right: auto; }
.lp-source { font-size: 13px; color: var(--text-white-70); margin-top: 16px; }

/* =================== GRID HELPERS =================== */
.lp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lp-cards-grid { display: grid; gap: 24px; }
.lp-cards-2 { grid-template-columns: repeat(2, 1fr); }
.lp-cards-3 { grid-template-columns: repeat(3, 1fr); }
.lp-cards-4 { grid-template-columns: repeat(4, 1fr); }

/* =================== CARDS (LIGHT) =================== */
.lp-card-l {
    background: var(--white); border: 2px solid rgba(var(--navy-rgb), 0.1);
    border-radius: 14px; padding: 28px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.lp-card-l:hover {
    border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.lp-card-l-icon {
    background: var(--navy); width: 56px; height: 56px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 26px; margin-bottom: 18px;
}
.lp-card-l h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: var(--navy); }
.lp-card-l p { margin: 0; font-size: 15px; color: var(--text-muted); line-height: 1.55; }

/* =================== CALLOUT (navy) =================== */
.lp-callout-navy {
    margin-top: 56px; padding: 40px; border-radius: 16px;
    background: var(--navy); text-align: center;
}
.lp-callout-label {
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 700; color: var(--gold); margin: 0 0 16px;
}
.lp-callout-text { font-size: 19px; color: var(--text-white-80); max-width: 720px; margin: 0 auto 18px; }
.lp-callout-punch { font-size: 26px; font-weight: 700; color: var(--white); max-width: 720px; margin: 18px auto 0; }
.lp-callout-punch em { font-style: normal; color: var(--text-white-70); }

/* =================== BANNER NAVY =================== */
.lp-banner-navy {
    background: var(--navy); border-radius: 16px; padding: 40px;
    display: flex; gap: 24px; align-items: center; margin: 48px 0;
}
.lp-banner-navy-sm { padding: 24px 32px; }
.lp-banner-navy-lg { padding: 48px; }
.lp-banner-navy-icon {
    flex-shrink: 0; background: var(--gold); width: 56px; height: 56px;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 26px;
}
.lp-banner-navy-icon.lg { width: 72px; height: 72px; font-size: 32px; }
.lp-banner-navy-label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin: 0 0 6px; }
.lp-banner-navy-title { font-size: 24px; font-weight: 700; color: var(--white); margin: 0 0 8px; }
.lp-banner-navy-text { color: var(--text-white-80); margin: 0; font-size: 16px; }
.lp-banner-navy p:first-child { font-size: 24px; font-weight: 700; color: var(--white); margin: 0; }

/* =================== HERO =================== */
.lp-hero {
    position: relative; padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 50%, var(--navy) 100%);
    overflow: hidden; color: var(--white);
}
.lp-hero-overlay {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px);
    background-size: 40px 40px;
}
.lp-hero-content { position: relative; z-index: 1; }
.lp-hero-text { text-align: center; max-width: 800px; margin: 0 auto 56px; }
.lp-hero-title {
    font-size: clamp(36px, 5.4vw, 60px); line-height: 1.1; font-weight: 900;
    letter-spacing: -0.02em; margin: 0 0 24px; color: var(--white);
}
.lp-hero-sub { font-size: 20px; color: var(--text-white-80); margin: 0 0 36px; }
.lp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.lp-hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    max-width: 900px; margin: 0 auto;
}
.lp-hero-stat {
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 12px;
    padding: 28px; text-align: center;
}
.lp-hero-stat-icon {
    background: var(--gold); width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); font-size: 22px; margin: 0 auto 16px;
}
.lp-hero-stat h3 { font-size: 20px; font-weight: 700; color: var(--white); margin: 0 0 8px; }
.lp-hero-stat p { font-size: 14px; color: var(--text-white-70); margin: 0; }
.lp-hero-scroll {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: var(--text-white-70); font-size: 22px; animation: lpBounce 2s infinite;
}
@keyframes lpBounce { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* =================== STATS (navy) =================== */
.lp-stats-navy { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
.lp-stat-navy {
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; padding: 24px;
}
.lp-stat-navy-num { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 8px; }
.lp-stat-navy-label { color: var(--text-white-70); font-size: 14px; }

/* =================== CHART CARDS =================== */
.lp-chart-card-navy {
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px; padding: 24px;
}
.lp-chart-card-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.lp-chart-card-head span { font-weight: 700; font-size: 16px; color: var(--white); }
.lp-chart-card-head small { color: var(--text-white-70); font-size: 12px; }
.lp-chart-wrap { position: relative; height: 280px; }

/* =================== CHECKS (navy) =================== */
.lp-checks-navy { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.lp-check-navy {
    display: flex; gap: 12px; align-items: flex-start;
    color: var(--text-white-90); font-size: 15px;
}
.lp-check-navy i { color: var(--gold); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.lp-check-navy strong { font-weight: 700; }

/* Checks variant on light bg */
.lp-checks-light .lp-check-light { color: var(--text-navy); }
.lp-checks-light .lp-check-light i { color: var(--gold); }

/* =================== PAIN SECTION =================== */
.lp-pain { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); }
.lp-pain-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.25; }
.lp-pain-grid { gap: 48px; align-items: start; }
.lp-pain-list { display: flex; flex-direction: column; gap: 16px; }
.lp-pain-item {
    display: flex; gap: 14px; align-items: flex-start;
    color: var(--text-white-90); font-size: 15px;
    padding: 16px; background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid var(--danger); border-radius: 8px;
}
.lp-pain-item i { color: var(--danger); font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.lp-pain-item strong { font-weight: 700; color: var(--white); }
.lp-pain-alert {
    padding: 32px; border-radius: 14px;
    background: rgba(239, 68, 68, 0.08); border: 1px solid var(--danger-border);
}
.lp-pain-alert-head { display: flex; align-items: center; gap: 10px; color: var(--danger); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.lp-pain-alert-head i { font-size: 22px; }
.lp-pain-alert-big { font-size: 26px; font-weight: 800; margin: 0 0 14px; color: var(--white); }
.lp-pain-alert-text { color: var(--text-white-80); margin: 0; font-size: 16px; line-height: 1.6; }
.lp-pain-alert-text strong { color: var(--white); }

/* =================== SOLUTION =================== */
.lp-solution-head { text-align: center; margin-bottom: 56px; }
.lp-solution-mission { font-size: 18px; color: var(--text-muted); margin: 18px auto 0; max-width: 720px; }
.lp-solution-mission strong { color: var(--navy); }

/* =================== STEPS =================== */
.lp-steps {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px; align-items: stretch;
}
.lp-step {
    background: var(--white); border: 2px solid var(--border-light);
    border-radius: 14px; padding: 28px; text-align: center;
    box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.lp-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.lp-step-num {
    width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
    color: var(--gold); font-weight: 800; display: inline-flex; align-items: center;
    justify-content: center; margin: 0 auto 14px; font-size: 16px;
}
.lp-step-icon { font-size: 32px; color: var(--gold); margin-bottom: 14px; }
.lp-step h4 { margin: 0 0 8px; font-size: 17px; font-weight: 700; color: var(--navy); }
.lp-step p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.lp-step-line { align-self: center; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

/* =================== CARD NAVY =================== */
.lp-card-navy {
    background: var(--navy); border-radius: 14px; padding: 32px;
}
.lp-card-navy-title { font-size: 20px; font-weight: 700; color: var(--white); margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.lp-card-navy-title i { color: var(--gold); }
.lp-card-navy-text { color: var(--text-white-80); margin: 0 0 20px; font-size: 15px; }

/* =================== MOCKUPS =================== */
.lp-mockup-window {
    background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
    overflow: hidden; border: 1px solid var(--border-light);
}
.lp-mockup-bar { background: var(--gray-100); padding: 10px 14px; display: flex; gap: 6px; }
.lp-mockup-bar span { width: 11px; height: 11px; border-radius: 50%; background: #CBD5E1; }
.lp-mockup-bar span:nth-child(1) { background: #F87171; }
.lp-mockup-bar span:nth-child(2) { background: #FBBF24; }
.lp-mockup-bar span:nth-child(3) { background: #34D399; }
.lp-mockup-body { padding: 18px; background: #F8FAFC; position: relative; font-size: 13px; color: #0F172A; }
.lp-mockup-body-lg { padding: 22px; }
.lp-mockup-watermark {
    position: absolute; bottom: 8px; right: 12px; font-size: 10px;
    color: #94A3B8; font-style: italic; letter-spacing: 0.04em;
}

/* KPIs */
.lp-mockup-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 14px; }
.lp-mockup-kpis-6 { grid-template-columns: repeat(6, 1fr); }
.lp-mk-kpi {
    background: var(--white); border-radius: 8px; padding: 10px 8px;
    border: 1px solid #E2E8F0; border-left-width: 4px; border-left-color: var(--kpi-total); text-align: center;
}
.lp-mk-kpi span { display: block; font-size: 10px; color: #64748B; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; line-height: 1.2; }
.lp-mk-kpi b { font-size: 18px; font-weight: 800; }
.lp-mk-blue    { border-left-color: var(--kpi-total);    } .lp-mk-blue b  { color: var(--kpi-total); }
.lp-mk-red     { border-left-color: var(--kpi-pendente); } .lp-mk-red b   { color: var(--kpi-pendente); }
.lp-mk-yellow  { border-left-color: var(--kpi-analise);  } .lp-mk-yellow b{ color: var(--kpi-analise); }
.lp-mk-green   { border-left-color: var(--kpi-aprovado); } .lp-mk-green b { color: var(--kpi-aprovado); }
.lp-mk-gray    { border-left-color: var(--kpi-recusado); } .lp-mk-gray b  { color: var(--kpi-recusado); }
.lp-mk-teal    { border-left-color: var(--kpi-segredo);  } .lp-mk-teal b  { color: var(--kpi-segredo); }

/* Filters */
.lp-mockup-filters { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.lp-mockup-filters span {
    flex: 1 1 auto; background: var(--white); border: 1px solid #E2E8F0; border-radius: 6px;
    padding: 6px 10px; font-size: 11px; color: #475067;
    display: inline-flex; align-items: center; gap: 6px; min-width: 70px;
}
.lp-mockup-filters span i { font-size: 10px; color: #94A3B8; margin-left: auto; }

/* Table */
.lp-mockup-table { background: var(--white); border-radius: 8px; border: 1px solid #E2E8F0; overflow: hidden; }
.lp-mk-row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr; gap: 10px;
    padding: 10px 12px; border-bottom: 1px solid #F1F5F9;
    font-size: 12px; color: #334155; align-items: center;
}
.lp-mk-row:last-child { border-bottom: 0; }
.lp-mk-head { background: #F8FAFC; font-size: 11px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.04em; }
.lp-mockup-table-lg .lp-mk-row { grid-template-columns: 1.5fr 1.1fr 1fr 1fr 1fr 0.9fr; }
.lp-mockup-table-lg .lp-mk-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-mk-status { display: inline-block; padding: 3px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; text-align: center; }
.lp-mk-pend { background: rgba(239,68,68,0.12); color: var(--kpi-pendente); }
.lp-mk-aprov { background: rgba(34,197,94,0.12); color: var(--kpi-aprovado); }

/* =================== SHOWCASE =================== */
.lp-showcase { margin: 0 auto; max-width: 1080px; }
.lp-qa { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.lp-qa-card {
    background: var(--white); border: 2px solid rgba(var(--navy-rgb), 0.1);
    border-radius: 14px; padding: 24px; transition: border-color 0.2s;
}
.lp-qa-card:hover { border-color: var(--gold); }
.lp-qa-q { font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.lp-qa-q span {
    width: 28px; height: 28px; border-radius: 50%; background: var(--navy);
    color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800; flex-shrink: 0;
}
.lp-qa-a { color: var(--text-muted); font-size: 15px; margin: 0; }
.lp-showcase-note { text-align: center; margin-top: 32px; color: var(--text-muted); font-size: 17px; }
.lp-showcase-note strong { color: var(--gold); }
.lp-showcase-detail { margin-top: 56px; align-items: start; }

/* =================== DETAIL MOCKUP (app real layout) =================== */
.lp-mockup-detail { padding: 22px; }
.lp-mockup-detail-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid #E2E8F0; }
.lp-mockup-detail-num { font-weight: 700; font-size: 14px; color: #0F172A; }
.lp-mockup-detail-sub { font-size: 12px; color: #64748B; margin-top: 2px; }
.lp-mockup-detail-tabs { display: flex; gap: 16px; margin-bottom: 16px; border-bottom: 1px solid #E2E8F0; }
.lp-mockup-detail-tabs span { padding: 8px 0; font-size: 13px; color: #64748B; cursor: default; }
.lp-mk-tab-active { color: var(--navy) !important; border-bottom: 2px solid var(--gold); font-weight: 600; }
.lp-mockup-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.lp-mockup-detail-grid > div { background: var(--white); border: 1px solid #E2E8F0; border-radius: 8px; padding: 10px 12px; }
.lp-mockup-detail-grid small { display: block; font-size: 10px; text-transform: uppercase; color: #94A3B8; letter-spacing: 0.04em; margin-bottom: 4px; }
.lp-mockup-detail-grid span { font-size: 13px; font-weight: 600; color: #0F172A; }
.lp-mockup-detail-history { background: var(--white); border: 1px solid #E2E8F0; border-radius: 8px; padding: 12px; }
.lp-mk-hist { display: flex; gap: 14px; padding: 8px 0; border-bottom: 1px solid #F1F5F9; font-size: 12px; }
.lp-mk-hist:last-child { border-bottom: 0; }
.lp-mk-hist small { color: #94A3B8; min-width: 130px; }
.lp-mk-hist span { color: #334155; }
.lp-mk-hist b { color: var(--navy); }

/* ---- Mockup detalhe: layout horizontal full-width (sem sidebar) ---- */
.lp-mockup-body-detail-app { padding: 18px; background: #F8FAFC; }

.lp-mockup-app-card {
    background: #fff; border: 1px solid #E2E8F0; border-radius: 8px;
    margin-bottom: 12px; overflow: hidden;
}
.lp-mockup-app-card-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 18px; border-bottom: 1px solid #F1F5F9;
}
.lp-mockup-app-num { font-weight: 700; font-size: 14px; color: #0F172A; }
.lp-mockup-app-sub { font-size: 12px; color: #64748B; margin-top: 2px; }
.lp-mockup-app-card-body { padding: 16px 18px; }

.lp-mockup-app-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.lp-mockup-app-row2 small { display: block; font-size: 10px; color: #94A3B8; margin-bottom: 3px; }
.lp-mockup-app-row2 span { font-size: 13px; color: #334155; }

.lp-mockup-app-hr { border: 0; border-top: 1px solid #F1F5F9; margin: 12px 0; }

.lp-mockup-app-polo { margin-bottom: 10px; }
.lp-mockup-app-polo small { display: block; font-size: 10px; font-weight: 700; color: #64748B; text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.03em; }
.lp-mockup-app-polo-box {
    background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px;
    padding: 10px 12px; font-size: 13px; color: #334155;
}

.lp-mockup-app-acompanhamento { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.lp-mockup-app-acomp-row {
    display: flex; justify-content: space-between; align-items: center;
    background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 6px;
    padding: 12px 16px; font-size: 13px; color: #334155;
}
.lp-mockup-app-acomp-row strong { color: #0F172A; }
.lp-mockup-app-no-tag { color: #94A3B8; font-style: italic; }
.lp-mockup-app-btn {
    background: var(--navy); color: #fff; font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 5px; white-space: nowrap;
}
.lp-mockup-app-btn-outline {
    background: transparent; color: var(--navy); border: 1px solid var(--navy);
}

.lp-mockup-app-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.lp-mockup-app-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 12px; }
.lp-mockup-app-card-sm {
    background: #fff; border: 1px solid #E2E8F0; border-radius: 8px; overflow: hidden;
}
.lp-mockup-app-card-sm-head {
    padding: 12px 16px; border-bottom: 1px solid #F1F5F9;
    font-size: 14px; font-weight: 600; color: var(--navy); background: #fff;
}
.lp-mockup-app-card-sm-body { padding: 14px 16px; font-size: 13px; color: #334155; }
.lp-mockup-app-empty { color: #94A3B8; }

.lp-mockup-app-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.lp-mockup-app-table th { text-align: left; padding: 8px 16px; color: #64748B; font-weight: 500; width: 40%; border-bottom: 1px solid #F8FAFC; }
.lp-mockup-app-table td { padding: 8px 16px; color: #334155; border-bottom: 1px solid #F8FAFC; }
.lp-mockup-app-table tr:last-child th, .lp-mockup-app-table tr:last-child td { border-bottom: 0; }

@media (max-width: 768px) {
    .lp-mockup-app-grid2 { grid-template-columns: 1fr; }
    .lp-mockup-app-grid4 { grid-template-columns: 1fr 1fr; }
    .lp-mockup-app-row2 { grid-template-columns: 1fr; }
    .lp-mockup-app-acomp-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 540px) {
    .lp-mockup-app-grid4 { grid-template-columns: 1fr; }
}

/* =================== ROADMAP =================== */
.lp-roadmap { display: flex; flex-direction: column; gap: 16px; }
.lp-roadmap-item {
    display: flex; gap: 20px; padding: 24px 28px;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px; transition: border-color 0.2s, transform 0.2s;
}
.lp-roadmap-item:hover { border-color: var(--gold); transform: translateX(4px); }
.lp-roadmap-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
    background: rgba(210, 174, 109, 0.15); color: var(--gold); font-size: 26px;
    display: flex; align-items: center; justify-content: center;
}
.lp-roadmap-body h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: var(--white); }
.lp-roadmap-body p { margin: 0 0 12px; color: var(--text-white-70); font-size: 15px; }
.lp-roadmap-badge {
    display: inline-block; padding: 4px 12px; border-radius: 12px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.1); color: var(--text-white-70);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.lp-roadmap-badge-gold { background: rgba(210, 174, 109, 0.15); color: var(--gold); border-color: rgba(210, 174, 109, 0.3); }

/* =================== CTA FINAL =================== */
.lp-cta-final { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); text-align: center; }
.lp-cta-final-inner { max-width: 880px; }
.lp-cta-title { font-size: clamp(28px, 4.2vw, 46px); font-weight: 800; line-height: 1.2; margin: 0 0 24px; color: var(--white); }
.lp-cta-text { font-size: 18px; color: var(--text-white-70); margin: 0 0 32px; line-height: 1.65; }
.lp-cta-chain { color: var(--white); font-weight: 600; }
.lp-cta-pillars { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.lp-cta-pillars span {
    padding: 8px 18px; border-radius: 30px; background: rgba(210, 174, 109, 0.1);
    border: 1px solid rgba(210, 174, 109, 0.3); font-size: 14px; font-weight: 600; color: var(--gold);
}
.lp-cta-questions { margin: 32px 0 40px; color: var(--text-white-70); font-size: 16px; line-height: 1.65; }
.lp-cta-questions p { margin: 0 0 14px; }
.lp-cta-questions-big { font-size: 20px !important; color: var(--white) !important; font-weight: 600; max-width: 720px; margin: 0 auto 14px !important; }
.lp-cta-final-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.lp-cta-microcopy { font-size: 14px; color: var(--text-white-70); margin: 0; }

/* =================== FOOTER =================== */
.lp-footer { background: var(--navy-2); padding: 56px 0 32px; }
.lp-footer-inner { display: flex; flex-direction: column; gap: 32px; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.lp-footer-brand .lp-brand-sub { color: var(--text-white-70); }
.lp-footer-brand .lp-brand-name { color: var(--white); }
.lp-footer-desc { color: var(--text-white-70); font-size: 15px; max-width: 360px; margin: 16px 0 0; }
.lp-footer-col h4 { color: var(--gold); font-size: 16px; font-weight: 700; margin: 0 0 16px; }
.lp-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a { color: var(--text-white-70); font-size: 14px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.lp-footer-col a:hover { color: var(--gold); }
.lp-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; }
.lp-footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 13px; margin: 0; text-align: center; }

/* =================== SCROLL REVEAL =================== */
.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.lp-reveal.lp-reveal-in { opacity: 1; transform: translateY(0); }

/* =================== RESPONSIVE =================== */
@media (max-width: 992px) {
    .lp-section { padding: 80px 0; }
    .lp-grid-2, .lp-showcase-detail, .lp-pain-grid { grid-template-columns: 1fr; gap: 36px; }
    .lp-cards-4 { grid-template-columns: repeat(2, 1fr); }
    .lp-qa { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; gap: 14px; }
    .lp-step-line { display: none; }
    .lp-mockup-kpis-6 { grid-template-columns: repeat(3, 1fr); }
    .lp-mockup-table-lg .lp-mk-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .lp-mockup-table-lg .lp-mk-row span:nth-child(4),
    .lp-mockup-table-lg .lp-mk-row span:nth-child(5),
    .lp-mockup-table-lg .lp-mk-row span:nth-child(6) { display: none; }
    .lp-nav-links { display: none; }
    .lp-nav-actions { display: none; }
    .lp-nav-toggle { display: inline-flex; }
    .lp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .lp-hero-stats { grid-template-columns: 1fr; }
    .lp-banner-navy { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
    .lp-container { padding: 0 18px; }
    .lp-section { padding: 64px 0; }
    .lp-cards-3, .lp-cards-4, .lp-cards-2 { grid-template-columns: 1fr; }
    .lp-stats-navy { grid-template-columns: 1fr; }
    .lp-mockup-kpis, .lp-mockup-kpis-6 { grid-template-columns: repeat(2, 1fr); }
    .lp-mockup-filters { display: none; }
    .lp-mockup-table .lp-mk-row { grid-template-columns: 1fr 1fr; gap: 6px; font-size: 11px; }
    .lp-mockup-table .lp-mk-row span:nth-child(3),
    .lp-mockup-table .lp-mk-row span:nth-child(4) { display: none; }
    .lp-mockup-detail-grid { grid-template-columns: 1fr; }
    .lp-callout-navy { padding: 24px; }
    .lp-banner-navy { padding: 24px; }
    .lp-roadmap-item { flex-direction: column; gap: 14px; padding: 20px; }
    .lp-cta-final-buttons { flex-direction: column; }
    .lp-cta-final-buttons .lp-btn { width: 100%; }
    .lp-hero { padding-top: 110px; }
    .lp-cta-pillars span { font-size: 13px; padding: 6px 14px; }
}

/* =================== CONTACT PAGE =================== */
.lp-contact-body { background: var(--gray-50); }
.lp-contact {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
}
.lp-contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.lp-contact-aside { padding-top: 8px; }
.lp-contact-title {
    font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin: 0 0 18px;
    line-height: 1.15; color: var(--white);
}
.lp-contact-lead { color: var(--text-white-80); font-size: 17px; margin: 0 0 24px; line-height: 1.6; }
.lp-contact-benefits { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.lp-contact-benefits li {
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--text-white-90); font-size: 15px;
}
.lp-contact-benefits i { color: var(--gold); font-size: 18px; margin-top: 2px; }
.lp-contact-trust {
    display: flex; align-items: flex-start; gap: 10px; padding: 16px;
    background: rgba(210, 174, 109, 0.08); border: 1px solid rgba(210, 174, 109, 0.25);
    border-radius: 10px; color: var(--text-white-80); font-size: 13px; line-height: 1.5;
}
.lp-contact-trust i { color: var(--gold); font-size: 20px; flex-shrink: 0; }

.lp-contact-card {
    background: var(--white); border-radius: 16px; padding: 36px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.lp-form { display: flex; flex-direction: column; gap: 18px; }
.lp-form-row { display: flex; flex-direction: column; gap: 6px; }
.lp-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lp-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.lp-req { color: var(--danger); }
.lp-optional { font-weight: 400; color: #94A3B8; font-size: 12px; }
.lp-input {
    padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: 8px;
    font-size: 15px; font-family: inherit; background: var(--white); color: var(--navy);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.lp-input:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210, 174, 109, 0.15); }
.lp-textarea { resize: vertical; min-height: 100px; }
.lp-help { font-size: 12px; color: #94A3B8; }
.lp-form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.lp-form-check label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.lp-form-check input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--gold); }
.lp-form-foot {
    text-align: center; font-size: 12px; color: #94A3B8; margin: 0;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.lp-form-foot i { color: var(--success); }

.lp-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lp-honeypot input { width: 1px; height: 1px; }

.lp-alert { display: flex; gap: 12px; padding: 14px 16px; border-radius: 10px; margin-bottom: 20px; align-items: flex-start; font-size: 14px; }
.lp-alert i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.lp-alert-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #166534; }
.lp-alert-success i { color: var(--success); }
.lp-alert-danger { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.3); color: #991B1B; }
.lp-alert-danger i { color: var(--danger); }

.lp-contact-done { text-align: center; padding: 32px 16px; }
.lp-contact-done i { font-size: 56px; color: var(--success); margin-bottom: 16px; }
.lp-contact-done p { font-size: 16px; color: var(--text-muted); margin: 0 0 20px; }

@media (max-width: 992px) {
    .lp-contact-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .lp-form-row-2 { grid-template-columns: 1fr; }
    .lp-contact-card { padding: 24px; }
    .lp-contact { padding: 100px 0 60px; }
}
