@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --verde: #1a6fd4;
  --verde-escuro: #1256ab;
  --lima: #9fd0ff;
  --navy: #0b2548;
  --texto: #1e2d44;
  --suave: #5a6b80;
  --fundo: #f3f8fe;
  --linha: #d5e6f7;
  --whatsapp: #25d366;
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Poppins, Arial, sans-serif; color: var(--texto); background: #fff; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }

.topo {
  position: sticky; top: 0; z-index: 30; background: #fff;
  box-shadow: 0 1px 0 var(--linha);
}
.topo-inner { display: flex; align-items: center; justify-content: space-between; min-height: 92px; gap: 16px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 70px; width: auto; display: block; }
.menu { display: flex; gap: 22px; list-style: none; margin-left: auto; margin-right: 14px; }
.menu a { font-weight: 500; font-size: .9rem; color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; cursor: pointer; font-weight: 700; border-radius: 10px; padding: 13px 24px;
}
.btn-verde { background: var(--verde); color: #fff; }
.btn-verde:hover { background: var(--verde-escuro); }
.btn-lima { background: var(--lima); color: var(--navy); }
.btn-largo { width: 100%; }
[hidden] { display: none !important; }
.btn-menu { display: none; background: none; border: 0; font-size: 1.4rem; }

.faixa-parceiro {
  background: var(--navy); color: #fff; text-align: center; padding: 12px 16px; font-size: .92rem;
}
.faixa-parceiro strong { color: var(--lima); }

.hero {
  background: linear-gradient(180deg, #dceeff 0%, #ffffff 72%);
  padding: 36px 0 20px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.selo { display: inline-block; background: var(--lima); color: var(--navy); font-weight: 800; font-size: .78rem; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; color: var(--navy); font-weight: 800; margin-bottom: 12px; }
.hero h1 em { color: var(--verde-escuro); font-style: normal; }
.hero .lead { color: var(--suave); margin-bottom: 22px; max-width: 520px; }
.caixa-cpf {
  background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 14px 32px rgba(11,37,72,.1);
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
}
.caixa-cpf input { border: 1.5px solid var(--linha); border-radius: 10px; padding: 12px 14px; }
.hero-foto { position: relative; min-height: 460px; display: flex; align-items: flex-end; justify-content: center; }
.hero-foto::before {
  content: ""; position: absolute; width: 88%; height: 74%; bottom: 0;
  background: var(--verde); border-radius: 46% 46% 16px 16px;
}
.hero-foto img { position: relative; z-index: 1; height: 460px; width: auto; object-fit: contain; }

.faixa-veiculo {
  background: linear-gradient(180deg, #fff 0%, #e8f2fc 100%);
  padding: 12px 0 56px;
}
.veiculo-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; }
.veiculo-foto { border-radius: 24px; overflow: hidden; box-shadow: 0 22px 50px rgba(11, 37, 72, .18); }
.veiculo-foto img { width: 100%; height: 320px; object-fit: cover; }
.veiculo-texto h2 { text-align: left; margin-bottom: 12px; }
.veiculo-texto p { color: var(--suave); margin-bottom: 14px; }
.veiculo-lista { list-style: none; margin: 0 0 22px; color: var(--navy); }
.veiculo-lista li { padding: 7px 0 7px 28px; position: relative; font-weight: 600; }
.veiculo-lista li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--verde);
}

.secao { padding: 72px 0; }
.secao h2 { text-align: center; color: var(--navy); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.sub { text-align: center; color: var(--suave); margin-bottom: 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.centro { text-align: center; margin-top: 28px; }

.tres { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--linha); border-radius: 16px; padding: 24px;
  box-shadow: 0 10px 24px rgba(11,37,72,.06);
}
.card h3 { color: var(--navy); margin-bottom: 8px; }
.card p { color: var(--suave); font-size: .93rem; }
.passo { counter-increment: passo; position: relative; padding-top: 8px; }
.passo::before {
  content: counter(passo); width: 36px; height: 36px; border-radius: 50%;
  background: var(--verde); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 12px;
}

.parceiros { background: var(--fundo); }
.grades-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.logo-p {
  background: #fff; border-radius: 12px; min-height: 88px; display: grid; place-items: center;
  font-weight: 800; color: var(--navy); font-size: .82rem; text-align: center; padding: 12px 10px; border: 1px solid var(--linha);
}
.logo-p small { display: block; font-weight: 500; color: var(--suave); font-size: .72rem; margin-top: 4px; }

.tipos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tipo {
  background: #fff; border: 1px solid var(--linha); border-radius: 14px; padding: 18px 14px;
  text-align: center; box-shadow: 0 8px 18px rgba(11,37,72,.05);
}
.tipo .ico {
  width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 50%;
  background: var(--lima); display: grid; place-items: center; font-size: 1.35rem;
}
.tipo h3 { font-size: .92rem; color: var(--navy); font-weight: 700; }
.tipo p { font-size: .78rem; color: var(--suave); margin-top: 4px; }

.depo { background: #fff; }
.dep { padding: 20px; }
.dep strong { display: block; margin-top: 10px; color: var(--navy); }

.faq-item { border-bottom: 1px solid var(--linha); max-width: 860px; margin: 0 auto; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 4px; font-weight: 700; color: var(--navy); display: flex; justify-content: space-between;
}
.faq-item .resposta { display: none; color: var(--suave); padding: 0 4px 16px; font-size: .94rem; }
.faq-item.aberto .resposta { display: block; }
.mais { color: var(--verde); font-size: 1.4rem; }

.rodape { background: var(--navy); color: #c5d5e8; padding: 40px 0 18px; }
.rodape-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.rodape a { display: block; margin: 6px 0; color: #c5d5e8; }
.rodape h4 { color: #fff; margin-bottom: 10px; }
.copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; font-size: .8rem; }

.wa {
  position: fixed; right: 20px; bottom: 20px; width: 62px; height: 62px; border-radius: 50%;
  background: var(--whatsapp); display: grid; place-items: center; box-shadow: 0 10px 20px rgba(37,211,102,.4);
}
.wa svg { width: 32px; height: 32px; fill: #fff; }

.fraude-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(11, 37, 72, .62);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.fraude-overlay.visivel { display: flex; }
.fraude-caixa {
  width: min(560px, 100%);
  background: #4ea3ea;
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(11, 37, 72, .35);
  text-align: center;
  position: relative;
}
.fraude-caixa h2 { font-size: 1.55rem; font-weight: 800; margin-bottom: 14px; color: #fff; }
.fraude-caixa p { font-size: .95rem; line-height: 1.55; margin-bottom: 12px; color: #fff; }
.fraude-caixa p:last-of-type { margin-bottom: 22px; }
.btn-atendimento {
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; font-weight: 800;
  padding: 14px 28px; border-radius: 10px; width: 100%;
}
.btn-atendimento:hover { background: #1ebe5d; }
.fraude-fechar {
  position: absolute; top: 10px; right: 14px;
  border: 0; background: transparent; color: #fff;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}

body.wa-redir-travado { overflow: hidden; }
.wa-redir-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11, 37, 72, .72);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.wa-redir-overlay.visivel { display: flex; }
.wa-redir-caixa {
  width: min(440px, 100%);
  background: #fff;
  color: var(--navy);
  border-radius: 22px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(11, 37, 72, .35);
}
.wa-redir-avatar {
  position: relative;
  width: 148px; height: 148px;
  margin: 0 auto 10px;
}
.wa-redir-spinner {
  position: absolute; inset: -8px;
  border: 5px solid #e8f2fc;
  border-top-color: #1a6fd4;
  border-radius: 50%;
  animation: wa-redir-gira .75s linear infinite;
}
.wa-redir-foto {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background: #e8f2fc;
}
.wa-redir-caixa .wa-redir-cargo {
  font-size: .82rem;
  font-weight: 700;
  color: var(--verde-escuro);
  margin: 4px 0 10px;
}
.wa-redir-conta {
  font-size: 4.2rem;
  font-weight: 800;
  color: #25d366;
  line-height: 1;
  margin-bottom: 8px;
}
.wa-redir-conta.pulsa { animation: wa-redir-numero .45s ease; }
.wa-redir-caixa h2 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}
.wa-redir-caixa p {
  color: var(--texto-suave);
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.wa-redir-caixa .btn-atendimento { display: none; margin-top: 16px; }
.wa-redir-caixa .btn-atendimento.visivel-fallback { display: inline-flex; }
@keyframes wa-redir-gira {
  to { transform: rotate(360deg); }
}
@keyframes wa-redir-numero {
  0% { transform: scale(.55); opacity: .25; }
  45% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.pagina { padding: 40px 0 60px; }
.formulario { max-width: 640px; margin: 0 auto; background: #fff; border-radius: 16px; padding: 26px; box-shadow: 0 12px 28px rgba(11,37,72,.08); }
.campo { margin-bottom: 12px; }
.campo label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .9rem; }
.campo input, .campo select { width: 100%; border: 1.5px solid var(--linha); border-radius: 10px; padding: 12px; }
.aviso { background: #e8f2fc; border-radius: 12px; padding: 14px; margin-top: 12px; }
.oculto { display: none; }
.oculto.mostrar { display: block; }
.boas-vindas {
  display: none;
  margin-top: 10px;
  padding: 12px 14px;
  background: #e8f2fc;
  color: var(--navy);
  border-radius: 10px;
  font-weight: 600;
}
.boas-vindas.mostrar { display: block; }
.boas-vindas.consultando { font-weight: 600; }
.boas-vindas.erro { background: #eaf2fb; }
.boas-vindas .nota-demo,
.boas-vindas .nota-ok {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 500;
}
.boas-vindas .nota-demo { color: #8a5b00; }
.boas-vindas .nota-ok { color: #1256ab; }
.btn-navy { background: var(--navy); color: #fff; }
.divida {
  border: 1.5px solid var(--linha); border-radius: 12px; padding: 14px; margin: 10px 0; cursor: pointer;
}
.divida.sel { border-color: var(--verde); background: #e8f2fc; }
.demo { font-size: .78rem; color: #8a5b00; background: #fff4d6; padding: 8px 10px; border-radius: 8px; margin-bottom: 12px; }

@media (max-width: 900px) {
  .hero-grid, .tres, .grades-logos, .rodape-grid, .tipos, .veiculo-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .veiculo-grid { grid-template-columns: 1fr; }
  .caixa-cpf { grid-template-columns: 1fr; }
  .menu { display: none; width: 100%; flex-direction: column; gap: 10px; margin: 0 0 12px; }
  .menu.aberto { display: flex; }
  .btn-menu { display: block; }
  .topo-inner { flex-wrap: wrap; }
  .logo-img { height: 58px; }
  .hero-foto, .hero-foto img { min-height: 340px; height: 340px; }
  .fraude-caixa { padding: 26px 18px 22px; }
}
@media (max-width: 560px) {
  .grades-logos, .tres, .rodape-grid, .tipos { grid-template-columns: 1fr; }
}
