/* Estilo base mínimo do site de Educação. Substituir/expandir pelo design
   system da Marvee quando os assets forem trazidos pra cá (ver o marketing,
   que serve /site/site.css). */
:root {
  --bg: #04081f;
  --fg: #eef2ff;
  --muted: #98a2c7;
  --teal: #00ede8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

main { width: 100%; max-width: 46rem; }

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
}

h1 { margin: 0 0 1rem; font-size: clamp(1.8rem, 5vw, 2.8rem); line-height: 1.15; }

.lead { font-size: 1.15rem; color: var(--fg); }

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
}

.cta:hover { opacity: 0.9; }

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