/* Vasquez Atendimento, folha de estilo única.
   Sem fontes externas nem recursos de terceiros: a página precisa carregar
   sozinha, sem nenhuma requisição para fora do domínio. */

:root {
  color-scheme: light;
  --bg: #fbfaf8;
  --surface: #ffffff;
  --ink: #16202e;
  --ink-soft: #4d5867;
  --muted: #6b7482;
  --line: #e4e2dc;
  --line-soft: #efedE8;
  --accent: #1f4b73;
  --accent-soft: #eef3f8;
  --radius: 10px;
  --maxw: 720px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: #143a5c; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* Cabeçalho */

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand .mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.site-nav a { color: var(--ink-soft); text-decoration: none; }
.site-nav a:hover { color: var(--accent); text-decoration: underline; }

/* Blocos */

main { display: block; }

.hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0 0 18px;
  font-size: 33px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 650;
}

.lede {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}

section { padding: 40px 0; border-bottom: 1px solid var(--line-soft); }
section:last-of-type { border-bottom: 0; }

h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 650;
}

h3 {
  margin: 28px 0 8px;
  font-size: 17px;
  font-weight: 650;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 8px; }
li:last-child { margin-bottom: 0; }

.steps { list-style: none; padding: 0; counter-reset: step; }

.steps > li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
  counter-increment: step;
}

.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong { display: block; }

.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.callout h2, .callout h3 { margin-top: 0; }

.meta-list { margin: 0; }
.meta-list dt { font-weight: 650; margin-top: 12px; }
.meta-list dt:first-child { margin-top: 0; }
.meta-list dd { margin: 0 0 0 0; color: var(--ink-soft); }

.note {
  font-size: 15px;
  color: var(--muted);
}

/* Rodapé */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 34px 0 44px;
  font-size: 15px;
  color: var(--ink-soft);
}

.site-footer p { margin: 0 0 10px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.footer-id { line-height: 1.7; }
.footer-id strong { color: var(--ink); font-weight: 650; }

.disclaimer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--muted);
}

/* Documentos legais */

.doc-header { padding: 44px 0 8px; }
.doc-header h1 { font-size: 28px; margin-bottom: 10px; }
.doc-date { margin: 0; font-size: 15px; color: var(--muted); }

.doc section { padding: 28px 0; }
.doc section:first-of-type { padding-top: 24px; }

.toc { font-size: 15px; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  h1 { font-size: 27px; }
  .lede { font-size: 17px; }
  .hero { padding: 40px 0 32px; }
  .site-nav { margin-left: 0; width: 100%; gap: 14px; }
  .wrap { padding: 0 20px; }
}

@media print {
  .site-header, .site-nav { border: 0; }
  body { background: #fff; font-size: 12pt; }
}
