/* Reset básico */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    /* Ajuste da altura da linha */
    -webkit-text-size-adjust: 100%;
    /* Evita mudanças automáticas no tamanho do texto no iOS */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* Define a fonte base */
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    background-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 0;
}

/* Remoção de bordas e estilos padrão de inputs e botões */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    border: none;
    padding: 0;
    background: none;
    color: inherit;
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none;
}