/* =====================================================
   00 - GLOBAL / BODY
   BASE NEUTRA DO PROJETO
   NÃO ALTERA SECTIONS
===================================================== */


/* RESET BÁSICO */

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


/* =====================================================
   BODY
===================================================== */

body{

    font-family:'Inter',system-ui,-apple-system,sans-serif;
    line-height:1.6;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

    overflow-x:hidden;

}


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

a{
    text-decoration:none;
}


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

img{
    max-width:100%;
    height:auto;
    display:block;
}


/* =====================================================
   SELECTION
===================================================== */

::selection{
    background:#999;
    color:#fff;
}


/* =====================================================
   SCROLLBAR (NEUTRO)
===================================================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#777;
    border-radius:20px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

body{
    font-size:15px;
}

}