/* =========================================
   RESET — Zera comportamentos do navegador
   ========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a            { text-decoration: none; color: inherit; }
img          { display: block; max-width: 100%; }
button       { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: var(--fonte-corpo); }

/* ── Scrollbar customizada ── */
::-webkit-scrollbar               { width: 6px; }
::-webkit-scrollbar-track         { background: var(--clr-bg); }
::-webkit-scrollbar-thumb         { background: var(--clr-dark); border-radius: 3px; }
