/* RESET CSS */

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

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

/* Remove decoração de links */
a {
    text-decoration: none;
    color: inherit;
}

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

/* Inputs herdam fonte */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove borda padrão de botão */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Ajuste básico do body */
body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

/* Tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}