
body.pg-apresentacao {
    /* Tokens da landing */
    --lp-navy-950: #0b1e35;
    --lp-navy-900: #102844;
    --lp-navy-800: #17304f;
    --lp-navy-700: #1e3d64;
    --lp-primary:  #2c5b9c;
    --lp-primary-2:#264e86;
    --lp-ice:      #eef4fb;   /* branco-gelo (base dos botões claros) */
    --lp-accent:   #9cc3ee;   /* azul-claro da família do logo, p/ destaques no escuro */
    --lp-green:    #25d366;
    --lp-bg:       #f4f7fb;
    --lp-surface:  #ffffff;
    --lp-border:   #dfe7f0;
    --lp-text:     #16293f;
    --lp-muted:    #5c7189;
    --lp-r:        12px;
    --lp-r-lg:     16px;
    --lp-r-full:   999px;
    --lp-shadow:    0 2px 8px rgba(16, 41, 74, .06);
    --lp-shadow-md: 0 8px 24px rgba(16, 41, 74, .1);
    --lp-shadow-lg: 0 20px 48px rgba(11, 30, 53, .2);

    margin: 0;
    background: var(--lp-bg);
    color: var(--lp-text);
    /* Mesma fonte do sistema de votação (Inter), com fallbacks de sistema */
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.pg-apresentacao * { box-sizing: border-box; }
body.pg-apresentacao img { max-width: 100%; }
/* Só remove o sublinhado — NÃO forçar cor aqui: uma regra "color" neste
   seletor ganharia (especificidade) das classes .lp-topbar__link etc. e
   deixaria os menus escuros/invisíveis sobre o hero. */
body.pg-apresentacao a { text-decoration: none; }

body.pg-apresentacao .lp-container {
    width: min(1180px, 100% - 2.5rem);
    margin-inline: auto;
}

/* Âncoras não ficam escondidas atrás do topbar fixo */
body.pg-apresentacao section[id] { scroll-margin-top: 84px; }
html:has(body.pg-apresentacao) { scroll-behavior: smooth; }

.lp-topbar {
    position: fixed; inset: 0 0 auto 0; z-index: 900;
    padding: .8rem 0;
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.lp-topbar.is-solid {
    background: rgba(11, 30, 53, .96);
    box-shadow: 0 3px 18px rgba(11, 30, 53, .3);
    padding: .55rem 0;
}
.lp-topbar__inner { display: flex; align-items: center; gap: 1rem; }
.lp-topbar__brand { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.lp-topbar__logo {
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff; object-fit: contain; flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, .25);
}
.lp-topbar__name { display: flex; flex-direction: column; line-height: 1.1; }
.lp-topbar__name strong { color: #fff; font-size: 1.1rem; letter-spacing: .06em; font-weight: 800; }
.lp-topbar__name span { color: rgba(255, 255, 255, .6); font-size: .62rem; letter-spacing: .02em; }
.lp-topbar__nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.lp-topbar__link {
    color: rgba(255, 255, 255, .82); font-size: .84rem; font-weight: 600;
    padding: .45rem .8rem; border-radius: var(--lp-r-full);
    transition: background .2s, color .2s;
}
.lp-topbar__link:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.lp-btn-acessar {
    display: inline-flex; align-items: center; gap: .45rem;
    background: linear-gradient(180deg, #ffffff, var(--lp-ice));
    color: var(--lp-primary-2); font-weight: 800; font-size: .85rem;
    padding: .58rem 1.25rem; border-radius: var(--lp-r-full);
    box-shadow: 0 3px 14px rgba(3, 12, 24, .3);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
}
.lp-btn-acessar:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(3, 12, 24, .4); color: var(--lp-primary-2); }

/* Menu hambúrguer (mobile) */
.lp-topbar__toggle {
    display: none; margin-left: auto;
    background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
    color: #fff; font-size: 1.2rem; line-height: 1;
    width: 42px; height: 42px; border-radius: 10px; cursor: pointer;
}
@media (max-width: 920px) {
    .lp-topbar__nav {
        position: fixed; top: 64px; right: 1rem; left: 1rem;
        flex-direction: column; align-items: stretch; gap: .35rem;
        background: rgba(11, 30, 53, .98);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--lp-r); padding: .9rem;
        box-shadow: var(--lp-shadow-lg);
        opacity: 0; visibility: hidden; transform: translateY(-8px);
        transition: opacity .2s, transform .2s, visibility .2s;
    }
    .lp-topbar__nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
    .lp-topbar__link { padding: .7rem .9rem; }
    .lp-btn-acessar { justify-content: center; margin-top: .35rem; }
    .lp-topbar__toggle { display: inline-flex; align-items: center; justify-content: center; }
}

.lp-hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #0b1e35 0%, #17304f 45%, #1e3d64 100%);
    color: #fff;
    padding: 8.2rem 0 5.2rem;
    min-height: 88vh;
    display: flex; align-items: center;
}
.lp-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 72% 42%, rgba(90, 148, 214, .14) 0%, transparent 70%);
}
.lp-hero::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--lp-bg));
    pointer-events: none;
}
.lp-hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 3rem; align-items: center;
}
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--lp-accent);
    border: 1px solid rgba(156, 195, 238, .35);
    background: rgba(156, 195, 238, .08);
    padding: .32rem .9rem; border-radius: var(--lp-r-full);
    margin-bottom: 1.25rem;
}
.lp-hero__title {
    font-size: clamp(1.95rem, 4.4vw, 3.05rem);
    font-weight: 800; line-height: 1.14; letter-spacing: -.01em;
    margin: 0 0 1.1rem;
}
.lp-hero__title .accent { color: var(--lp-accent); }
.lp-hero__sub {
    font-size: clamp(.92rem, 1.9vw, 1.04rem);
    color: rgba(255, 255, 255, .74); line-height: 1.7;
    max-width: 540px; margin: 0 0 2rem;
}
.lp-hero__btns { display: flex; gap: .85rem; flex-wrap: wrap; }
.lp-btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(180deg, #ffffff, var(--lp-ice));
    color: var(--lp-primary-2); border: none;
    padding: .8rem 1.8rem; border-radius: var(--lp-r-full);
    font-weight: 800; font-size: .92rem; cursor: pointer;
    box-shadow: 0 4px 18px rgba(3, 12, 24, .32);
    transition: transform .2s, box-shadow .2s;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(3, 12, 24, .45); color: var(--lp-primary-2); }
.lp-btn-outline {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .92);
    border: 1.5px solid rgba(255, 255, 255, .28);
    padding: .8rem 1.8rem; border-radius: var(--lp-r-full);
    font-weight: 700; font-size: .92rem; cursor: pointer;
    transition: background .2s, border-color .2s;
}
.lp-btn-outline:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .5); color: #fff; }
/* Botão azul institucional (para seções claras) */
.lp-btn-blue {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; border: none;
    padding: .8rem 1.8rem; border-radius: var(--lp-r-full);
    font-weight: 700; font-size: .92rem; cursor: pointer;
    box-shadow: 0 4px 16px rgba(44, 91, 156, .26);
    transition: transform .2s, box-shadow .2s;
}
.lp-btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(44, 91, 156, .38); color: #fff; }
.lp-hero__badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.9rem; }
.lp-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .74rem; font-weight: 600; color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    padding: .32rem .75rem; border-radius: var(--lp-r-full);
}
.lp-badge i { color: var(--lp-gold-light); }

/* Demonstrativo em formato de celular (estático, sóbrio) */
.lp-hero__visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.lp-phone {
    position: relative; width: min(288px, 78vw);
    background: linear-gradient(160deg, #1a2940, #0e1c30);
    border-radius: 34px; padding: 11px;
    box-shadow: var(--lp-shadow-lg), inset 0 0 0 2px rgba(255, 255, 255, .06);
}
.lp-phone__notch {
    position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
    width: 34%; height: 20px; background: #0e1c30;
    border-radius: 0 0 12px 12px; z-index: 2;
}
.lp-phone__screen {
    background: #f2f6fb; border-radius: 25px; overflow: hidden;
    min-height: 460px; display: flex; flex-direction: column;
}
.lp-phone__head {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; padding: 32px 16px 13px;
}
.lp-phone__head-title { font-size: .78rem; font-weight: 700; display: flex; align-items: center; gap: .4rem; }
.lp-phone__head-sub { font-size: .6rem; opacity: .78; margin-top: 2px; }
.lp-phone__body { padding: 12px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-phone__card {
    background: #fff; border: 1px solid var(--lp-border);
    border-radius: 12px; padding: 11px 12px;
    box-shadow: 0 1px 3px rgba(16, 41, 74, .05);
}
.lp-phone__card-label {
    font-size: .56rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--lp-muted); margin-bottom: 5px;
}
.lp-phone__rule { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 4px 0; }
.lp-phone__rule-name { font-size: .66rem; font-weight: 600; color: var(--lp-text); }
.lp-phone__pill {
    font-size: .55rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.lp-phone__pill--ok  { background: #ddf1e5; color: #10633a; }
.lp-phone__pill--soon{ background: #f6ecd4; color: #7d5708; }
.lp-phone__bar { height: 6px; background: #e5edf6; border-radius: 999px; overflow: hidden; margin-top: 6px; }
.lp-phone__bar > span {
    display: block; height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-2));
}
.lp-phone__value { font-size: 1rem; font-weight: 800; color: var(--lp-primary); }
.lp-phone__value small { font-size: .58rem; font-weight: 600; color: var(--lp-muted); }
.lp-phone__cta {
    margin-top: auto; text-align: center;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; font-size: .66rem; font-weight: 700;
    border-radius: 11px; padding: 10px;
}
/* Valores monetários nas linhas */
.lp-phone__amt { font-size: .62rem; font-weight: 800; color: var(--lp-primary); white-space: nowrap; }
/* Mini gráfico de barras (dashboard) */
.lp-phone__chart { display: flex; align-items: flex-end; gap: 5px; height: 76px; padding-top: 4px; }
.lp-phone__chart span {
    flex: 1; border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--lp-primary), var(--lp-primary-2));
}
.lp-phone__chart span:nth-child(even) { background: #c9dcf2; }

/* Carrossel de telas DENTRO do celular (aparelho fixo) */
.lp-phone__screen--slides { position: relative; }
.lp-phone__slide {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    opacity: 0; transition: opacity .6s ease;
    pointer-events: none;
}
.lp-phone__slide.is-active { opacity: 1; pointer-events: auto; }
.lp-phone__slide .lp-phone__body { padding-bottom: 30px; } /* espaço para os pontos */
.lp-phone__dots {
    position: absolute; left: 0; right: 0; bottom: 9px; z-index: 3;
    display: flex; justify-content: center; gap: 6px;
}
.lp-phone__dots button {
    width: 7px; height: 7px; border-radius: 999px; border: none; padding: 0;
    background: #c6d6e8; cursor: pointer;
    transition: width .25s, background .25s;
}
.lp-phone__dots button.is-active { width: 18px; background: var(--lp-primary); }
/* Cards informativos flutuantes AO LADO do celular 
   O aparelho fica centralizado na coluna; os cards são ancorados a partir
   do CENTRO (50% ± meia largura do celular + folga), portanto nunca ficam
   por cima do aparelho, em nenhuma largura de tela. */
.lp-info-chip {
    position: absolute; z-index: 3;
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(13, 32, 56, .82);
    border: 1px solid rgba(156, 195, 238, .26);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    border-radius: 11px; padding: .45rem .7rem;
    box-shadow: 0 10px 26px rgba(4, 13, 26, .4);
    animation: lp-drift 7s ease-in-out infinite;
}
.lp-info-chip i {
    width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
    background: rgba(156, 195, 238, .14); color: var(--lp-accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .8rem;
}
.lp-info-chip span { display: flex; flex-direction: column; line-height: 1.3; }
.lp-info-chip b { color: #fff; font-size: .66rem; font-weight: 700; white-space: nowrap; }
.lp-info-chip small { color: rgba(255, 255, 255, .58); font-size: .56rem; white-space: nowrap; }
/* Telas largas: todos os cards em UM só lado (coluna à direita do aparelho),
   para não poluir a tela — o lado esquerdo fica limpo para o texto */
.lp-info-chip--1 { top: 3%;  left: calc(50% + 156px); animation-delay: 0s; }
.lp-info-chip--5 { top: 19%; left: calc(50% + 156px); animation-delay: 1.2s; }
.lp-info-chip--6 { top: 35%; left: calc(50% + 156px); animation-delay: 2.4s; }
.lp-info-chip--3 { top: 51%; left: calc(50% + 156px); animation-delay: 3.6s; }
.lp-info-chip--2 { top: 67%; left: calc(50% + 156px); animation-delay: 4.8s; }
.lp-info-chip--4 { top: 83%; left: calc(50% + 156px); animation-delay: 6s; }
@keyframes lp-drift {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
/* Telas médias (sem espaço nas laterais): cards acima e abaixo do aparelho
   (mostra 4 dos 6 para não poluir) */
@media (max-width: 1479px) and (min-width: 993px) {
    .lp-hero__visual { padding: 64px 0 70px; }
    .lp-info-chip--1 { top: 0; right: auto; left: 0; }
    .lp-info-chip--2 { top: 0; left: auto; right: 0; }
    .lp-info-chip--3 { top: auto; bottom: 0; left: auto; right: 0; }
    .lp-info-chip--4 { top: auto; bottom: 0; right: auto; left: 0; }
    .lp-info-chip--5, .lp-info-chip--6 { display: none; }
}
@media (max-width: 992px) {
    .lp-info-chip { display: none; } /* no celular, o destaque é o próprio aparelho */
}

/* Legenda sob o demonstrativo */
.lp-phone-caption {
    display: flex; align-items: center; gap: .45rem;
    font-size: .74rem; font-weight: 600; color: rgba(255, 255, 255, .68);
}
.lp-phone-caption i { color: var(--lp-accent); }
@media (max-width: 992px) {
    .lp-hero { padding: 7rem 0 4.2rem; min-height: 0; }
    .lp-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
    .lp-hero__visual { order: 2; }
}

.lp-stats { background: var(--lp-surface); border-bottom: 1.5px solid var(--lp-border); padding: 2.1rem 0; }
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.lp-stat { text-align: center; padding: .8rem 1rem; border-right: 1px solid var(--lp-border); }
.lp-stat:last-child { border-right: none; }
.lp-stat__num { font-size: 1.7rem; font-weight: 800; color: var(--lp-navy-800); line-height: 1.15; }
.lp-stat__num .accent { color: var(--lp-primary); }
.lp-stat__lbl {
    font-size: .72rem; color: var(--lp-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em; margin-top: .3rem;
}
@media (max-width: 760px) {
    .lp-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lp-stat { padding-left: .5rem; padding-right: .5rem; }
    .lp-stat__num { font-size: clamp(1.05rem, 5.2vw, 1.7rem); }
    .lp-stat:nth-child(2) { border-right: none; }
    .lp-stat:nth-child(-n+2) { border-bottom: 1px solid var(--lp-border); padding-bottom: 1.1rem; }
    .lp-stat:nth-child(n+3) { padding-top: 1.1rem; }
}

.lp-section { padding: 4.6rem 0; }
.lp-section--alt { background: var(--lp-surface); }
.lp-tag {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    color: var(--lp-primary-2); background: #eaf1f9; border: 1px solid #d5e3f2;
    padding: .3rem .8rem; border-radius: var(--lp-r-full); margin-bottom: .8rem;
}
.lp-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800; line-height: 1.2; letter-spacing: -.01em;
    color: var(--lp-text); margin: 0 0 .7rem;
}
.lp-sub { font-size: .92rem; color: var(--lp-muted); line-height: 1.7; max-width: 640px; margin: 0 0 2.3rem; }

/* Animação de entrada discreta — só esconde o conteúdo quando o JavaScript
   está ativo (html.lp-js, marcado no <head>); sem JS a página fica visível */
html.lp-js .lp-reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
html.lp-js .lp-reveal.is-on { opacity: 1; transform: none; }

.lp-sim__grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem; align-items: center;
}
.lp-check-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.lp-check-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--lp-text); line-height: 1.55; }
.lp-check-list li i {
    color: var(--lp-primary); background: #eaf1f9;
    width: 26px; height: 26px; border-radius: 8px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .85rem; margin-top: .05rem;
}
.lp-check-list li strong { font-weight: 700; }
/* Painel ilustrativo da análise de elegibilidade */
.lp-sim__panel {
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); box-shadow: var(--lp-shadow-md);
    overflow: hidden;
}
.lp-sim__panel-head {
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; padding: .95rem 1.2rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lp-sim__panel-head strong { font-size: .88rem; font-weight: 700; display: flex; align-items: center; gap: .5rem; }
.lp-sim__panel-head span {
    font-size: .62rem; font-weight: 700; letter-spacing: .06em;
    background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3);
    padding: .25rem .7rem; border-radius: 999px; white-space: nowrap;
}
.lp-sim__panel-body { padding: 1.15rem 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.lp-sim__row {
    display: flex; align-items: center; gap: .85rem;
    border: 1px solid var(--lp-border); border-radius: 11px;
    padding: .7rem .85rem; background: #fbfdff;
}
.lp-sim__row i { font-size: 1.05rem; color: var(--lp-primary); }
.lp-sim__row-txt { flex: 1; min-width: 0; }
.lp-sim__row-txt b { display: block; font-size: .78rem; font-weight: 700; color: var(--lp-text); }
.lp-sim__row-txt small { font-size: .68rem; color: var(--lp-muted); }
.lp-sim__row .lp-phone__pill { font-size: .6rem; }
@media (max-width: 992px) {
    .lp-sim__grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

.lp-portal {
    background: linear-gradient(135deg, #0b1e35 0%, #17304f 60%, #1e3d64 100%);
    color: #fff; padding: 4.6rem 0; overflow: hidden;
    position: relative;
}
.lp-portal::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 55% at 85% 20%, rgba(90, 148, 214, .12) 0%, transparent 65%);
}
.lp-portal .lp-container { position: relative; }
.lp-portal .lp-tag { background: rgba(156, 195, 238, .1); border-color: rgba(156, 195, 238, .3); color: var(--lp-accent); }
.lp-portal .lp-title { color: #fff; }
.lp-portal .lp-sub { color: rgba(255, 255, 255, .66); }
.lp-portal__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; align-items: center; }
.lp-portal .lp-check-list li { color: rgba(255, 255, 255, .88); }
.lp-portal .lp-check-list li i { background: rgba(156, 195, 238, .14); color: var(--lp-accent); }
.lp-portal__phones { display: flex; justify-content: center; }
@media (max-width: 992px) {
    .lp-portal__grid { grid-template-columns: 1fr; gap: 2.8rem; }
}

.lp-carousel { position: relative; }
.lp-carousel__track {
    display: flex; gap: 1.1rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: .4rem .2rem 1.2rem;
    scrollbar-width: none;
}
.lp-carousel__track::-webkit-scrollbar { display: none; }
.lp-mod {
    scroll-snap-align: start;
    flex: 0 0 300px; max-width: 300px;
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); padding: 1.4rem;
    box-shadow: var(--lp-shadow);
    transition: box-shadow .25s, border-color .25s;
    display: flex; flex-direction: column;
}
.lp-mod:hover { box-shadow: var(--lp-shadow-md); border-color: #bed3ea; }
.lp-mod__icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: .95rem;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff;
}
.lp-mod__title { font-weight: 700; font-size: .94rem; color: var(--lp-text); margin-bottom: .4rem; }
.lp-mod__desc { font-size: .79rem; color: var(--lp-muted); line-height: 1.6; }
@media (max-width: 560px) {
    .lp-mod { flex-basis: 82vw; max-width: 82vw; }
}
.lp-carousel__controls { display: flex; align-items: center; gap: .8rem; margin-top: .4rem; }
.lp-carousel__btn {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid var(--lp-border); background: var(--lp-surface);
    color: var(--lp-primary); font-size: 1.05rem; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s, box-shadow .2s;
}
.lp-carousel__btn:hover { background: #eaf1f9; box-shadow: var(--lp-shadow); }
.lp-carousel__progress { flex: 1; height: 4px; background: var(--lp-border); border-radius: 999px; overflow: hidden; }
.lp-carousel__progress > span {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-primary-2));
    border-radius: 999px; transition: width .3s ease;
}
.lp-carousel__hint { font-size: .72rem; color: var(--lp-muted); font-weight: 600; white-space: nowrap; }

.lp-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.lp-feat {
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); padding: 1.5rem;
    transition: box-shadow .25s, border-color .25s;
}
.lp-feat:hover { box-shadow: var(--lp-shadow-md); border-color: #bed3ea; }
.lp-feat__icon {
    width: 44px; height: 44px; border-radius: 11px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem; margin-bottom: .95rem;
}
.lp-feat__title { font-weight: 700; font-size: .92rem; color: var(--lp-text); margin-bottom: .4rem; }
.lp-feat__desc { font-size: .79rem; color: var(--lp-muted); line-height: 1.6; }
@media (max-width: 992px) { .lp-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .lp-feat-grid { grid-template-columns: 1fr; } }

.lp-security {
    background: linear-gradient(135deg, #0b1e35, #17304f);
    color: #fff; padding: 4.6rem 0;
}
.lp-security .lp-tag { background: rgba(156, 195, 238, .1); border-color: rgba(156, 195, 238, .3); color: var(--lp-accent); }
.lp-security .lp-title { color: #fff; }
.lp-security .lp-sub { color: rgba(255, 255, 255, .66); }
.lp-sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.2rem; }
.lp-sec-item { display: flex; align-items: flex-start; gap: .95rem; }
.lp-sec-item__icon {
    width: 44px; height: 44px; border-radius: 11px; flex: 0 0 auto;
    background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--lp-accent);
}
.lp-sec-item__title { font-weight: 700; font-size: .88rem; margin-bottom: .3rem; }
.lp-sec-item__desc { font-size: .76rem; color: rgba(255, 255, 255, .62); line-height: 1.6; }
@media (max-width: 992px) { .lp-sec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .lp-sec-grid { grid-template-columns: 1fr; } }

.lp-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.lp-step { text-align: center; padding: 1.4rem 1rem; position: relative; }
.lp-step__num {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; font-weight: 800; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; box-shadow: 0 4px 14px rgba(44, 91, 156, .28);
}
.lp-step__title { font-weight: 700; font-size: .92rem; color: var(--lp-text); margin-bottom: .4rem; }
.lp-step__desc { font-size: .78rem; color: var(--lp-muted); line-height: 1.6; }
@media (max-width: 900px) { .lp-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .lp-steps { grid-template-columns: 1fr; } }

.lp-faq { display: flex; flex-direction: column; gap: .8rem; max-width: 860px; }
.lp-faq details {
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.lp-faq details[open] { border-color: #bed3ea; box-shadow: var(--lp-shadow); }
.lp-faq summary {
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.05rem 1.3rem;
    font-weight: 700; font-size: .92rem; color: var(--lp-text);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+'; font-size: 1.25rem; font-weight: 700; color: var(--lp-primary);
    flex: 0 0 auto; line-height: 1; transition: transform .2s;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq p { margin: 0; padding: 0 1.3rem 1.15rem; font-size: .85rem; color: var(--lp-muted); line-height: 1.7; }

.lp-contact__grid {
    display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 2.2rem; align-items: start;
}
.lp-form {
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); padding: 1.8rem;
    box-shadow: var(--lp-shadow);
}
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-form__group { margin-bottom: 1rem; }
.lp-form__label {
    display: block; font-size: .76rem; font-weight: 700;
    color: var(--lp-text); margin-bottom: .35rem; letter-spacing: .02em;
}
.lp-form__label small { color: var(--lp-muted); font-weight: 600; }
.lp-form__input, .lp-form__textarea {
    width: 100%; border: 1.5px solid var(--lp-border);
    border-radius: 10px; padding: .68rem .85rem;
    font-size: .88rem; font-family: inherit; color: var(--lp-text);
    background: #fbfdff; outline: none;
    transition: border-color .2s, box-shadow .2s;
}
.lp-form__input:focus, .lp-form__textarea:focus {
    border-color: var(--lp-primary);
    box-shadow: 0 0 0 3px rgba(44, 91, 156, .12);
    background: #fff;
}
.lp-form__textarea { resize: vertical; min-height: 120px; }
.lp-form__send {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    width: 100%; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-2));
    color: #fff; font-weight: 700; font-size: .92rem;
    padding: .85rem 1.5rem; border-radius: var(--lp-r-full);
    box-shadow: 0 4px 16px rgba(44, 91, 156, .26);
    transition: transform .2s, box-shadow .2s, opacity .2s;
}
.lp-form__send:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(44, 91, 156, .36); }
.lp-form__send:disabled { opacity: .6; cursor: wait; transform: none; }
.lp-form__status { margin-top: 1rem; font-size: .84rem; font-weight: 600; border-radius: 10px; padding: .75rem .95rem; display: none; }
.lp-form__status.is-ok { display: block; background: #ddf1e5; color: #10633a; border: 1px solid #bce4cc; }
.lp-form__status.is-err { display: block; background: #fbe4e4; color: #93312f; border: 1px solid #f2c7c7; }
/* Campo-armadilha anti-robô: fica fora da tela para humanos */
.lp-form__extra { position: absolute !important; left: -5000px !important; width: 1px; height: 1px; overflow: hidden; }
/* Cards laterais de contato */
.lp-contact__cards { display: flex; flex-direction: column; gap: 1rem; }
.lp-ccard {
    display: flex; align-items: center; gap: 1rem;
    background: var(--lp-surface); border: 1.5px solid var(--lp-border);
    border-radius: var(--lp-r-lg); padding: 1.2rem 1.3rem;
    transition: box-shadow .2s, border-color .2s;
}
.lp-ccard:hover { box-shadow: var(--lp-shadow-md); border-color: #bed3ea; }
.lp-ccard__icon {
    width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.lp-ccard__icon--wa { background: #e0f4e8; color: #128c4b; }
.lp-ccard__icon--mail { background: #eaf1f9; color: var(--lp-primary); }
.lp-ccard__icon--tel { background: #e2ebf5; color: #17304f; }
.lp-ccard__txt b { display: block; font-size: .86rem; font-weight: 700; color: var(--lp-text); }
.lp-ccard__txt span { font-size: .78rem; color: var(--lp-muted); word-break: break-word; }
@media (max-width: 900px) {
    .lp-contact__grid { grid-template-columns: 1fr; }
    .lp-form__row { grid-template-columns: 1fr; gap: 0; }
}

.lp-cta {
    background: linear-gradient(135deg, #0b1e35 0%, #17304f 55%, #1e3d64 100%);
    color: #fff; text-align: center; padding: 4.2rem 0;
    position: relative; overflow: hidden;
}
.lp-cta::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(90, 148, 214, .12) 0%, transparent 60%);
}
.lp-cta .lp-container { position: relative; }
.lp-cta h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 800; margin: 0 0 .7rem; }
.lp-cta p { font-size: .92rem; color: rgba(255, 255, 255, .68); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.lp-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.lp-footer { background: var(--lp-navy-950); color: rgba(255, 255, 255, .68); padding: 3rem 0 2rem; }
.lp-footer__grid {
    display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, .85fr) minmax(0, .85fr);
    gap: 2.4rem; padding-bottom: 2.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.lp-footer__brand { display: flex; align-items: flex-start; gap: .85rem; }
.lp-footer__logo { width: 46px; height: 46px; border-radius: 50%; background: #fff; object-fit: contain; flex: 0 0 auto; }
.lp-footer__brand b { color: #fff; font-size: 1.02rem; letter-spacing: .05em; display: block; }
.lp-footer__brand p { font-size: .78rem; line-height: 1.65; margin: .45rem 0 0; color: rgba(255, 255, 255, .55); }
.lp-footer__title {
    color: #fff; font-size: .76rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem;
}
.lp-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.lp-footer__list a, .lp-footer__list span {
    font-size: .8rem; color: rgba(255, 255, 255, .62);
    display: inline-flex; align-items: center; gap: .5rem;
    transition: color .2s;
}
.lp-footer__list a:hover { color: var(--lp-accent); }
.lp-footer__list i { color: var(--lp-accent); font-size: .8rem; }
.lp-footer__bottom {
    padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; flex-wrap: wrap; font-size: .74rem; color: rgba(255, 255, 255, .5);
}
.lp-footer__bottom b { color: rgba(255, 255, 255, .78); font-weight: 700; }
@media (max-width: 860px) {
    .lp-footer__grid { grid-template-columns: 1fr; gap: 1.9rem; }
    .lp-footer__bottom { justify-content: center; text-align: center; }
}

/* Imagens de marca fora do alcance do ponteiro — mesma regra que o sistema já
   aplica em utilities.css, repetida aqui porque esta página não carrega aquela
   folha. O clique continua valendo no link que envolve o logo do topo: quem
   recebe o toque é o link, não a imagem.
   Não é proteção do arquivo: captura de tela e ferramentas do navegador seguem
   alcançando a figura, como em qualquer site. */
.siap-img-protegida {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;   /* iOS: sem o menu de "salvar" no toque longo */
}

.lp-wa-fab {
    /* Sobe enquanto o aviso de cookies estiver na tela, senão ficaria escondido
       atrás dele em telas médias. A medida vem do próprio aviso (--ck-altura),
       publicada pelo script; sem ele, vale o afastamento normal. */
    position: fixed; right: 1.35rem; bottom: calc(1.35rem + var(--ck-altura, 0px)); z-index: 950;
    display: inline-flex; align-items: center; gap: .55rem;
    background: #1eb85a;
    color: #fff; font-weight: 700; font-size: .86rem;
    padding: .78rem 1.2rem; border-radius: var(--lp-r-full);
    box-shadow: 0 6px 22px rgba(17, 94, 48, .35);
    transition: transform .2s, box-shadow .2s, background .2s, bottom .3s ease;
}
.lp-wa-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(17, 94, 48, .45); background: #17a04e; color: #fff; }
.lp-wa-fab i { font-size: 1.2rem; }
@media (max-width: 560px) {
    .lp-wa-fab span { display: none; }           /* só o ícone no celular */
    .lp-wa-fab { padding: .92rem; border-radius: 50%; }
}

@media (prefers-reduced-motion: reduce) {
    html:has(body.pg-apresentacao) { scroll-behavior: auto; }
    body.pg-apresentacao .lp-reveal { opacity: 1; transform: none; transition: none; }
}
