/* MPSD Locadora — folha única, sem build e sem dependência.
   A página existe para dois públicos ao mesmo tempo: o cliente que quer alugar
   e o analista da Meta que precisa achar razão social, CNPJ e endereço em
   segundos. Por isso o rodapé é tão explícito quanto o topo — esconder dado
   cadastral é justamente o que reprova verificação. */

:root {
  --azul: #1e3a5f;
  --azul-claro: #2563eb;
  --destaque: #a16207;
  --fundo: #f8fafc;
  --texto: #0f172a;
  --suave: #e9eef5;
  --borda: #cbd5e1;
  --cinza: #475569;

  --largura: 1080px;
  --raio: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--texto);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Lexend, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--azul);
  line-height: 1.2;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

a { color: var(--azul-claro); }
a:hover { color: var(--azul); }

/* Foco visível: nunca remover — é navegação por teclado. */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--azul-claro);
  outline-offset: 3px;
  border-radius: 4px;
}

.envelope {
  max-width: var(--largura);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- topo ---------- */

.topo {
  border-bottom: 1px solid var(--borda);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topo .envelope {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
}

.marca {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.marca strong {
  font-family: Lexend, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: -.01em;
}

.marca span {
  font-size: .8rem;
  color: var(--cinza);
  letter-spacing: .02em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--texto);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 12px;          /* alvo de toque confortável */
  border-radius: 6px;
  transition: background 180ms ease, color 180ms ease;
}

.menu a:hover { background: var(--suave); color: var(--azul); }

/* ---------- botões ---------- */

.botao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--raio);
  background: var(--azul);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--azul);
  transition: background 180ms ease, border-color 180ms ease;
}

.botao:hover { background: #16304f; border-color: #16304f; }

.botao.contorno {
  background: transparent;
  color: var(--azul) !important;
}

.botao.contorno:hover { background: var(--suave); }

.botao svg { flex: none; }

/* ---------- hero ---------- */

.hero {
  background: var(--fundo);
  border-bottom: 1px solid var(--borda);
  padding: clamp(48px, 8vw, 88px) 0;
}

.hero p.linha {
  font-size: 1.12rem;
  color: var(--cinza);
  max-width: 60ch;
}

.hero .acoes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.selo {
  display: inline-block;
  background: var(--suave);
  color: var(--azul);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- faixa de oferta ---------- */

.oferta {
  background: var(--azul);
  color: #fff;
  padding: 22px 0;
}

.oferta .envelope {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.oferta p {
  margin: 0;
  font-family: Lexend, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
}

.oferta .botao {
  background: #fff;
  color: var(--azul) !important;
  border-color: #fff;
}

.oferta .botao:hover { background: var(--suave); border-color: var(--suave); }

/* ---------- seções ---------- */

section { padding: clamp(44px, 7vw, 76px) 0; }

section.alternada {
  background: var(--fundo);
  border-top: 1px solid var(--borda);
  border-bottom: 1px solid var(--borda);
}

.intro {
  max-width: 62ch;
  color: var(--cinza);
  margin-bottom: 36px;
}

.passos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: passo;
}

.passos li {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 24px;
}

.passos li::before {
  counter-increment: passo;
  content: counter(passo);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--azul);
  color: #fff;
  font-family: Lexend, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}

.passos h3 { margin-bottom: .3em; }
.passos p { margin: 0; color: var(--cinza); font-size: .97rem; }

/* ---------- cartão de dados cadastrais ---------- */

.cadastro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  overflow: hidden;
  background: #fff;
}

.cadastro div {
  padding: 20px 24px;
  border-bottom: 1px solid var(--borda);
  border-right: 1px solid var(--borda);
}

.cadastro dt {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cinza);
  font-weight: 600;
  margin-bottom: 4px;
}

.cadastro dd {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--texto);
}

/* ---------- aviso / caixa ---------- */

.caixa {
  border: 1px solid var(--borda);
  border-left: 4px solid var(--azul);
  border-radius: var(--raio);
  background: #fff;
  padding: 24px 26px;
}

.caixa h3 { display: flex; align-items: center; gap: 10px; }

/* ---------- rodapé ---------- */

.rodape {
  background: var(--azul);
  color: #dbe4f0;
  padding: 52px 0 32px;
  font-size: .95rem;
}

.rodape h3 { color: #fff; font-size: 1rem; margin-bottom: .8em; }
.rodape a { color: #fff; }

.rodape .colunas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px;
}

.rodape .legal {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: .87rem;
  color: #b9c8dd;
}

.rodape ul { list-style: none; padding: 0; margin: 0; }
.rodape li { margin-bottom: 8px; }

/* ---------- documento legal (política) ---------- */

.documento {
  max-width: 78ch;
  padding-top: 48px;
  padding-bottom: 72px;
}

.documento h2 {
  margin-top: 2em;
  padding-top: .6em;
  border-top: 1px solid var(--borda);
  font-size: 1.35rem;
}

.documento h2:first-of-type { border-top: 0; }

.documento ul { padding-left: 1.3em; }
.documento li { margin-bottom: .5em; }

.documento table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: .95rem;
}

.documento th, .documento td {
  border: 1px solid var(--borda);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.documento th { background: var(--suave); color: var(--azul); }

/* Tabela larga rola dentro de si — a página nunca rola na horizontal. */
.rolagem { overflow-x: auto; }

.data-vigencia {
  display: inline-block;
  background: var(--suave);
  border-radius: var(--raio);
  padding: 10px 16px;
  font-size: .92rem;
  color: var(--azul);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
