/* Reset Moderno e Acessível */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    /* UX suave para âncoras */
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

a {
    text-decoration-skip-ink: auto;
    color: inherit;
}

/* Reduz animações se o usuário preferir (Acessibilidade) */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}