/* Reset enxuto. Só o que o projeto usa. */

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

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: var(--fonte);
    font-size: var(--fs-corpo);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img,
svg,
iframe {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
}

a {
    color: var(--cor-acento);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Foco visível em tudo: a tela do aluno é usada com teclado em sala de aula. */
:focus-visible {
    outline: 2px solid var(--cor-acento);
    outline-offset: 2px;
}

[hidden] {
    display: none !important;
}
