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

/* Ajustes base do documento */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

/* Corpo */
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

/* Remove estilos padrão de listas */
ul,
ol {
    list-style: none;
}

/* Remove sublinhado e herda cor em links */
a {
    text-decoration: none;
    color: inherit;
}

/* Elementos de mídia responsivos */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Herda fonte em formulários */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove bordas e fundo padrão de botões */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Evita overflow de textos longos */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Remove animações para quem prefere menos movimento */
@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;
    }
}
