@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
.center{
    max-width: 1280px;
    padding: 0 2%;
    margin: 0 auto;
}



.right{
    float: right;
}

.clear{
    clear: both;
}

/*Estilização do site (fim)*/

.header{
    background: #11396A;
}

.logosite{
    width: 30px;
    height: 30px;
}

.mobile{
    background: #11396A;
    display: none;
}

nav.desktop {
    background: #11396A;
}
@media screen and (max-width: 700px){
    nav.desktop{
        display: none;
    }

    nav.mobile{
        background: #11396A;
        display: block;
    }

    .botao-menu-mobile{
        font-size: 38px;
        cursor: pointer;
        color: #f0f0f0;
    }

    nav.mobile ul{
        background: #11396A;
        top: 50px;
        z-index: 3;
        position: absolute;
        left: 0;
        width: 100%;
        display: none;
        text-align: center;
    }

    nav.mobile li{
        background: #11396A;
        font-weight: 300;
        width: 100%;
        display: block;
        font-size: 17px;
        padding: 8px 0;
    }

    nav.mobile li a{
        background: #11396A;
        display: block;
        color: #f0f0f0;
        text-decoration: none;
    }
}