/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font);

    background:var(--background);

    color:var(--text);

    font-size:16px;

    line-height:1.5;

    -webkit-font-smoothing:antialiased;

    min-height:100vh;

}

/* ==========================
   LINKS
========================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================
   LISTAS
========================== */

ul{

    list-style:none;

}

/* ==========================
   IMAGENS
========================== */

img{

    display:block;

    width:100%;

}

/* ==========================
   BOTÕES
========================== */

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

    background:none;

}

/* ==========================
   INPUTS
========================== */

input,
textarea,
select{

    font-family:inherit;

}

/* ==========================
   TÍTULOS
========================== */

h1{

    font-size:28px;

    font-weight:700;

}

h2{

    font-size:22px;

    font-weight:700;

}

h3{

    font-size:18px;

    font-weight:600;

}

p{

    color:var(--text-light);

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:#bdbdbd;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#999;

}

/* ==========================
   UTILITÁRIOS
========================== */

.hidden{

    display:none !important;

}

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:var(--space-2);

}

.mt-2{

    margin-top:var(--space-4);

}

.mt-3{

    margin-top:var(--space-6);

}

.mb-1{

    margin-bottom:var(--space-2);

}

.mb-2{

    margin-bottom:var(--space-4);

}

.mb-3{

    margin-bottom:var(--space-6);

}

.fade{

    animation:fade .35s;

}

/* ==========================
   ANIMAÇÃO
========================== */

@keyframes fade{

    from{

        opacity:0;

        transform:translateY(12px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}