/* Estilo próprio das landing pages de SEO local (/consulta-credito/:uf).
   Independente do bundle da SPA para não depender de nomes de arquivo com hash. */
:root {
  --navy: #041334;
  --navy-light: #0a2a5e;
  --accent: #22c55e;
  --text: #1a1a1a;
  --muted: #5b6472;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--navy);
}
.logo {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.cta-header {
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 64px 24px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero .subtext {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 18px;
  opacity: 0.9;
}
.cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px;
}
.content h2 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
}
.content p {
  color: var(--muted);
}
.steps {
  padding-left: 20px;
  color: var(--muted);
}
.steps li {
  margin-bottom: 8px;
}
.faq-item {
  margin-bottom: 24px;
}
.faq-item h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}
.faq-item p {
  margin: 0;
}
.cta-final {
  text-align: center;
  background: #f7f9fc;
  border-radius: 16px;
  max-width: 720px;
}
.footer {
  text-align: center;
  padding: 32px 24px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid #eee;
}
.footer a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
