/* Vocabulário visual de noflyds.com: fundo quase preto, Geist, numeração editorial. */
:root {
  --bg: #07040d;
  --panel: #0c0817;
  --line: #1c1530;
  --text: #f7f3ff;
  --muted: #a196c0;
  --accent: #b9a6ff;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
}

.wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ── topo ───────────────────────────────────────────── */

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.brand:hover { color: var(--text); }

.lang {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
}
.lang:hover { text-decoration: underline; }

/* ── título ─────────────────────────────────────────── */

h1 {
  font-weight: 600;
  font-size: clamp(1.9rem, 6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 3rem 0 0.75rem;
}

.sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}

.dates {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.5rem 0 0;
}

.lead {
  margin: 2.5rem 0 0;
  padding: 1.25rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
}
.lead p { margin: 0; }

/* ── seções ─────────────────────────────────────────── */

section { margin-top: 3rem; }

h2 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}

h2 .n {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
}

p { margin: 0 0 1rem; }

ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}
li { margin-bottom: 0.4rem; }

strong { font-weight: 600; }

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

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── rodapé ─────────────────────────────────────────── */

footer {
  margin-top: 4.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
