/* reset.css */

/* 1. Remove margens e paddings padrão */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Garante que HTML5 seja renderizado corretamente */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/* 3. Remove a decoração de lista padrão */
ol,
ul {
    list-style: none;
}

/* 4. Remove decoração de links */
a {
    text-decoration: none;
    color: inherit;
}

/* 5. Remove bordas e heranças padrão de botões e formulários */
button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
}

/* 6. Corrige imagens */
img {
    max-width: 100%;
    display: block;
}

/* 7. Garante altura total no body e html */
html,
body {
    height: 100%;
    font-family: sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 8. Remove espaços extras em tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 9. Define elementos base como block */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
figure {
    margin: 0;
}

/* 10. Garante comportamento consistente para elementos do form */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* 11. Melhora a acessibilidade */
[hidden] {
    display: none !important;
}