/* =============================================
   RESET CSS
============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    /* Melhora a renderização das fontes */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Garante que a rolagem suave funcione em toda a página */
    scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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