/*
 * laudario.css — CSS base compartilhado entre a landing (index.php) e o blog (/blog/).
 *
 * Antes vivia inline num <style> dentro do index.php. Virou arquivo para que a landing e
 * o blog usem a MESMA fonte: assim um restyle aqui chega nos dois e nao ha choque de
 * layout ao navegar entre eles. Nao duplique estas regras em outro lugar.
 *
 * Nao contem url() nem PHP — pode ser servido como estatico e cacheado pelo navegador.
 */
/* ════════════════════ DESIGN SYSTEM ════════════════════ */
:root {
    --ink:        #101828;
    --ink-2:      #344054;
    --gray:       #667085;
    --gray-2:     #98a2b3;
    --line:       #eaecf0;
    --line-2:     #d0d5dd;
    --paper:      #ffffff;
    --paper-2:    #fafbfc;
    --brand:      #0d6efd;
    --brand-dark: #0a58ca;
    --brand-soft: #eef5ff;
    --brand-line: #bfdbfe;
    --ok:         #079455;
    --ok-soft:    #ecfdf3;
    --ok-line:    #abefc6;
    --warn:       #b54708;
    --warn-soft:  #fffaeb;
    --max:        1140px;
    --r:          16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sect { padding: 104px 0; }

/* tipografia */
.kicker {
    display: inline-block;
    font-size: 13px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 16px;
}
h2.title {
    font-size: clamp(30px, 4.2vw, 46px);
    font-weight: 800; letter-spacing: -.03em; line-height: 1.12;
}
.sub {
    color: var(--gray); font-size: 18px; line-height: 1.7;
    max-width: 640px; margin-top: 16px;
}
.center { text-align: center; }
.center .sub { margin-left: auto; margin-right: auto; }

/* botões */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: inherit; font-weight: 700; font-size: 16px;
    border-radius: 12px; padding: 15px 28px;
    cursor: pointer; border: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--brand); color: #fff;
    box-shadow: 0 1px 2px rgba(16,24,40,.06), 0 10px 24px -6px rgba(13,110,253,.45);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-quiet {
    background: #fff; color: var(--ink-2);
    border: 1px solid var(--line-2);
    box-shadow: 0 1px 2px rgba(16,24,40,.05);
}
.btn-quiet:hover { background: var(--paper-2); }
.btn-big { padding: 18px 36px; font-size: 17px; border-radius: 14px; }
.under-btn {
    display: flex; gap: 18px; flex-wrap: wrap;
    margin-top: 14px; font-size: 13.5px; color: var(--gray);
}
.under-btn span::before { content: '✓'; color: var(--ok); font-weight: 800; margin-right: 6px; }

/* reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: none; }

/* ════════════════════ HEADER ════════════════════ */
.hd {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.hd-in {
    max-width: var(--max); margin: 0 auto; padding: 0 24px;
    height: 68px; display: flex; align-items: center; gap: 36px;
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo img { width: 34px; height: 34px; object-fit: contain; }
.font-logo { font-family: 'Galada', cursive; font-weight: 400; font-size: 25px; color: var(--ink); margin-top: 4px; }
.hd nav { display: flex; gap: 28px; margin: 0 auto; }
.hd nav a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.hd nav a:hover { color: var(--brand); }
.hd-actions { display: flex; align-items: center; gap: 18px; }
.hd-login { font-size: 14.5px; font-weight: 700; color: var(--ink-2); }
.hd .btn { padding: 11px 20px; font-size: 14.5px; }
@media (max-width: 900px) { .hd nav, .hd-login { display: none; } .hd-in { justify-content: space-between; } }

/* ════════════════════ HERO ════════════════════ */
.hero { position: relative; padding: 92px 0 0; overflow: hidden; }
.hero::before {
    content: ''; position: absolute;
    top: -340px; left: 50%; transform: translateX(-50%);
    width: 1200px; height: 700px;
    background: radial-gradient(closest-side, rgba(13,110,253,.10), transparent);
    pointer-events: none;
}
.hero-in { position: relative; max-width: 880px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-pill {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; border: 1px solid var(--line);
    border-radius: 999px; padding: 7px 16px 7px 8px;
    font-size: 13.5px; font-weight: 600; color: var(--ink-2);
    box-shadow: 0 1px 3px rgba(16,24,40,.07);
    margin-bottom: 28px;
}
.hero-pill b {
    background: var(--ok-soft); color: var(--ok);
    border-radius: 999px; padding: 3px 10px;
    font-size: 12px; font-weight: 800;
}
.hero h1 {
    font-size: clamp(38px, 6.4vw, 66px);
    font-weight: 800; letter-spacing: -.042em; line-height: 1.05;
}
.hero h1 em {
    font-family: 'Lora', serif; font-style: italic; font-weight: 500;
    color: var(--brand);
}
.hero-sub {
    color: var(--gray); font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7; max-width: 620px; margin: 24px auto 0;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-under { justify-content: center; margin-top: 18px; }

/* prova social compacta */
.hero-proof {
    display: inline-flex; align-items: center; gap: 14px;
    margin-top: 42px;
}
.avs { display: flex; }
.avs i {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2.5px solid #fff; margin-left: -9px;
    font-style: normal; font-size: 11.5px; font-weight: 800; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 3px rgba(16,24,40,.18);
}
.avs i:first-child { margin-left: 0; }
.hero-proof p { font-size: 13.5px; color: var(--gray); text-align: left; line-height: 1.45; }
.hero-proof p b { color: var(--ink); }
.stars { color: #f59e0b; font-size: 13px; letter-spacing: 1.5px; }

/* mock do produto */
.shot {
    position: relative; max-width: 1020px;
    margin: 64px auto -2px; padding: 0 24px;
}
.shot-frame {
    background: linear-gradient(180deg, #1b2336, #131a2b);
    border-radius: 22px 22px 0 0;
    padding: 12px 12px 0;
    box-shadow: 0 -1px 0 rgba(255,255,255,.12) inset, 0 30px 70px -20px rgba(16,24,40,.35);
}
.shot-bar { display: flex; align-items: center; gap: 7px; padding: 6px 8px 12px; }
.shot-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.shot-bar .addr {
    flex: 1; max-width: 380px; margin: 0 auto;
    background: rgba(255,255,255,.09); border-radius: 8px;
    color: #aab4cd; font-size: 12px; text-align: center; padding: 4px 12px;
}
.shot-img {
    display: block; width: 100%;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--line);
    border-bottom: none;
}

/* faixa de logos/claims */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.strip-in {
    max-width: var(--max); margin: 0 auto; padding: 20px 24px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 44px;
    font-size: 13.5px; font-weight: 700; color: var(--gray);
}
.strip-in span { display: inline-flex; align-items: center; gap: 8px; }
.strip-in svg { width: 16px; height: 16px; stroke: var(--brand); }

/* ════════════════════ NÚMEROS ════════════════════ */
.nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.num-c {
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 36px 30px; background: #fff;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.num-c .n {
    font-size: clamp(38px, 4.6vw, 54px); font-weight: 800;
    letter-spacing: -.04em; line-height: 1; color: var(--brand);
    font-variant-numeric: tabular-nums;
}
.num-c .l { font-weight: 700; margin-top: 12px; }
.num-c .s { color: var(--gray); font-size: 14px; margin-top: 4px; }
@media (max-width: 800px) { .nums { grid-template-columns: 1fr; } }

/* ════════════════════ DOR ════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.loss-list { list-style: none; margin-top: 28px; }
.loss-list li {
    display: flex; gap: 14px; padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2); line-height: 1.6;
}
.loss-list li:last-child { border-bottom: none; }
.loss-list .x {
    width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px;
    background: #fef3f2; color: #d92d20;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; margin-top: 1px;
}
.math-card {
    background: var(--ink); color: #fff;
    border-radius: 20px; padding: 40px;
    box-shadow: 0 26px 60px -16px rgba(16,24,40,.45);
}
.math-card .row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 15px; color: #cdd5e1;
}
.math-card .row b { font-size: 19px; color: #fff; font-variant-numeric: tabular-nums; }
.math-card .total { border: none; padding-top: 22px; }
.math-card .total b { font-size: 33px; letter-spacing: -.03em; color: #8ec2ff; }
.math-card .note { font-size: 13px; color: #94a0b8; margin-top: 14px; line-height: 1.6; }

/* ════════════════════ PASSOS ════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; counter-reset: st; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
    position: relative; counter-increment: st;
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 34px 28px; background: #fff;
}
.step::before {
    content: counter(st, decimal-leading-zero);
    font-size: 13px; font-weight: 800; color: var(--brand);
    letter-spacing: .08em;
    display: inline-block; margin-bottom: 18px;
    background: var(--brand-soft); border-radius: 999px; padding: 5px 13px;
}
.step h3 { font-size: 19px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 10px; }
.step p { color: var(--gray); font-size: 15px; line-height: 1.7; }

/* ════════════════════ GALERIA DE PRINTS ════════════════════ */
.gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 900px) { .gal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal { grid-template-columns: 1fr; } }
.gal-card {
    border: 1px solid var(--line); border-radius: var(--r);
    background: #fff; overflow: hidden;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
    transition: box-shadow .2s ease, transform .2s ease;
}
.gal-card:hover { box-shadow: 0 18px 44px -14px rgba(16,24,40,.16); transform: translateY(-3px); }
.gal-thumb {
    position: relative; cursor: zoom-in; overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.gal-thumb::after {
    content: '🔍';
    position: absolute; top: 10px; right: 10px;
    background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
    border-radius: 8px; padding: 5px 8px;
    font-size: 14px; opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none;
}
.gal-thumb:hover::after { opacity: 1; }
.gal-thumb img { display: block; width: 100%; background: var(--paper-2); }
.gal-thumb-placeholder {
    width: 100%; aspect-ratio: 16/9;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; color: var(--gray-2); font-size: 13.5px; font-weight: 600;
    cursor: default;
}
.gal-thumb-placeholder svg { width: 36px; height: 36px; stroke: var(--gray-2); }
.gal-cap { padding: 20px 24px; }
.gal-cap h3 { font-size: 16.5px; font-weight: 800; letter-spacing: -.01em; }
.gal-cap p { color: var(--gray); font-size: 14px; line-height: 1.65; margin-top: 5px; }

/* ════════════════════ LIGHTBOX ════════════════════ */
.lb-bg {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(10,14,22,.88); backdrop-filter: blur(6px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.lb-bg.show { display: flex; }
.lb-wrap {
    position: relative; max-width: min(90vw, 1100px); width: 100%;
    animation: lbPop .22s ease;
}
@keyframes lbPop { from { opacity: 0; transform: scale(.95); } }
.lb-wrap img { display: block; width: 100%; border-radius: 14px; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
.lb-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px; border-radius: 50%;
    border: none; background: #fff; color: var(--ink);
    font-size: 20px; cursor: pointer; line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    display: flex; align-items: center; justify-content: center;
}
.lb-cap {
    margin-top: 14px; color: rgba(255,255,255,.8);
    font-size: 14px; text-align: center; line-height: 1.5;
}

/* ════════════════════ FEATURES ════════════════════ */
.bento {
    display: grid; gap: 24px; margin-top: 56px;
    grid-template-columns: repeat(6, 1fr);
}
.bcell {
    border: 1px solid var(--line); border-radius: var(--r);
    background: #fff; padding: 32px;
    transition: box-shadow .2s ease, transform .2s ease;
}
.bcell:hover { box-shadow: 0 16px 40px -12px rgba(16,24,40,.14); transform: translateY(-3px); }
.b-3 { grid-column: span 3; }
.b-2 { grid-column: span 2; }
@media (max-width: 900px) { .b-3, .b-2 { grid-column: span 6; } }
.bic {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--brand-soft); color: var(--brand);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.bic svg { width: 21px; height: 21px; stroke: currentColor; }
.bcell h3 { font-size: 18px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 8px; }
.bcell p { color: var(--gray); font-size: 14.5px; line-height: 1.7; }
.bcell.dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.bcell.dark p { color: #aab4cd; }
.bcell.dark .bic { background: rgba(142,194,255,.16); color: #8ec2ff; }

/* ════════════════════ EXAMES ════════════════════ */
.exgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 1000px) { .exgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .exgrid { grid-template-columns: 1fr; } }
.excard { border: 1px solid var(--line); border-radius: var(--r); background: #fff; padding: 26px; }
.excard header { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.excard h3 { font-size: 16px; font-weight: 800; letter-spacing: -.01em; }
.excard .qt {
    font-size: 12px; font-weight: 800;
    background: var(--brand-soft); color: var(--brand);
    border-radius: 999px; padding: 4px 11px; white-space: nowrap;
}
.extags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.extags span {
    font-size: 12.5px; font-weight: 600; color: var(--ink-2);
    border: 1px solid var(--line); background: var(--paper-2);
    border-radius: 999px; padding: 5px 11px;
}
.extags .more { color: var(--brand); border-color: var(--brand-line); background: var(--brand-soft); }

/* ════════════════════ DEPOIMENTOS ════════════════════ */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
    border: 1px solid var(--line); border-radius: var(--r);
    background: #fff; padding: 32px;
    display: flex; flex-direction: column;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
.quote p {
    font-size: 15.5px; color: var(--ink-2); line-height: 1.8;
    flex: 1;
}
.quote p::before { content: '“'; color: var(--brand); font-size: 30px; font-weight: 800; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.q-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.q-av {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 800; font-size: 14px;
}
.q-who b { display: block; font-size: 14.5px; }
.q-who small { color: var(--gray); font-size: 12.5px; line-height: 1.45; display: block; }


/* ════════════════════ CASE ════════════════════ */
.case-box {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
    border: 1px solid var(--line); border-radius: 20px;
    overflow: hidden; background: #fff; margin-bottom: 56px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04);
}
@media (max-width: 800px) { .case-box { grid-template-columns: 1fr; } }
.case-quote { padding: 44px; }
.case-quote .q-tag {
    display: inline-block; font-size: 12px; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    background: var(--brand-soft); color: var(--brand);
    border-radius: 999px; padding: 5px 13px; margin-bottom: 20px;
}
.case-quote blockquote { font-size: 19px; line-height: 1.75; color: var(--ink-2); font-weight: 500; }
.case-metrics {
    background: var(--ink); color: #fff;
    padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.case-metrics .m b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: #8ec2ff; line-height: 1.1; }
.case-metrics .m span { font-size: 14px; color: #aab4cd; }

/* ════════════════════ PLANOS ════════════════════ */
.toggle {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--paper-2); border: 1px solid var(--line);
    border-radius: 999px; padding: 5px; margin-top: 36px;
}
.toggle button {
    font-family: inherit; font-size: 14px; font-weight: 700;
    border: none; background: transparent; color: var(--gray);
    border-radius: 999px; padding: 10px 22px; cursor: pointer;
    transition: .18s ease;
}
.toggle button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(16,24,40,.12); }
.toggle .off-tag {
    font-size: 11.5px; font-weight: 800; color: var(--ok);
    background: var(--ok-soft); border-radius: 999px; padding: 3px 9px; margin-left: 6px;
}
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; align-items: stretch; }
@media (max-width: 1180px) { .plans { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; max-width: 460px; } }
.plan {
    border: 1px solid var(--line); border-radius: 20px;
    background: #fff; padding: 28px;
    display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    will-change: transform;
}
.plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 56px -16px rgba(16,24,40,.14);
    border-color: var(--brand-line);
}
.plan.hot {
    border: 2px solid var(--brand);
    box-shadow: 0 24px 60px -16px rgba(13,110,253,.30);
    position: relative;
}
.plan.hot:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 70px -16px rgba(13,110,253,.38);
    border-color: var(--brand);
}

/* entrada escalonada */
.plan:nth-child(1) { animation: planIn .5s ease both; animation-delay: .05s; }
.plan:nth-child(2) { animation: planIn .5s ease both; animation-delay: .15s; }
.plan:nth-child(3) { animation: planIn .5s ease both; animation-delay: .25s; }
.plan:nth-child(4) { animation: planIn .5s ease both; animation-delay: .35s; }
@keyframes planIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.plan-soon {
    display: block; text-align: center; width: 100%; margin-top: auto;
    padding: 13px 16px; border-radius: 12px;
    background: #f1f5f9; color: #475569;
    font-weight: 700; font-size: 14px;
    border: 1px dashed #cbd5e1; cursor: not-allowed;
}
.plan-soon svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 6px; }
.plan .flag {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: #fff;
    font-size: 12px; font-weight: 800; letter-spacing: .03em;
    border-radius: 999px; padding: 6px 16px; white-space: nowrap;
}
.plan .pname { font-size: 14px; font-weight: 800; color: var(--brand); text-transform: uppercase; letter-spacing: .08em; }
.plan h3 { font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0 10px; }
.plan .pdesc { color: var(--gray); font-size: 14.5px; line-height: 1.65; min-height: 96px; }
.pr { margin: 22px 0 2px; display: flex; align-items: baseline; gap: 6px; }
.pr .cur { font-size: 17px; font-weight: 700; color: var(--gray); }
.pr .val { font-size: 46px; font-weight: 800; letter-spacing: -.045em; font-variant-numeric: tabular-nums; }
.pr .per { color: var(--gray); font-size: 15px; }
.pnote { font-size: 13px; color: var(--gray); min-height: 38px; }
.pnote .save { color: var(--ok); font-weight: 800; }
.pfeats { list-style: none; margin: 24px 0 28px; }
.pfeats li.pfeats-header { padding: 0 0 4px; font-size: 13px; font-weight: 700; color: var(--gray); }
.pfeats li.pfeats-header::before { display: none; }
.pfeats li {
    display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2);
    padding: 7px 0; line-height: 1.55;
}
.pfeats li::before {
    content: '✓';
    width: 21px; height: 21px; flex-shrink: 0; border-radius: 50%;
    background: var(--ok-soft); color: var(--ok);
    font-size: 11px; font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.plan .btn { width: 100%; margin-top: auto; }

.assure {
    display: flex; align-items: center; gap: 22px;
    max-width: 720px; margin: 56px auto 0;
    border: 1.5px dashed var(--ok-line); border-radius: 18px;
    background: var(--ok-soft); padding: 26px 30px;
}
.assure .ic {
    width: 54px; height: 54px; flex-shrink: 0; border-radius: 16px;
    background: var(--ok); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
}
.assure .ic svg { width: 26px; height: 26px; stroke: #fff; }
.assure b { font-size: 16.5px; }
.assure p { color: #475467; font-size: 14px; line-height: 1.65; margin-top: 4px; }
@media (max-width: 640px) { .assure { flex-direction: column; text-align: center; } }


/* ════════════════════ TABELA DE PLANOS ════════════════════ */
.ptable-wrap { margin-top: 64px; overflow-x: auto; }
.ptable { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; min-width: 640px; }
.ptable th, .ptable td { padding: 15px 20px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.ptable thead th { background: var(--paper-2); font-weight: 800; text-align: center; }
.ptable thead th:first-child { text-align: left; }
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable td { text-align: center; }
.ptable td:first-child { text-align: left; color: var(--ink-2); font-weight: 600; }
.ptable .y { color: var(--ok); font-weight: 800; }
.ptable .n { color: var(--gray-2); }
.ptable .col-hot { background: var(--brand-soft); }
.ptable thead .col-hot { color: var(--brand); }

/* ════════════════════ FAQ ════════════════════ */
.faq { max-width: 760px; margin: 52px auto 0; }
.faq details {
    border: 1px solid var(--line); border-radius: 14px;
    background: #fff; margin-bottom: 12px;
    overflow: hidden;
}
.faq summary {
    list-style: none; cursor: pointer;
    font-weight: 700; font-size: 16px;
    padding: 22px 26px;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '+'; font-size: 22px; font-weight: 400; color: var(--gray-2);
    transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { color: var(--brand); }
.faq .a { padding: 0 26px 24px; color: var(--gray); font-size: 15px; line-height: 1.75; }

/* ════════════════════ CTA FINAL ════════════════════ */
.final {
    background: var(--ink);
    border-radius: 28px;
    padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 72px);
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.final::before {
    content: ''; position: absolute;
    top: -45%; left: 50%; transform: translateX(-50%);
    width: 760px; height: 480px;
    background: radial-gradient(closest-side, rgba(13,110,253,.34), transparent);
    pointer-events: none;
}
.final > * { position: relative; }
.final h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; letter-spacing: -.035em; line-height: 1.12; }
.final p { color: #aab4cd; font-size: 17px; max-width: 560px; margin: 18px auto 0; line-height: 1.7; }
.final .under-btn { justify-content: center; color: #8c97b1; }
.final .under-btn span::before { color: #6ee7b7; }

/* ════════════════════ FORM ════════════════════ */
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .formgrid { grid-template-columns: 1fr; gap: 40px; } }
.lead-box {
    border: 1px solid var(--line); border-radius: 20px;
    background: #fff; padding: 38px;
    box-shadow: 0 24px 60px -20px rgba(16,24,40,.16);
}
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; color: var(--ink-2); }
.fg input, .fg select {
    width: 100%; font-family: inherit; font-size: 15px;
    border: 1px solid var(--line-2); border-radius: 11px;
    padding: 13px 15px; color: var(--ink);
    outline: none; background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.fg input:focus, .fg select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(13,110,253,.12);
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .frow { grid-template-columns: 1fr; } }
.fmsg { margin-top: 14px; font-size: 14px; text-align: center; font-weight: 600; }
.fmsg.ok { color: var(--ok); }
.fmsg.err { color: #d92d20; }
.chklist { list-style: none; margin-top: 26px; }
.chklist li { display: flex; gap: 12px; padding: 9px 0; color: var(--ink-2); }
.chklist li::before { content: '✓'; color: var(--ok); font-weight: 800; }


/* ════════════════════ EXIT INTENT ════════════════════ */
.exit-bg {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(16,24,40,.55); backdrop-filter: blur(3px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-bg.show { display: flex; }
.exit-card {
    background: #fff; border-radius: 22px; max-width: 480px; width: 100%;
    padding: 40px; text-align: center; position: relative;
    box-shadow: 0 40px 100px rgba(16,24,40,.4);
    animation: exitPop .28s ease;
}
@keyframes exitPop { from { opacity: 0; transform: scale(.94) translateY(12px); } }
.exit-x {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 10px;
    border: none; background: var(--paper-2); color: var(--gray);
    font-size: 18px; cursor: pointer;
}
.exit-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.exit-card p { color: var(--gray); font-size: 15px; line-height: 1.7; margin: 14px 0 24px; }

/* ════════════════════ FOOTER ════════════════════ */
.ft { border-top: 1px solid var(--line); padding: 36px 0; }
.ft-in {
    max-width: var(--max); margin: 0 auto; padding: 0 24px;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
    color: var(--gray); font-size: 14px;
}
.ft a { font-weight: 600; color: var(--ink-2); }
.ft a:hover { color: var(--brand); }
.ft .lnks { display: flex; gap: 28px; }


.lgpd-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--ok-soft); color: var(--ok);
    border: 1px solid var(--ok-line); border-radius: 999px;
    padding: 6px 14px; font-size: 12.5px; font-weight: 800;
    cursor: help; white-space: nowrap;
}

/* ════════════════════ STICKY MOBILE ════════════════════ */
.mcta {
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 110;
    display: none;
}
.mcta .btn { width: 100%; padding: 17px; box-shadow: 0 14px 40px -8px rgba(13,110,253,.55); }
@media (max-width: 900px) {
    .mcta.show { display: block; }
    .sect { padding: 76px 0; }
}

/* ════════════════════ STICKY BAR (desktop + mobile) ════════════════════ */
.stickybar {
    position: fixed; top: 68px; left: 0; right: 0; z-index: 90;
    background: var(--ink); color: #fff;
    padding: 10px 24px;
    display: flex; align-items: center; justify-content: center; gap: 18px;
    flex-wrap: wrap;
    transform: translateY(-100%); opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
    font-size: 14px;
}
.stickybar.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.stickybar strong { font-weight: 800; }
.stickybar .sb-btn {
    background: var(--brand); color: #fff;
    border-radius: 10px; padding: 8px 18px;
    font-weight: 700; font-size: 13.5px;
    white-space: nowrap;
    transition: background .15s;
}
.stickybar .sb-btn:hover { background: var(--brand-dark); }

/* ════════════════════ URGÊNCIA / SELOS ════════════════════ */
.urgency-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fffaeb; border: 1px solid #fde68a;
    border-radius: 10px; padding: 8px 14px;
    font-size: 13px; color: #92400e; font-weight: 600;
    margin-top: 10px;
}
.urgency-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.trust-seals {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    margin-top: 14px;
}
.trust-seal {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--paper-2); border: 1px solid var(--line);
    border-radius: 8px; padding: 5px 11px;
    font-size: 12px; font-weight: 600; color: var(--gray);
}
.trust-seal svg { width: 14px; height: 14px; stroke: var(--ok); }

/* ════════════════════ SKELETON SHIMMER ════════════════════ */
.gal-thumb-placeholder {
    position: relative; overflow: hidden;
}
.gal-thumb-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
    from { background-position: -200% 0; }
    to   { background-position:  200% 0; }
}

/* ════════════════════ BOTÃO TOPO ════════════════════ */
.back-top {
    position: fixed; bottom: 24px; right: 20px; z-index: 120;
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--ink); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 4px 16px rgba(16,24,40,.22);
    opacity: 0; transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--brand); }
.back-top svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 2.4; }
@media (max-width: 900px) { .back-top { bottom: 80px; } }
