
.container{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* ESTILO DO CABEÇALHO */

header{
    width: 100%;
    height: auto;
    padding: 10px 2%;
    box-shadow: 2px 2px 7px 0px #00000043;
    z-index: 99999;
    position: sticky;
    top: 0;
    left: 0;
    background-color: #000;
}

.ajuste-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logotipo{
    width: 20%;
}

.logo-mob{
    display: none;
}

.logotipo img{
    width: 50%;
    max-width: 280px;
}

.menu-desk{
    width: 80%;
    text-align: right;
}

.menu-desk nav a{
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.menu-desk nav a.cliente-btn{
    background-color: #ffffff00;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    transition: .2s;
    box-shadow: 2px 2px 7px 0px #00000043;
    padding: 5px 20px;
    display: inline-flex;
    align-items: center;
}

.menu-desk nav a.cliente-btn i{
    font-size: 28px;
    margin-right: 10px;
    color: #fff;
}

.menu-desk nav a:hover{
    color: #001ac4;
}

.menu-desk nav a.cliente-btn:hover{
    background-color: #001ac4;
    color: #fff;
    border: 1px #001ac4;
    scale: 1.05;
}

/* ESTILO DO MENU MOBILE */

.menu-mobile{
    width: 100%;
    height: 0;
    /* padding: 20px 0; */
    /* background-color: #f49f20b0; */
    background-color: #000;
    position: fixed;
    top: 100px;
    left: 0;
    visibility: hidden;
    transition: .5s ;
    overflow: hidden;
    z-index: 9999;
}

.menu-mobile nav a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 15px 0;
    font-size: 26px;
    font-weight: 300;
    transition: .2s;
}

.menu-mobile nav a:hover{
    background-color: #000;
    color: #fff;
    transform: scale(1.05);
}

#btn-menu{
    background: transparent;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    border: 0;
    transition: .2s;
    display: none;
    position: relative;
    top:3%;
    right: 0;
    margin-right: 20px;
}

.linha{
    position: relative;
    top: 3px;
    height: 4px;
    background: #fff;
    width: 40px;
    display: block;
    margin: 8px auto;
    transform-origin: center;
    transition: .2s;
    border-radius: 20px;
} 

#btn-menu.ativo .linha:nth-child(1){
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(3){
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(2){
    width: 0;
}

@media screen and (max-width: 980px) {
    header{
        background-color: #000;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
    }
    .menu-desk{
        display: none;
    }

    .logo-desk{
        display: none;
    }
    .logo-mob{
        display: block;
    }

    .logotipo{
        width: 25%;
    }

    .logotipo img{
        width: 70%;
        min-width: 120px;
        max-width: 320px;
    }

    #btn-menu{
        display: block;
    }

    .menu-mobile.abrir{
        visibility: visible;
        height: calc(100vh - 100px);
    }
}

section.acesso-rapido{
    padding: 80px 0;
    background-color: #e6e6e6;
}

.ajuste-acesso{
    justify-content: center;
    gap: 60px;
    display: flex;
    margin-top: 60px;
}

.ajuste-acesso a{
    text-decoration: none;
}

.ajuste-acesso button{
    width: 260px;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 200;
    padding: 10px 20px;
    border: 0;
    background-color: #fff;
    border-radius: 40px 0px 40px 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0px 8px 0px 0px #001ac4;
}

.ajuste-acesso button span{
    font-weight: 600;
    color: #001ac4;
    font-size: 20px;
}

.ajuste-acesso button:hover{
    transform: scale(.9);
}

.ajuste-acesso button i{
    font-size: 3rem;
    margin-right: 20px;
    color: #000;
}

@media screen and (max-width: 980px){
    .ajuste-acesso{
        gap: 30px;
        align-items: center;
        flex-direction: column;     
    }
}

footer{
    padding: 50px 0 20px 0;
    background-color: #000;
}

.line-top, .line-down{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-box{
   width: 25%;
   text-align: center;
}

.footer-box img{
    width: 50%;
}

.footer-box:nth-child(2){
    color: #fff;
    font-size: 15px;
}

.footer-box:nth-child(2) i{
    color: #fff;
    background-color: #001ac4;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
}

.footer-box button:hover{
    transform: scale(.9);
}

.footer-box:nth-child(3) p{
    color: #fff;
}

.footer-box:nth-child(3) button{
    width: 220px;
    height: 50px;
    color: #fff;
    background-color: #001ac4;
    font-size: 22px;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
}

.footer-box:nth-child(4) button{
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #001ac4;
    font-size: 22px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.line-down{
    display: flex;
    justify-content: space-between;
}

.line-down,.line-meedle{
    border-top: 2px solid #353535;
    padding-top: 20px;
}

.line-down p, .line-meedle p{
    color: #fff;
    margin-bottom: 8px;
}

.line-down .footer-box-2:nth-child(2){
    text-align: right;
}

.line-down img{
    width: 50%;
}

.line-meedle{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.line-meedle h4{
    color: #001ac4;
    font-size: 23px;
    margin-bottom: 15px;
}

.line-meedle a{
    display: block;
    color: #fff;
    margin-bottom: 10px;
}

.line-meedle p{
    margin-bottom: 15px;
    color: #fff;
}

.line-meedle i{
    font-size: 22px;
    color: #001ac4;
    margin-right: 15px;
}

@media screen and (max-width: 980px){
    footer{
        padding: 50px 5% 20px 5%;
    }

    .line-top, .line-down{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;

        flex-direction: column;
    }

    .line-meedle{
        flex-direction: column;
    }

    .line-meedle div{
        margin-bottom: 40px;
    }

    .footer-box{
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-box:nth-child(3){
        text-align: center;
    }

    .line-down{
        border-top: 2px solid #353535;
        padding-top: 20px;
    }

    .line-down p{
        text-align: center;
        font-size: 12px;
    }

    .line-down .footer-box-2:nth-child(3){
        text-align: center;
        margin-top: 40px;
    }

}