@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --teal: #1a6fd4;
  --teal-escuro: #1256ab;
  --teal-fundo: #e8f2fc;
  --navy: #0b2548;
  --texto: #1e2d44;
  --texto-suave: #5a6b80;
  --linha: #d5e6f7;
  --branco: #ffffff;
  --fundo: #f3f8fe;
  --whatsapp: #25d366;
  --sombra: 0 12px 32px rgba(11, 37, 72, 0.08);
  --raio: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topo {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  box-shadow: 0 1px 0 var(--linha);
}
.topo-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px; gap: 18px;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0;
}
.logo-img {
  height: 78px; width: auto; display: block;
}
.menu {
  display: flex; align-items: center; gap: 26px; list-style: none; margin-left: auto; margin-right: 18px;
}
.menu a { color: var(--navy); font-weight: 500; font-size: .92rem; }
.menu a:hover, .menu a.ativo { color: var(--teal-escuro); }
.btn-menu {
  display: none; border: 0; background: transparent; font-size: 1.5rem; cursor: pointer; color: var(--navy);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700;
  padding: 13px 26px; border-radius: 10px; transition: .2s ease; font-size: .95rem;
}
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-escuro); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-linha { background: #fff; color: var(--navy); border: 1.5px solid var(--linha); }
.btn-largo { width: 100%; }
[hidden] { display: none !important; }

.hero {
  background: linear-gradient(180deg, #dceeff 0%, #ffffff 70%);
  padding: 28px 0 8px;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center;
  min-height: 520px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  line-height: 1.15; color: var(--navy); letter-spacing: -.03em; font-weight: 800;
  max-width: 560px;
}
.hero-foto {
  position: relative; min-height: 520px; display: flex; align-items: flex-end; justify-content: center;
}
.hero-foto::before {
  content: ""; position: absolute;
  width: 92%; height: 78%; right: 0; bottom: 0;
  background: var(--teal);
  border-radius: 48% 48% 18px 18px;
}
.hero-foto img {
  position: relative; z-index: 1; height: 520px; width: auto; max-width: 100%;
  object-fit: contain; object-position: bottom center;
}

.faixa-veiculo {
  background: linear-gradient(180deg, #ffffff 0%, #e8f2fc 100%);
  padding: 28px 0 56px;
}
.veiculo-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; 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: 340px; object-fit: cover; }
.veiculo-texto h2 {
  text-align: left; margin-bottom: 12px; font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.veiculo-texto p { color: var(--texto-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(--teal);
}

.secao { padding: 78px 0; }
.secao h2 {
  text-align: center; color: var(--navy); font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800; margin-bottom: 36px;
}
.subtitulo { text-align: center; color: var(--texto-suave); margin: -18px 0 36px; }

.cards-atalho { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-atalho {
  background: #fff; border-radius: 20px; padding: 28px 22px 32px;
  box-shadow: var(--sombra); text-align: center; border: 1px solid #eef6f6;
  transition: .2s ease; display: block;
}
.card-atalho:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26, 111, 212, .16); }
.card-atalho .desenho {
  width: 120px; height: 120px; margin: 0 auto 18px;
  background: var(--teal-fundo); border-radius: 50%;
  display: grid; place-items: center;
}
.card-atalho .desenho svg { width: 64px; height: 64px; }
.card-atalho h3 { color: var(--navy); font-size: 1.12rem; font-weight: 700; line-height: 1.35; }

.card {
  background: #fff; border: 1px solid var(--linha); border-radius: var(--raio);
  padding: 28px 24px; box-shadow: var(--sombra);
}
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.15rem; }
.card p { color: var(--texto-suave); font-size: .95rem; }

.depoimentos { background: var(--fundo); }
.cards-dep { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dep {
  background: #fff; border-radius: 16px; padding: 22px 22px 24px; box-shadow: var(--sombra);
}
.dep header { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.dep img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.dep strong { display: block; color: var(--navy); font-size: .95rem; }
.dep small { color: var(--texto-suave); }
.estrelas { color: #fbbc04; letter-spacing: 1px; margin-bottom: 8px; font-size: .9rem; }
.dep p { color: var(--texto); font-size: .92rem; }

.faixa-carreira {
  position: relative; min-height: 380px; color: #fff;
  background: #0b2548 center/cover no-repeat;
  display: grid; place-items: center; text-align: center;
}
.faixa-carreira::before {
  content: ""; position: absolute; inset: 0; background: rgba(11, 37, 72, .52);
}
.faixa-carreira .container { position: relative; z-index: 1; padding: 80px 0; }
.faixa-carreira h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; font-weight: 800; }
.faixa-carreira p { max-width: 680px; margin: 0 auto 26px; font-size: 1.05rem; }

.faq-lista { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linha); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 4px; font-weight: 700; color: var(--navy); display: flex;
  justify-content: space-between; gap: 16px; font-size: 1.02rem;
}
.faq-item .mais { color: var(--teal); font-size: 1.5rem; font-weight: 500; line-height: 1; }
.faq-item .resposta {
  display: none; color: var(--texto-suave); padding: 0 4px 18px; font-size: .95rem;
}
.faq-item.aberto .resposta { display: block; }
.faq-item.aberto .mais { transform: rotate(45deg); }

.rodape { background: #0b2548; color: #c5d5e8; padding: 56px 0 22px; }
.rodape-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 32px; }
.rodape h4 { color: #fff; margin-bottom: 14px; font-size: .95rem; }
.rodape a { display: block; margin: 7px 0; color: #c5d5e8; font-size: .9rem; }
.rodape a:hover { color: var(--teal); }
.rodape .copy { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; font-size: .8rem; }

.wa-flutua {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 64px; height: 64px; border-radius: 50%; background: var(--whatsapp);
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.wa-flutua:hover { transform: scale(1.07); }
.wa-flutua svg { width: 34px; height: 34px; fill: #fff; }

.cookies {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: #0b2548; color: #eee; padding: 16px 24px;
  display: none; align-items: center; justify-content: center; gap: 20px;
}
.cookies.visivel { display: flex; }
.cookies p { font-size: .86rem; max-width: 780px; }
.cookies a { color: var(--teal); text-decoration: underline; }

.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(--teal-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; }
}

.capa-pagina {
  background: var(--teal-fundo);
  padding: 56px 0 28px; text-align: center;
}
.capa-pagina h1 { color: var(--navy); font-size: 2.1rem; margin-bottom: 8px; font-weight: 800; }
.formulario {
  background: #fff; border: 1px solid var(--linha); border-radius: var(--raio);
  padding: 28px; box-shadow: var(--sombra); max-width: 640px; margin: 0 auto;
}
.campo { margin-bottom: 14px; }
.campo label { display: block; font-weight: 700; margin-bottom: 6px; color: var(--navy); font-size: .9rem; }
.campo input, .campo textarea, .campo select {
  width: 100%; border: 1.5px solid var(--linha); border-radius: 10px; padding: 12px 14px;
}
.campo input:focus, .campo textarea:focus { outline: 2px solid #9fd0ff; border-color: var(--teal); }
.aviso { background: var(--teal-fundo); border-radius: 12px; padding: 14px 16px; color: var(--navy); margin-top: 14px; }
.resultado-oculto { display: none; }
.resultado-oculto.mostrar { display: block; }

.boas-vindas {
  display: none;
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--teal-fundo);
  color: var(--navy);
  border-radius: 10px;
  font-weight: 600;
}
.boas-vindas.mostrar { display: block; }
#btn-continuar { margin-top: 12px; }
.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; }
.aviso-demo {
  margin-top: 12px;
  max-width: 720px;
  font-size: .9rem;
  color: #8a5b00;
  background: #fff4d6;
  border-radius: 10px;
  padding: 10px 12px;
}

.numeros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.numero { background: var(--navy); color: #fff; border-radius: 16px; padding: 22px; text-align: center; }
.numero strong { display: block; font-size: 1.6rem; color: var(--teal); }
.solucoes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.foto-larga { width: 100%; height: 360px; object-fit: cover; border-radius: 20px; }
.timeline { border-left: 3px solid var(--teal); margin: 20px 0 0 12px; padding-left: 22px; }
.timeline li { list-style: none; margin-bottom: 18px; }
.timeline strong { color: var(--teal-escuro); }
.vaga {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  border: 1px solid var(--linha); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px;
}

@media (max-width: 980px) {
  .hero-grid, .cards-atalho, .cards-dep, .rodape-grid, .numeros, .solucoes-grid, .cards-3, .veiculo-grid { grid-template-columns: 1fr; }
  .topo-inner { flex-wrap: wrap; }
  .logo-img { height: 64px; }
  .menu {
    display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 12px;
    padding: 0 0 16px; margin: 0;
  }
  .menu.aberto { display: flex; }
  .btn-menu { display: block; margin-left: auto; }
  .hero-grid { min-height: auto; }
  .hero-foto, .hero-foto img { min-height: 360px; height: 380px; }
  .vaga { flex-direction: column; align-items: flex-start; }
  .cookies { flex-direction: column; text-align: center; }
  .fraude-caixa { padding: 26px 18px 22px; }
}
