/* ============================================================
   AXEI — LP Simulador
   Camada sobre bootstrap.min.css + app.css do site institucional.
   Tokens iguais aos do www.axei.com.br.
   ============================================================ */

:root {
  --navy: #011950;
  --navy-700: #012570;
  --lime: #c3f904;
  --lime-600: #aedd03;
  --ink: #0b1b3d;
  --body: #525260;
  --line: #e6e9f0;
  --soft: #f5f7fb;

  /* mesmas famílias do app.css do site institucional */
  --font-titulo: "DM Sans", sans-serif;
  --font-corpo: "Poppins", sans-serif;
}

/* ---------- Reset + grid (substitui o Bootstrap: a LP não depende de nada) ---------- */

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

.lp .container {
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  padding-inline: 16px;
}

.lp .row { display: flex; flex-wrap: wrap; margin-inline: -14px; }
.lp .row > [class*="col-"] { width: 100%; padding-inline: 14px; }
.lp .align-items-center { align-items: center; }
.lp .gy-3 > [class*="col-"] { margin-bottom: 16px; }
.lp .gy-4 > [class*="col-"] { margin-bottom: 24px; }

@media (min-width: 768px) {
  .lp .container { max-width: 720px; }
  .lp .row > .col-md-4 { width: 33.3333%; }
  .lp .row > .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .lp .container { max-width: 960px; }
  .lp .row > .col-lg-5 { width: 41.6667%; }
  .lp .row > .col-lg-6 { width: 50%; }
  .lp .row > .col-lg-7 { width: 58.3333%; }
  .lp .gx-lg-5 { margin-inline: -24px; }
  .lp .gx-lg-5 > [class*="col-"] { padding-inline: 24px; }
}

@media (min-width: 1200px) {
  .lp .container { max-width: 1140px; }
}

html { scroll-behavior: smooth; }

/* Tipografia idêntica ao app.css do site:
   corpo em Poppins 400, títulos em DM Sans 500 com letter-spacing -0.025em. */
body.lp {
  font-family: var(--font-corpo);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--body);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp h1, .lp h2, .lp h3, .lp h4, .lp h5, .lp h6 {
  font-family: var(--font-titulo);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.lp img { max-width: 100%; }

/* ---------- Botões ---------- */

/* .axil-btn do site: 500 / -0.04em · override do index: 15px, 12px 28px, raio 8px */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  padding: 12px 28px;          /* idem override do index.html */
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease;
}

.lp-btn:disabled { opacity: .55; cursor: not-allowed; }

.lp-btn-primary {
  background: var(--lime);
  color: var(--navy);
}
.lp-btn-primary:hover:not(:disabled) { background: var(--lime-600); color: #fff; }

.lp-btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 11px 22px;
}
.lp-btn-ghost:hover { background: var(--soft); }

.lp-btn-wpp {
  background: #25d366;
  color: #fff;
}
.lp-btn-wpp:hover { background: #1eb857; color: #fff; }

.lp-btn-block { width: 100%; }

/* ---------- Header ---------- */

.lp-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 22px 0;
}

.lp-header .lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-header img { width: 132px; }

.lp-header .lp-header-phone {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .28);
  padding: 10px 18px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .2s ease;
}
.lp-header .lp-header-phone:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ---------- Hero ---------- */

.lp-hero {
  position: relative;
  display: flex;
  align-items: center;          /* conteúdo centralizado na vertical */
  min-height: 100vh;
  min-height: 100dvh;           /* ignora a barra de endereço no mobile */
  background: var(--navy) url(img/bg.jpg) center center / cover no-repeat;
  padding: 130px 0 80px;        /* topo maior: o header é absoluto por cima */
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(1, 25, 80, .93) 0%, rgba(1, 25, 80, .78) 48%, rgba(1, 25, 80, .55) 100%);
}

.lp-hero > .container { position: relative; z-index: 2; width: 100%; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(195, 249, 4, .14);
  border: 1px solid rgba(195, 249, 4, .35);
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.lp-hero h1 {
  color: #fff;
  font-size: 68px;             /* mesma escala do .banner-style-1 .title */
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}

@media (min-width: 1600px) { .lp-hero h1 { font-size: 78px; } }
@media (max-width: 1199px) { .lp-hero h1 { font-size: 60px; } }

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

.lp-hero-lead {
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 30em;
}

.lp-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.lp-hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.lp-hero-list svg { flex: 0 0 22px; margin-top: 2px; }

.lp-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.lp-trust span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Card do formulário ---------- */

.lp-card {
  background: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 30px 70px rgba(1, 25, 80, .35);
}

.lp-card-head { margin-bottom: 24px; }

.lp-card-head h2 {
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}

.lp-card-head p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Barra de etapas (versão B) */

.lp-steps { margin-bottom: 22px; }

.lp-steps-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.lp-steps-top small { color: #97a0b5; font-weight: 600; letter-spacing: 0; text-transform: none; }

.lp-steps-bar {
  height: 6px;
  border-radius: 100px;
  background: var(--line);
  overflow: hidden;
}

.lp-steps-bar i {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 100px;
  background: var(--lime);
  transition: width .45s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Campos ---------- */

.lp-field { margin-bottom: 16px; }

.lp-field > label {
  display: block;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
}

.lp-field input[type="text"],
.lp-field input[type="tel"] {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0 18px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-field input::placeholder { color: #a7aec1; }

.lp-field input:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(1, 25, 80, .08);
}

.lp-field.is-invalid input { border-color: #e02d3c; }
.lp-field.is-invalid input:focus { box-shadow: 0 0 0 4px rgba(224, 45, 60, .1); }

.lp-error {
  display: block;
  color: #e02d3c;
  font-size: 13px;
  margin-top: 6px;
  min-height: 0;
}

.lp-hint { color: #8b93a8; font-size: 13px; margin-top: 6px; }

/* Pills de vínculo */

.lp-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.lp-pills input { position: absolute; opacity: 0; pointer-events: none; }

.lp-pills label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 9px 14px;
  cursor: pointer;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color .18s ease, background .18s ease;
}

.lp-pills label small { display: block; font-weight: 500; font-size: 12px; color: #8b93a8; }

.lp-pills label:hover { border-color: #c3cadb; }

.lp-pills input:checked + label {
  border-color: var(--navy);
  background: rgba(1, 25, 80, .04);
  box-shadow: inset 0 0 0 1px var(--navy);
}

.lp-pills input:focus-visible + label { box-shadow: 0 0 0 4px rgba(1, 25, 80, .12); }

.lp-field.is-invalid .lp-pills label { border-color: #e02d3c; }

/* Consentimento */

.lp-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 20px;
}

.lp-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
}

.lp-consent label {
  font-size: 12.5px;
  line-height: 1.5;
  color: #7b8298;
  cursor: pointer;
}

.lp-consent a { color: var(--navy); text-decoration: underline; }

.lp-field.is-invalid .lp-consent label { color: #e02d3c; }

/* Rodapé do card */

.lp-card-foot {
  display: flex;
  align-items: center;
  line-height: 1.45;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: #97a0b5;
  font-size: 12.5px;
  text-align: center;
}

.lp-card-foot svg { flex: 0 0 auto; }

.lp-card-actions { display: flex; gap: 10px; }
.lp-card-actions .lp-btn-ghost { flex: 0 0 auto; padding-inline: 20px; }
.lp-card-actions .lp-btn-primary { flex: 1 1 auto; }

/* Spinner */

.lp-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(1, 25, 80, .25);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: lp-spin .7s linear infinite;
}

@keyframes lp-spin { to { transform: rotate(360deg); } }

/* Etapas / telas do card */

.lp-screen { display: none; }
.lp-screen.is-active { display: block; animation: lp-fade .35s ease both; }

@keyframes lp-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Tela de processamento e sucesso */

.lp-processing { text-align: center; padding: 26px 0 10px; }

.lp-processing .lp-spinner {
  width: 44px;
  height: 44px;
  border-width: 4px;
  margin: 0 auto 20px;
}

.lp-processing h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; }
.lp-processing p { font-size: 15px; margin: 0; }

.lp-success { text-align: center; padding: 8px 0; }

.lp-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(195, 249, 4, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.lp-success h3 {
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}

.lp-success p { font-size: 15.5px; line-height: 1.6; margin-bottom: 22px; }

.lp-alert {
  background: #fff5f5;
  border: 1px solid #ffd7d7;
  color: #b3242f;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.lp-alert[hidden] { display: none; }

/* ---------- Seções ---------- */

.lp-section { padding: 90px 0; }
.lp-section-soft { background: var(--soft); }

.lp-section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }

.lp-section-head h2 {
  color: var(--navy);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.lp-section-head p { font-size: 17px; line-height: 1.6; margin: 0; }

/* Passos */

.lp-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.lp-step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(1, 25, 80, .08); }

.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--lime);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.lp-step h3 { color: var(--navy); font-size: 19px; margin-bottom: 10px; }
.lp-step p { font-size: 15px; line-height: 1.6; margin: 0; }

/* Benefícios */

.lp-benefit { display: flex; gap: 16px; margin-bottom: 34px; }

.lp-benefit-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(195, 249, 4, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-benefit h3 { color: var(--navy); font-size: 17.5px; margin-bottom: 6px; }
.lp-benefit p { font-size: 15px; line-height: 1.6; margin: 0; }

/* CTA final */

.lp-cta {
  background: var(--navy);
  padding: 76px 0;
  text-align: center;
}

.lp-cta h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  text-wrap: balance;
}

.lp-cta p {
  color: rgba(255, 255, 255, .75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ---------- Rodapé ---------- */

.lp-footer { background: #010f33; padding: 56px 0 30px; color: rgba(255, 255, 255, .6); }

.lp-footer img { width: 128px; margin-bottom: 18px; }

.lp-footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.lp-footer p { font-size: 13.5px; line-height: 1.7; margin-bottom: 14px; }

.lp-footer a { color: rgba(255, 255, 255, .82); text-decoration: underline; }
.lp-footer a:hover { color: var(--lime); }

.lp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
}

.lp-footer-links a { text-decoration: none; }

.lp-legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 34px;
  padding-top: 26px;
}

.lp-legal p {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .48);
  margin-bottom: 12px;
}

.lp-legal strong { color: rgba(255, 255, 255, .7); font-weight: 600; }

/* ---------- Responsivo ---------- */

@media (max-width: 991px) {
  .lp-hero { padding: 108px 0 56px; background-image: url(img/bg-mobile.jpg); }
  .lp-hero h1 { font-size: 46px; }
  .lp-hero-lead { font-size: 17px; margin-bottom: 26px; }
  .lp-hero-list { margin-bottom: 26px; }
  .lp-hero-copy { margin-bottom: 36px; }
  .lp-section { padding: 64px 0; }
  .lp-section-head { margin-bottom: 36px; }
  .lp-section-head h2 { font-size: 30px; }
  .lp-step { margin-bottom: 16px; }
  .lp-cta { padding: 60px 0; }
  .lp-cta h2 { font-size: 29px; }
}

@media (max-width: 575px) {
  .lp-header { padding: 16px 0; }
  .lp-header img { width: 112px; }
  .lp-header .lp-header-phone { display: none; }
  .lp-hero h1 { font-size: 38px; }
  .lp-card { padding: 24px 20px; border-radius: 20px; }
  .lp-card-head h2 { font-size: 21px; }
  .lp-pills { grid-template-columns: 1fr; }
  .lp-section-head h2 { font-size: 26px; }
  .lp-cta h2 { font-size: 25px; }
  .lp-trust { gap: 14px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-screen.is-active, .lp-step { animation: none; transition: none; }
}

/* ============================================================
   Componentes da copy nova
   ============================================================ */

/* ---------- Listas com ✓ ---------- */

.lp-checks { margin: 0 0 28px; }

.lp-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.lp-checks svg { flex: 0 0 20px; margin-top: 2px; }

.lp-checks-dark li { color: #fff; }
.lp-checks-light li { color: var(--body); }

.lp-checks-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 26px;
}

.lp-checks-inline li { margin-bottom: 0; font-size: 15px; }

/* ---------- Textos de apoio ---------- */

.lp-disclaimer {
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
  color: rgba(255, 255, 255, .55);
  margin-top: 18px;
  max-width: 34em;
}

.lp-disclaimer-light { color: #8b93a8; }

.lp-kicker {
  color: var(--lime);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 22px;
}

.lp-lead-center {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Caixa de atenção ---------- */

.lp-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fffaf0;
  border: 1px solid #f2e0b8;
  border-radius: 16px;
  padding: 20px 22px;
  margin-top: 34px;
}

.lp-warning svg { flex: 0 0 22px; margin-top: 1px; }

.lp-warning p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #7a5a18;
  margin: 0;
}

.lp-warning strong { color: #5e4310; }

/* ---------- Seção escura ---------- */

.lp-section-dark {
  background: var(--navy);
  padding: 80px 0;
}

.lp-section-dark h2 {
  color: #fff;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.lp-section-dark p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.lp-section-dark .lp-btn { margin-top: 14px; }

/* ---------- Antifraude ---------- */

.lp-fraud {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px;
  height: 100%;
}

.lp-fraud h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 18px;
}

.lp-fraud li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
}

.lp-fraud li:last-child { margin-bottom: 0; }

.lp-fraud svg { flex: 0 0 19px; margin-top: 2px; }

.lp-channel {
  background: var(--navy);
  border-radius: 20px;
  padding: 32px 30px;
  height: 100%;
  color: rgba(255, 255, 255, .78);
}

.lp-channel h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}

.lp-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lp-channel-item svg { flex: 0 0 20px; }

.lp-channel-item span { display: block; font-size: 12px; color: rgba(255, 255, 255, .5); }
.lp-channel-item strong { color: #fff; font-size: 16px; font-weight: 700; }
.lp-channel-item a { color: #fff; }

.lp-channel p {
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

/* ---------- Blocos legais do rodapé ---------- */

.lp-legal h5 {
  color: rgba(255, 255, 255, .8);
  font-size: 13.5px;
  font-weight: 700;
  margin: 22px 0 8px;
}

.lp-legal h5:first-child { margin-top: 0; }

/* ---------- Responsivo dos componentes novos ---------- */

@media (max-width: 575px) {
  .lp-section-dark { padding: 56px 0; }
  .lp-section-dark h2 { font-size: 26px; }
  .lp-checks-inline { gap: 10px; flex-direction: column; }
  .lp-fraud, .lp-channel { padding: 24px 20px; }
}

/* ---------- Bloco de autorização do formulário ---------- */

.lp-consent-title {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  margin: 26px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.lp-consent-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: #8b93a8;
  margin: 0 0 18px;
}

.lp-consent-note a { color: var(--navy); text-decoration: underline; }

button + .lp-consent-note { margin: 14px 0 0; text-align: center; }

.lp-closing {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  color: var(--navy);
}

/* ============================================================
   Estrutura de 2 páginas
   (landing sem formulário  +  simulador dedicado)
   ============================================================ */

/* ---------- Card do hero da landing (no lugar do formulário) ---------- */

.lp-hero-card { padding: 32px 30px; }

.lp-hero-card h2 {
  color: var(--navy);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.lp-hero-card > p {
  color: var(--body);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.lp-mini-step {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.lp-mini-step:last-of-type {
  border-bottom: 0;
  padding-bottom: 4px;
  margin-bottom: 24px;
}

.lp-mini-step-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-mini-step h3 {
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.lp-mini-step p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Página do simulador ---------- */

.lp-form-page {
  position: relative;
  display: flex;
  align-items: center;          /* conteúdo centralizado na vertical */
  min-height: 100vh;
  min-height: 100dvh;           /* ignora a barra de endereço no mobile */
  background: var(--navy) url(img/bg.jpg) center center / cover no-repeat;
  padding: 120px 0 70px;
}

.lp-form-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 25, 80, .95) 0%, rgba(1, 25, 80, .88) 100%);
}

.lp-form-page > .container { position: relative; z-index: 2; width: 100%; }

.lp-form-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.lp-form-page .lp-form-intro {
  text-align: center;
  margin-bottom: 26px;
}

.lp-form-page .lp-form-intro h1 {
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.lp-form-page .lp-form-intro p {
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.lp-trust-row span { display: inline-flex; align-items: center; gap: 7px; }

/* Rodapé compacto da página do simulador */

.lp-footer-slim { padding-top: 44px; }
.lp-footer-slim .lp-legal { margin-top: 0; border-top: 0; padding-top: 0; }

@media (max-width: 575px) {
  .lp-hero-card { padding: 26px 20px; }
  .lp-form-page { padding: 96px 0 48px; }
  .lp-form-page .lp-form-intro h1 { font-size: 25px; }
  .lp-form-page .lp-form-intro p { font-size: 15px; }
  .lp-trust-row { flex-direction: column; align-items: center; gap: 10px; }
}

/* ============================================================
   Estado + Cidade — combobox com busca (IBGE)
   ============================================================ */

.lp-row-2 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-row-2 > .lp-field { margin-bottom: 0; }

.lp-combo { position: relative; }

.lp-combo input[type="text"] {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23011950' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding: 0 44px 0 18px;
  font-size: 16px;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-combo input[type="text"]:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(1, 25, 80, .08);
}

.lp-combo input[type="text"]:disabled {
  background-color: var(--soft);
  color: #a7aec1;
  cursor: not-allowed;
}

/* no modo texto livre não é mais uma busca: some a lupa */
.lp-combo.is-livre input[type="text"] {
  background-image: none;
  padding-right: 18px;
}

.lp-field.is-invalid .lp-combo input[type="text"] { border-color: #e02d3c; }
.lp-field.is-invalid .lp-combo input[type="text"]:focus { box-shadow: 0 0 0 4px rgba(224, 45, 60, .1); }

/* ---------- Dropdown ---------- */

.lp-combo-lista {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  max-height: 264px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(1, 25, 80, .18);
  padding: 6px;
  margin: 0;
  list-style: none;
}

.lp-combo-lista[hidden] { display: none; }

.lp-combo-lista li {
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
}

.lp-combo-lista li.is-ativo,
.lp-combo-lista li:hover { background: rgba(1, 25, 80, .06); }

.lp-combo-lista li[aria-selected="true"] {
  background: rgba(1, 25, 80, .04);
  font-weight: 600;
}

.lp-combo-lista .lp-combo-vazio {
  color: #8b93a8;
  font-size: 14px;
  cursor: default;
}

.lp-combo-lista .lp-combo-vazio:hover { background: transparent; }

/* scrollbar discreta */
.lp-combo-lista::-webkit-scrollbar { width: 10px; }
.lp-combo-lista::-webkit-scrollbar-thumb {
  background: #d5dae6;
  border-radius: 100px;
  border: 3px solid #fff;
}

@media (max-width: 420px) {
  .lp-row-2 { grid-template-columns: 1fr; gap: 0; }
  .lp-row-2 > .lp-field { margin-bottom: 16px; }
  .lp-row-2 > .lp-field:last-child { margin-bottom: 0; }
  .lp-combo-lista { max-height: 220px; }
}

/* ============================================================
   Select nativo (vínculo e esfera)
   Poucas opções: aqui um <select> é melhor que combobox com busca.
   ============================================================ */

.lp-field > select {
  width: 100%;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8'%3E%3Cpath d='M1.5 1.5 6.5 6.5l5-5' stroke='%23011950' stroke-width='1.9' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding: 0 44px 0 18px;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-field > select:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(1, 25, 80, .08);
}

.lp-field > select.is-vazio { color: #a7aec1; }

.lp-field.is-invalid > select { border-color: #e02d3c; }
.lp-field.is-invalid > select:focus { box-shadow: 0 0 0 4px rgba(224, 45, 60, .1); }

/* campo que só aparece em certas condições (esfera do servidor) */
.lp-field.is-oculto { display: none; }

.lp-field.is-revelado {
  animation: lp-revelar .28s ease both;
}

@keyframes lp-revelar {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-field.is-revelado { animation: none; }
}
