@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
body, header, footer{
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
}
.navbar{
    background-color: white;
}
/*Page Home*/
.fundoCapa{
    background-color: #84A3B5;
}
.capa{
    background-image: url(../images/home/imgCapa.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.capa h1{
    color: white;
    position: absolute;
    font-size:3.2vw;
    left: 20%;
    transform: translate(-25%);
}
#fundoTexto{
    background-color: #f5f5f5;
}
#textoCapa{
    margin: 60px 28% 0px 24%;

}
.tooltipStyle{
    font-weight: 600;
    color: #84A3B5 !important;
}


/*Menu Superior*/
.logo{
    margin: 1% 0% 1% 5%;
}
.navbar-nav{
    margin-right: 5%;
}
.navbar-nav li{
    margin-right: 40px;
    margin-left: 20px;
    background-color: white;
}
.navbar-nav li a{
    color: black;
}


/*Botão*/
#botao{
    text-align: center;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
#botaoComecar{
    background-color: #19223C;
    border-radius: 25px;
    color: white;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
    margin-bottom: 65px;
}

/*Icone*/
li{
    list-style: none; 
}
.icon{
    display: flex;
    vertical-align: text-top;
}
.icon.checkmark::before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    font-weight: 900;
    margin-right: 15px;
}


/* Estilização da barra de rolagem */
::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
::-webkit-scrollbar {
    width: 10px;
    background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
    background: darkgrey;
}

/*Rodapé*/
footer{
    padding: 1% 0% 1% 0%;
}
#rodape1, #rodape2{
    max-width: 60%;
}
.centro{
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 480px){

    #textoCapa{
        margin: 40px 30px 0px 40px;
    
    }
}

@media (max-width: 980px){
   
    .logo{
        max-width: 35%;
    }  
}