/* ============================================================
   CarMargin — Landing Page Premium (fintech automóvel)
   Namespace: .lp-*  (não colide com style.css)
   ============================================================ */

:root {
    --lp-bg: #F8FAFC;
    --lp-dark: #07111F;
    --lp-navy: #0F172A;
    --lp-blue: #2563EB;
    --lp-blue-2: #3B82F6;
    --lp-green: #10B981;
    --lp-amber: #F59E0B;
    --lp-red: #EF4444;
    --lp-border: #E2E8F0;
    --lp-text: #0F172A;
    --lp-muted: #475569;
    --lp-muted-2: #64748B;
    --lp-card-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
    --lp-card-shadow-lg: 0 2px 4px rgba(15, 23, 42, 0.05), 0 24px 48px -16px rgba(15, 23, 42, 0.18);
    --lp-radius: 0.875rem;
}

.lp-body {
    background-color: var(--lp-bg);
    color: var(--lp-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.lp-container {
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ---------- Botões ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.625rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-2));
    color: #fff;
    box-shadow: 0 4px 14px -3px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px -6px rgba(37, 99, 235, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.lp-btn-secondary {
    background: #fff;
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.lp-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: #CBD5E1;
    box-shadow: 0 8px 18px -8px rgba(15, 23, 42, 0.18);
}

.lp-btn-lg {
    height: 3.375rem;
    padding: 0 1.9rem;
    font-size: 1rem;
}

/* ---------- Navbar ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-nav.scrolled {
    border-bottom-color: var(--lp-border);
    box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.12);
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.25rem;
    gap: 2rem;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--lp-text);
}

.lp-logo-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 10px -3px rgba(37, 99, 235, 0.5);
}

.lp-logo-name {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.lp-nav-links {
    display: none;
    gap: 2.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lp-muted);
}

@media (min-width: 900px) {
    .lp-nav-links { display: flex; }
}

.lp-nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.lp-nav-links a:hover { color: var(--lp-blue); }

.lp-nav-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lp-nav-cta .lp-btn { height: 2.6rem; padding: 0 1.15rem; font-size: 0.875rem; }

.lp-nav-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-muted);
    text-decoration: none;
}

.lp-nav-login:hover { color: var(--lp-blue); }

/* ---------- Hero ---------- */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem 0;
    background:
        radial-gradient(52rem 32rem at 88% -10%, rgba(37, 99, 235, 0.09), transparent 60%),
        radial-gradient(40rem 26rem at -8% 110%, rgba(16, 185, 129, 0.07), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, var(--lp-bg) 100%);
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .lp-hero-grid { grid-template-columns: 0.95fr 1.05fr; }
}

.lp-hero-copy { display: flex; flex-direction: column; gap: 1.4rem; }

.lp-hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    color: var(--lp-blue);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    letter-spacing: 0.01em;
}

.lp-hero-badge .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: var(--lp-blue);
    animation: lp-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

.lp-hero h1 {
    font-size: clamp(2.35rem, 4.6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--lp-navy);
    margin: 0;
}

.lp-hero h1 .blue { color: var(--lp-blue); }

.lp-hero-sub {
    font-size: 1.0625rem;
    color: var(--lp-muted);
    line-height: 1.65;
    max-width: 34rem;
    margin: 0;
}

.lp-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding-top: 0.4rem;
}

/* Trust bar */
.lp-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.5rem;
    padding-top: 1.4rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--lp-border);
}

@media (min-width: 640px) {
    .lp-trust { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--lp-muted);
    line-height: 1.35;
}

.lp-trust-item svg {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    color: var(--lp-blue);
}

/* ---------- Dashboard mockup ---------- */
.lp-mock-wrap { position: relative; }

.lp-mock-wrap::before {
    content: '';
    position: absolute;
    inset: -2rem -1.5rem;
    background: radial-gradient(30rem 20rem at 60% 40%, rgba(37, 99, 235, 0.10), transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.lp-mock {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 1.1rem;
    box-shadow: var(--lp-card-shadow-lg);
    overflow: hidden;
}

.lp-mock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--lp-border);
}

.lp-mock-title {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: var(--lp-navy);
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.lp-mock-title .live-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background: var(--lp-green);
    animation: lp-pulse-green 2s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.45); }
    50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.lp-mock-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.6875rem;
    color: var(--lp-muted-2);
}

.lp-mock-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--lp-border);
    border-radius: 0.5rem;
    font-weight: 600;
    color: var(--lp-muted);
    background: var(--lp-bg);
}

.lp-mock-cols {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) repeat(4, minmax(0, 1fr)) 3rem;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.5975rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-muted-2);
    border-bottom: 1px solid var(--lp-border);
    background: #FBFCFE;
}

.lp-mock-cols span:not(:first-child) { text-align: right; }

.lp-mock-row {
    padding: 0.95rem 1.4rem 0.85rem 1.4rem;
    border-bottom: 1px solid #EEF2F7;
    transition: background 0.2s;
}

.lp-mock-row:last-child { border-bottom: none; }
.lp-mock-row:hover { background: #F8FAFF; }

.lp-mock-row-main {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) repeat(4, minmax(0, 1fr)) 3rem;
    gap: 0.5rem;
    align-items: center;
}

.lp-mock-car {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.lp-mock-car img {
    width: 3rem;
    height: 2.35rem;
    object-fit: cover;
    border-radius: 0.45rem;
    flex-shrink: 0;
}

.lp-mock-car-name {
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--lp-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-mock-car-sub {
    font-size: 0.64rem;
    color: var(--lp-muted-2);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.1rem;
}

.lp-mock-val {
    text-align: right;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--lp-navy);
    font-variant-numeric: tabular-nums;
}

.lp-mock-val.green { color: var(--lp-green); }
.lp-mock-val.blue { color: var(--lp-blue); }

.lp-score {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    margin-left: auto;
}

.lp-score-s { background: rgba(16, 185, 129, 0.13); color: #059669; border: 1.5px solid rgba(16, 185, 129, 0.45); }
.lp-score-a { background: rgba(37, 99, 235, 0.10); color: var(--lp-blue); border: 1.5px solid rgba(37, 99, 235, 0.4); }
.lp-score-b { background: rgba(245, 158, 11, 0.12); color: #B45309; border: 1.5px solid rgba(245, 158, 11, 0.45); }

.lp-mock-row-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.6rem;
    padding-left: 3.7rem;
}

.lp-spark { width: 7.5rem; height: 1.5rem; overflow: visible; }

.lp-spark polyline {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.visible .lp-spark polyline,
.lp-mock.animate .lp-spark polyline {
    animation: lp-draw 1.6s ease forwards 0.5s;
}

@keyframes lp-draw { to { stroke-dashoffset: 0; } }

.lp-mock-sub-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.64rem;
    color: var(--lp-muted-2);
    font-weight: 600;
}

/* chips */
.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.18rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.6rem;
    font-weight: 700;
    white-space: nowrap;
}

.lp-chip .cdot { width: 0.4rem; height: 0.4rem; border-radius: 9999px; }

.lp-chip-premium { background: rgba(245, 158, 11, 0.12); color: #B45309; border: 1px solid rgba(245, 158, 11, 0.35); }
.lp-chip-forte { background: rgba(37, 99, 235, 0.09); color: var(--lp-blue); border: 1px solid rgba(37, 99, 235, 0.3); }
.lp-chip-extraue { background: rgba(239, 68, 68, 0.09); color: #DC2626; border: 1px solid rgba(239, 68, 68, 0.3); }
.lp-chip-green { background: rgba(16, 185, 129, 0.1); color: #059669; border: 1px solid rgba(16, 185, 129, 0.3); }
.lp-chip-green .cdot { background: var(--lp-green); }
.lp-chip-amber { background: rgba(245, 158, 11, 0.1); color: #B45309; border: 1px solid rgba(245, 158, 11, 0.35); }
.lp-chip-amber .cdot { background: var(--lp-amber); }

/* ---------- Secções: base ---------- */
.lp-section { padding: 5rem 0; }

.lp-section-head {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto 3rem auto;
}

.lp-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-navy);
    margin: 0 0 0.75rem 0;
}

.lp-section-head p {
    color: var(--lp-muted);
    font-size: 0.9875rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Faixa escura: radar de decisão ---------- */
.lp-darkband {
    background:
        radial-gradient(42rem 20rem at 85% 0%, rgba(37, 99, 235, 0.16), transparent 60%),
        var(--lp-dark);
    padding: 4.25rem 0;
    color: #fff;
}

.lp-darkband h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 2.75rem 0;
}

.lp-darkband-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

@media (min-width: 640px) { .lp-darkband-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-darkband-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-darkcard {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid #1E293B;
    border-radius: var(--lp-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp-darkcard:hover { transform: translateY(-4px); border-color: #334155; }

.lp-darkcard-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-darkcard-icon svg { width: 1.3rem; height: 1.3rem; }

.lp-darkcard h3 { font-size: 0.9875rem; font-weight: 700; margin: 0; }

.lp-darkcard p {
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.55;
    margin: 0;
}

/* ---------- Fluxo: como decide ---------- */
.lp-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .lp-flow { grid-template-columns: repeat(5, 1fr) ; gap: 1.25rem; }
}

.lp-flow-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.5rem 1.25rem;
    box-shadow: var(--lp-card-shadow);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-flow-step:hover { transform: translateY(-4px); box-shadow: var(--lp-card-shadow-lg); }

@media (min-width: 900px) {
    .lp-flow-step:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -1.05rem;
        top: 50%;
        transform: translateY(-50%);
        color: #CBD5E1;
        font-size: 1.1rem;
        font-weight: 700;
        z-index: 2;
    }
}

.lp-flow-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-flow-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-flow-step h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin: 0;
    line-height: 1.35;
}

.lp-flow-step p {
    font-size: 0.72rem;
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0;
}

/* ---------- Radar cards premium ---------- */
.lp-radar-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.lp-radar-head h2 {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lp-navy);
    margin: 0;
}

.lp-radar-head .demo-note {
    display: block;
    font-size: 0.6875rem;
    color: var(--lp-muted-2);
    font-weight: 500;
    margin-top: 0.35rem;
}

.lp-radar-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-blue);
    text-decoration: none;
    white-space: nowrap;
}

.lp-radar-link:hover { text-decoration: underline; }

.lp-radar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}

@media (min-width: 900px) { .lp-radar-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-op-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--lp-card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.lp-op-card:hover { transform: translateY(-6px); box-shadow: var(--lp-card-shadow-lg); }

.lp-op-img {
    position: relative;
    height: 9.5rem;
    overflow: hidden;
}

.lp-op-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lp-op-card:hover .lp-op-img img { transform: scale(1.05); }

.lp-op-img .lp-chip { position: absolute; top: 0.75rem; right: 0.75rem; backdrop-filter: blur(4px); }

.lp-op-body { padding: 1.25rem 1.35rem 1.35rem 1.35rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }

.lp-op-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }

.lp-op-title { font-weight: 800; font-size: 0.9875rem; color: var(--lp-navy); letter-spacing: -0.01em; }

.lp-op-country { font-size: 0.6875rem; color: var(--lp-muted-2); font-weight: 600; margin-top: 0.15rem; }

.lp-op-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.lp-op-stat span {
    display: block;
    font-size: 0.575rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lp-muted-2);
    margin-bottom: 0.25rem;
}

.lp-op-stat strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--lp-navy);
    font-variant-numeric: tabular-nums;
}

.lp-op-stat strong.green { color: var(--lp-green); }
.lp-op-stat strong.blue { color: var(--lp-blue); }

.lp-op-facts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.64rem;
    color: var(--lp-muted);
    font-weight: 600;
}

.lp-op-facts .fact { display: flex; flex-direction: column; gap: 0.3rem; }
.lp-op-facts .fact > span { font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--lp-muted-2); font-weight: 700; }

/* ---------- Porque isto importa ---------- */
.lp-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) { .lp-why-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-why-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.6rem;
    box-shadow: var(--lp-card-shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-why-card:hover { transform: translateY(-4px); box-shadow: var(--lp-card-shadow-lg); }

.lp-why-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 9999px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-why-icon svg { width: 1.25rem; height: 1.25rem; }

.lp-why-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--lp-navy); margin: 0 0 0.4rem 0; }
.lp-why-card p { font-size: 0.78rem; color: var(--lp-muted); line-height: 1.6; margin: 0; }

/* ---------- Cálculo + Planos ---------- */
.lp-calc-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1100px) { .lp-calc-plans { grid-template-columns: 0.85fr 1.15fr; } }

.lp-block-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--lp-navy);
    margin: 0 0 1.25rem 0;
}

.lp-calc-card {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    box-shadow: var(--lp-card-shadow);
    overflow: hidden;
}

.lp-calc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--lp-border);
    background: #FBFCFE;
}

.lp-calc-head strong { font-size: 0.9rem; font-weight: 800; color: var(--lp-navy); }

.lp-calc-body { padding: 0.5rem 1.4rem 1.25rem 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }

@media (max-width: 640px) { .lp-calc-body { grid-template-columns: 1fr; } }

.lp-calc-rows { padding-top: 0.75rem; }

.lp-calc-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    font-size: 0.78rem;
    border-bottom: 1px dashed #EEF2F7;
    color: var(--lp-muted);
}

.lp-calc-row strong { color: var(--lp-navy); font-variant-numeric: tabular-nums; }

.lp-calc-row.total {
    border-bottom: none;
    border-top: 2px solid var(--lp-border);
    margin-top: 0.4rem;
    padding-top: 0.8rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.lp-calc-row.total strong { font-size: 0.9rem; }

.lp-calc-result { padding-top: 0.75rem; display: flex; flex-direction: column; }

.lp-calc-row .green { color: var(--lp-green); }
.lp-calc-row .blue { color: var(--lp-blue); }

.lp-calc-decision {
    margin-top: auto;
    padding: 0.7rem 0.9rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #059669;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.lp-disclaimer {
    margin: 1rem 1.4rem 1.4rem 1.4rem;
    padding: 0.8rem 1rem;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: 0.6rem;
    font-size: 0.6875rem;
    color: #92400E;
    line-height: 1.55;
    display: flex;
    gap: 0.5rem;
}

/* Planos */
.lp-plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

@media (min-width: 768px) { .lp-plans-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-plan {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--lp-card-shadow);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-plan:hover { transform: translateY(-5px); box-shadow: var(--lp-card-shadow-lg); }

.lp-plan.featured {
    border: 2px solid var(--lp-blue);
    box-shadow: 0 12px 32px -10px rgba(37, 99, 235, 0.25);
}

.lp-plan-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-blue), var(--lp-blue-2));
    color: #fff;
    font-size: 0.575rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 9999px;
    box-shadow: 0 4px 10px -3px rgba(37, 99, 235, 0.5);
    white-space: nowrap;
}

.lp-plan-name { font-size: 0.95rem; font-weight: 800; color: var(--lp-navy); }

.lp-plan-price { font-size: 1.9rem; font-weight: 800; color: var(--lp-navy); letter-spacing: -0.03em; }

.lp-plan-price span { font-size: 0.75rem; font-weight: 600; color: var(--lp-muted-2); letter-spacing: 0; }

.lp-plan-desc { font-size: 0.72rem; color: var(--lp-muted); line-height: 1.5; }

.lp-plan ul {
    list-style: none;
    margin: 0;
    padding: 0.9rem 0 0 0;
    border-top: 1px solid var(--lp-border);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.72rem;
    color: var(--lp-muted);
    flex: 1;
}

.lp-plan ul li { display: flex; align-items: flex-start; gap: 0.5rem; }

.lp-plan ul li svg { width: 0.85rem; height: 0.85rem; color: var(--lp-green); flex-shrink: 0; margin-top: 0.12rem; }

.lp-plan .lp-btn { width: 100%; margin-top: 0.5rem; }

.lp-plans-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    font-size: 0.72rem;
    color: var(--lp-muted);
    font-weight: 600;
    text-align: center;
    flex-wrap: wrap;
}

.lp-plans-note svg { width: 1rem; height: 1rem; color: var(--lp-blue); }

/* ---------- Testemunhos ---------- */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 900px) { .lp-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-testimonial {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.6rem;
    box-shadow: var(--lp-card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-testimonial:hover { transform: translateY(-4px); box-shadow: var(--lp-card-shadow-lg); }

.lp-testimonial blockquote {
    margin: 0;
    font-size: 0.85rem;
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-testimonial blockquote strong { color: var(--lp-navy); }

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lp-border);
    margin-top: auto;
}

.lp-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--lp-blue), #7C3AED);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-testimonial-name { font-size: 0.8rem; font-weight: 700; color: var(--lp-navy); }

.lp-testimonial-role { font-size: 0.6875rem; color: var(--lp-muted-2); }

.lp-stars { color: var(--lp-amber); font-size: 0.75rem; letter-spacing: 0.15em; margin-top: 0.15rem; }

/* ---------- FAQ ---------- */
.lp-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 62rem;
    margin: 0 auto;
}

@media (min-width: 900px) { .lp-faq-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.lp-faq-col { display: flex; flex-direction: column; gap: 0.9rem; }

.lp-faq-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 0.8rem;
    box-shadow: var(--lp-card-shadow);
    overflow: hidden;
}

.lp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lp-navy);
    text-align: left;
}

.lp-faq-q svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--lp-muted-2);
    transition: transform 0.3s ease;
}

.lp-faq-item.open .lp-faq-q svg { transform: rotate(180deg); }

.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq-a p {
    margin: 0;
    padding: 0 1.25rem 1.1rem 1.25rem;
    font-size: 0.78rem;
    color: var(--lp-muted);
    line-height: 1.65;
}

/* ---------- CTA final ---------- */
.lp-cta {
    background:
        radial-gradient(38rem 18rem at 15% 100%, rgba(37, 99, 235, 0.25), transparent 60%),
        radial-gradient(30rem 16rem at 90% 0%, rgba(16, 185, 129, 0.12), transparent 60%),
        var(--lp-dark);
    padding: 4.5rem 0;
    color: #fff;
}

.lp-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
}

@media (min-width: 900px) {
    .lp-cta-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.lp-cta h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem 0;
}

.lp-cta p { color: #94A3B8; font-size: 0.9rem; margin: 0; line-height: 1.6; }

.lp-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; flex-shrink: 0; }

@media (min-width: 900px) { .lp-cta-actions { align-items: flex-end; } }

.lp-cta-micro {
    display: flex;
    gap: 1.25rem;
    font-size: 0.6875rem;
    color: #64748B;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
}

.lp-cta-micro span { display: inline-flex; align-items: center; gap: 0.35rem; }

.lp-cta-micro svg { width: 0.85rem; height: 0.85rem; color: var(--lp-green); }

/* ---------- Credibilidade ---------- */
.lp-cred-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) { .lp-cred-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .lp-cred-grid { grid-template-columns: repeat(4, 1fr); } }

.lp-cred-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 1.35rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    box-shadow: var(--lp-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-cred-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-card-shadow-lg);
}

.lp-cred-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-cred-icon svg { width: 1.15rem; height: 1.15rem; }

.lp-cred-item h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-navy);
    margin: 0 0 0.3rem 0;
}

.lp-cred-item p {
    font-size: 0.72rem;
    color: var(--lp-muted);
    line-height: 1.55;
    margin: 0;
}

/* ---------- Footer Premium ---------- */
.lp-footer {
    background:
        radial-gradient(35rem 14rem at 15% 100%, rgba(37, 99, 235, 0.08), transparent 60%),
        var(--lp-dark);
    padding: 4rem 0 2.5rem 0;
    color: #94A3B8;
    font-size: 0.8125rem;
    border-top: 1px solid #1E293B;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #1E293B;
}

@media (min-width: 1024px) {
    .lp-footer-grid {
        grid-template-columns: 1.6fr repeat(4, 1fr);
    }
}

.lp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.lp-footer .lp-logo-mark {
    box-shadow: none;
}

.lp-footer .lp-logo-name {
    color: #fff;
}

.lp-footer-desc {
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    max-width: 18rem;
}

.lp-footer-col h4 {
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    margin: 0 0 1rem 0;
}

.lp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lp-footer-col a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.2s;
}

.lp-footer-col a:hover { color: #fff; }

.lp-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.72rem;
}

@media (min-width: 768px) {
    .lp-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.lp-footer-bottom p { margin: 0; }

.lp-footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.lp-footer-disclaimer {
    font-size: 0.625rem;
    color: #475569;
    font-weight: 400;
    max-width: 50rem;
    line-height: 1.5;
}

/* ---------- Animações de entrada (scroll reveal) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* Entrada do hero no load */
@keyframes lp-hero-in {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

.lp-hero-copy > * { animation: lp-hero-in 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) backwards; }
.lp-hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.lp-hero-copy > *:nth-child(2) { animation-delay: 0.13s; }
.lp-hero-copy > *:nth-child(3) { animation-delay: 0.21s; }
.lp-hero-copy > *:nth-child(4) { animation-delay: 0.29s; }
.lp-hero-copy > *:nth-child(5) { animation-delay: 0.37s; }

.lp-mock-wrap { animation: lp-hero-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s backwards; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .lp-hero-copy > *, .lp-mock-wrap { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
    .lp-spark polyline { animation: none !important; stroke-dashoffset: 0 !important; }
    .lp-hero-badge .dot, .lp-mock-title .live-dot { animation: none !important; }
}
