/* Reset CSS básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 16px;
    font-family: sans-serif;
    line-height: 1.5;
}

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

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

/* Zera estilos de botões */
button, input, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

/* Melhora a acessibilidade */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
