/* The Best Now For You - institutional / informational site.
   Sem JavaScript em nenhuma pagina: todo conteudo vem no HTML renderizado,
   igual pra visitante, Googlebot e AdsBot-Google. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --ink: #1b2026;
  --body: #3d464f;
  --muted: #6b757e;
  --accent: #1e3a5f;
  --accent-soft: #eaf0f6;
  --line: #e3e8ed;
  --radius: 10px;
  --max: 780px;
}

*, *::before, *::after { box-sizing: border-box; }

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

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

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

/* ---------- header ---------- */

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

.site-header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand span { color: var(--accent); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 22px;
}

.nav a {
  color: var(--muted);
  font-size: 15px;
  text-decoration: none;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover { color: var(--accent); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }

/* ---------- page ---------- */

main { padding: 56px 0 72px; }

h1 {
  color: var(--ink);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 650;
  margin: 0 0 14px;
}

h2 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 44px 0 12px;
}

h3 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 8px;
}

p { margin: 0 0 16px; }

.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
}

a { color: var(--accent); }

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

hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

/* ---------- cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: 14px;
  margin: 24px 0 8px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--bg);
}

.card .icon { color: var(--accent); display: block; margin-bottom: 12px; }
.card h3 { margin: 0 0 6px; }
.card p { font-size: 15px; color: var(--muted); margin: 0; }
.card a { font-size: 15px; }

.note {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 28px 0;
}

.note p:last-child { margin-bottom: 0; }
.note h2 { margin-top: 0; }

.inline-icon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-weight: 600;
}

.btn {
  display: inline-block;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 20px;
  transition: background-color .15s ease, color .15s ease;
}

.btn:hover { background: var(--accent); color: #fff; }

/* ---------- tables of facts ---------- */

.facts {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  margin: 24px 0;
}

.facts dl { margin: 0; }

.facts div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.facts div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); font-size: 14px; min-width: 150px; margin: 0; }
.facts dd { color: var(--ink); font-size: 15px; margin: 0; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 34px 0;
  font-size: 14px;
  color: var(--muted);
}

.site-footer p { margin: 0 0 8px; }
.site-footer .footer-nav { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 16px; }
.site-footer .footer-nav a { color: var(--body); text-decoration: none; }
.site-footer .footer-nav a:hover { color: var(--accent); text-decoration: underline; }
.site-footer .copyright { margin-top: 14px; }

/* ---------- mobile ---------- */

@media (max-width: 640px) {
  body { font-size: 16px; }
  main { padding: 40px 0 56px; }
  h1 { font-size: 27px; }
  .lead { font-size: 17px; }
  .site-header .wrap { padding-top: 14px; padding-bottom: 14px; }
  .nav { gap: 4px 16px; }
  .nav a { font-size: 14px; }
  .facts dt { min-width: 0; }
}
