/* ==========================================================
   REALEZA ACESSÓRIOS
   BASE.CSS
   Reset + Configurações Globais
========================================================== */

/* RESET */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML */

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* BODY */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.7;
    min-height: 100vh;
}

/* IMAGENS */

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* LINKS */

a {
    text-decoration: none;
    color: inherit;
}

/* LISTAS */

ul,
ol {
    list-style: none;
}

/* BOTÕES */

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* INPUTS */

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* TEXTAREA */

textarea {
    resize: vertical;
}

/* TABELAS */

table {
    border-collapse: collapse;
    width: 100%;
}

/* IFRAME */

iframe {
    border: 0;
}

/* UTILITÁRIOS */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* ESPAÇAMENTO PADRÃO */

section {
    padding: 64px 0;
}

/* RESPONSIVO — respiro vertical menor em tela estreita */

@media (max-width: 600px) {

    section {
        padding: 40px 0;
    }

}