/* ==========================================================
   ROTAS CERTAS
   ESTILOS GLOBAIS
========================================================== */

/* ==========================================================
   GOOGLE FONTS
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ==========================================================
   VARIÁVEIS
========================================================== */

:root{

    --cor-primaria:#0D2C3A;
    --cor-secundaria:#CFE8F3;
    --cor-texto:#1F2933;
    --cor-clara:#FFFFFF;

    --container:1280px;

    --transicao:.35s ease;

}

/* ==========================================================
   HTML
========================================================== */

html{

    scroll-behavior:smooth;

}

/* ==========================================================
   BODY
========================================================== */

body{

    font-family:"Inter",sans-serif;

    background:#ffffff;

    color:var(--cor-texto);

    line-height:1.6;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(100% - 4rem,var(--container));

    margin-inline:auto;

}

/* ==========================================================
   IMAGENS
========================================================== */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    color:inherit;

}

/* ==========================================================
   LISTAS
========================================================== */

ul,
ol{

    list-style:none;

}

/* ==========================================================
   BOTÕES
========================================================== */

button{

    font:inherit;

    border:none;

    background:none;

    cursor:pointer;

}

/* ==========================================================
   FORMULÁRIOS
========================================================== */

input,
textarea,
select{

    font:inherit;

}

/* ==========================================================
   SELEÇÃO
========================================================== */

::selection{

    background:var(--cor-secundaria);

    color:var(--cor-primaria);

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f2f2f2;

}

::-webkit-scrollbar-thumb{

    background:#0D2C3A;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#154457;

}