/* ═══════════════════════════════════════════════
   GOING NORTH — Base (reset + tipografia + utilitários globais)
   Importe APÓS tokens.css.
   ═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* ── Root ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Scrollbar ── */
::-webkit-scrollbar          { width: 5px; }
::-webkit-scrollbar-track    { background: transparent; }
::-webkit-scrollbar-thumb    { background: rgba(0, 0, 0, .15); border-radius: 99px; }
