
.banner{
    width: 100%;
    position: relative;
}
.banner picture{
    width: 100%;
    position: relative;
}
.banner picture img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.banner picture::after{
    content: "";
    display: flex;
    width: 100%;
    height: 80px;
    position: absolute;
    z-index: 2;
    bottom: 0;
    background-image: url(../imagens/bn-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner .absolute{
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
    position: absolute;
    z-index: 3;
}
.banner .absolute .container{
    height: 100%;
}
.banner .absolute .texto{
    width: 60%;
    justify-content: center;
}
.banner .absolute .texto p,
.banner .absolute .texto p strong{
    font-size: 30px;
}
.banner .absolute .texto a{
    margin-top: 30px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 343px;
    width: fit-content;
    min-height: 53px;
    padding: 5px 40px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}


.sobre{
    width: 100%;
    padding: 50px 0 100px;
}
.sobre .container{
    text-align: center;
    align-items: center;
}

.sobre .sub{
    max-width: 600px;
    width: 100%;
}
.sobre .txt{
    width: 100%;
    margin: 40px auto 0;
    font-weight: 500;
}


.clientes{
    width: 100%;
    padding: 0 0 100px;
}
.clientes .container{
    gap: 30px;
    align-items: center;
}
.clientes .titulo{
    max-width: 540px;
    width: 100%;
    text-align: center;
}
.clientes .clientes-div{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.clientes .clientes-div .arrow.mobile{
    display: none;
    gap: 15px;
}
.clientes .clientes-div .arrow i{
    display: flex;
    width: 29px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-1);
    color: #fff;
    font-size: 22px;
}
.clientes .clientes-div .clientes-slider{
    max-width: calc(100% - 100px);
    width: 100%;
    margin: 0 auto;
}
.clientes .clientes-div .clientes-slider .slick-track{
    padding: 15px 0;
}
.clientes .clientes-div .clientes-slider .box{
    align-items: center;
    justify-content: center;
    width: 95%;
    height: 145px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0px 12px 13px 0px rgba(0, 0, 0, 0.05);
}
.clientes .clientes-div .clientes-slider .box img{
    max-width: 80%;
    max-height: 110px;
}
.clientes .botao{
    width: 100%;
    justify-content: center;
}
.clientes .botao .btn{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    width: 100%;
    min-height: 53px;
    padding: 10px 20px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.clientes .botao .btn:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}



/* MEDIA DESKTOP */
@media screen and (max-width: 1900px){
    .banner .absolute .texto p,
    .banner .absolute .texto p strong{
        font-size: 1.3vw;
    }
    .banner .absolute .texto h1{
        font-size: 3vw;
    }
    .banner .absolute .texto a{
        font-size: 1vw;
        min-height: 2.8vw;
    }
}

@media screen and (max-width: 1440px){

}

@media screen and (max-width: 1366px){

}

@media screen and (max-width: 1280px){

}

@media screen and (max-width: 1100px){

}

/* MOBILE */
@media screen and (max-width: 1000px){
    
}

@media screen and (max-width: 800px){
    .clientes .clientes-div{
        flex-wrap: wrap;
        justify-content: center;
    }
    .clientes .clientes-div .arrow.desktop{
        display: none!important;
    }
    .clientes .clientes-div .clientes-slider{
        max-width: 100%;
    }
    .clientes .clientes-div .arrow.mobile{
        display: flex;
    }
}

@media screen and (max-width: 600px){
    .banner .absolute{
        display: none;
    }
    .banner .absolute .texto{
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .banner .absolute .texto h1 {
        font-size: 10vw;
    }
    .banner .absolute .texto p, 
    .banner .absolute .texto p strong{
        font-size: 3.3vw;
    }
    .banner .absolute .texto a {
        font-size: 3.3vw;
        min-height: 40px;
    }

}

@media screen and (max-width: 480px){

}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}