/* ═══════════════════════════════════════════════════════════════
   reset.css — Normalize e reset base
   ═══════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-corpo);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--texto-primario);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  outline: none;
}

button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* Scrollbar customizada */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cinza-100); }
::-webkit-scrollbar-thumb { background: var(--azul-300); border-radius: var(--raio-full); }
::-webkit-scrollbar-thumb:hover { background: var(--azul-500); }

/* Seleção de texto */
::selection { background: var(--azul-200); color: var(--azul-900); }
