/* =========================================================
|--------------------------------------------------------------------------
| ARQUIVO:
| /public/assets/css/global/reset.css
|--------------------------------------------------------------------------
| RESET GLOBAL
|--------------------------------------------------------------------------
========================================================= */

*,
*::before,
*::after
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body
{
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg
{
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select
{
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

button
{
    cursor: pointer;
}

a
{
    text-decoration: none;
    color: inherit;
}

ul,
ol
{
    list-style: none;
}

table
{
    border-collapse: collapse;
    border-spacing: 0;
}