/* Reset global para sobrescrever o User Agent Stylesheet do navegador */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box; /* Garante que padding e border não afetem a dimensão final do box */
    vertical-align: baseline;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    line-height: 1;
    min-height: 100vh;
}

ol, ul, li {
    list-style: none; /* Remove os marcadores padrão das listas */
}

a, a:hover {
    text-decoration: none; /* Remove o sublinhado padrão dos links */
    color: inherit;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%; /* Imagens fluidas adaptáveis ao tamanho da tela */
    height: auto;
}