/*
 * ══════════════════════════════════════════════
 *  RESET.CSS — Normalize / Reset
 * ══════════════════════════════════════════════
 *
 *  Propósito : Normalizar comportamento cross-browser e resetar
 *              estilos padrão do navegador.
 *  Dependências : Nenhuma (deve ser o primeiro CSS carregado).
 *  NÃO COLOCAR AQUI : Estilos visuais, tokens, layout de componentes.
 */

/* ── Box Model ────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ── Reset de Margens ─────────────────────────── */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ── Imagens Responsivas ──────────────────────── */
img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

/* ── Links e Botões ───────────────────────────── */
a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

input,
textarea,
select {
    font: inherit;
}

/* ── Scrollbar Customizada ────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-black);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}
