.banner{
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
}
.banner::after{
    content: "";
    display: flex;
    width: 100%;
    height: 80px;
    position: absolute;
    z-index: 10;
    bottom: 30px;
    background-image: url(../imagens/bn-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner .banner-slider{
    width: 100%;
}
.banner .banner-slider .box{
    width: 100%;
    position: relative;
}
.banner .banner-slider .box picture{
    width: 100%;
    height: fit-content;
    position: relative;
}
.banner .banner-slider .box picture img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.banner .banner-slider .box .absolute{
    width: 100%;
    height: 100%;
    padding-bottom: 80px;
    position: absolute;
    z-index: 3;
}
.banner .banner-slider .box .absolute .container{
    height: 100%;
}
.banner .banner-slider .box .absolute .texto{
    width: 60%;
    justify-content: center;
}
.banner .banner-slider .box .absolute .texto p,
.banner .banner-slider .box .absolute .texto p strong{
    font-size: 30px;
}
.banner .banner-slider .box .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;
}
.banner .arrow{
    max-width: 100%;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    position: absolute;
    bottom: 140px;
    padding-left: calc((100% - 1300px) / 2);
    padding-right: 43%;
}
.banner .arrow i{
    width: 34px;
    height: 56px;
    border: 1px solid #000;
    background-color: #fff0;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    align-content: center;
    font-size: 22px;
    color: #000;
    transition: ease .3s;
}
.banner .arrow i:hover{
    color: var(--cor-1);
    background-color: #000;
    transition: ease .3s;
}
.banner .arrow .slick-dots-wrapper{
    display: flex;
    align-items: center;
}
.banner .arrow .slick-dots-wrapper .slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner .arrow .slick-dots-wrapper .slick-dots{
    bottom: 0;
    position: relative;
}
.banner .arrow .slick-dots-wrapper .slick-dots li button{
    border: 2px solid #000;
    background-color: transparent;
    border-radius: 50%;
}
.banner .arrow .slick-dots-wrapper .slick-dots li button:before{
    font-size: 0;
    line-height: 0;
    top: 50%;
    left: 50%;
}
.banner .arrow .slick-dots-wrapper .slick-dots li.slick-active button{
    background-color: #000;
}


.servicos{
    width: 100%;
    padding: 75px 0 150px;
}
.servicos .container{
    gap: 50px;
    align-items: center;
}
.servicos .titulo{
    max-width: 505px;
    width: 100%;
    align-items: center;
    text-align: center;
}
.servicos .box-div.servicos-slider{
    display: none;
}
.servicos .box-div.desktop{
    width: 100%;
    gap: 25px;
    justify-content: center;
}
.servicos .box-div .box{
    max-width: 420px;
    width: 100%;
    padding: 10px;
    gap: 15px;
    border-radius: 15px;
    box-shadow: 0px 12px 20px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}
.servicos .box-div .box .img{
    width: 100%;
    height: 245px;
    justify-content: center;
    position: relative;
}
.servicos .box-div .box .img::after{
    content: "";
    width: 100%;
    height: 168px;
    position: absolute;
    top: 0;
    border-radius: 20px;
    z-index: 1;
}
.servicos .box-div .box .img img{
    max-width: 100%;
    max-height: 100%;
    width: fit-content;
    height: fit-content;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.servicos .box-div .box .texto{
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}
.servicos .box-div .box .texto h3{
    font-weight: 600;
    font-size: 36px;
    max-width: calc(100% - 20px - 70px);
}
.servicos .box-div .box .texto span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 41px;
    border-radius: 50px;
}
.servicos .box-div .box:nth-child(odd) .img::after,
.servicos .box-div .box:nth-child(odd) .texto span{
    background-color: var(--cor-1);
}
.servicos .box-div .box:nth-child(even) .img::after,
.servicos .box-div .box:nth-child(even) .texto span{
    background-color: #E3B22D;
}
.servicos .arrow.mobile{
    display: none;
}


.diferenciais{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 150px;
    background-color: var(--bg1);
}
.diferenciais .container{
    gap: 50px;
}
.diferenciais .titulo{
    max-width: 530px;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    text-align: center;
}
.diferenciais .box-div.diferenciais-slider{
    display: none;
}
.diferenciais .box-div.desktop{
    width: 100%;
    gap: 25px;
}
.diferenciais .box-div .box{
    max-width: calc(100% - 66% - 26px);
    width: 100%;
    border-radius: 10px;
    padding: 30px 20px;
    gap: 25px;
    background-color: #fff;
    box-shadow: 0px 12px 20px 5px rgba(0, 0, 0, 0.05);
}
.diferenciais .box-div .box .icon{
    width: 55px;
    height: fit-content;
}
.diferenciais .box-div .box .icon i,
.diferenciais .box-div .box .icon img{
    max-width: 100%;
    width: fit-content;
    max-height: 100%;
    height: fit-content;
    font-size: 55px;
    filter: brightness(0) saturate(100%) invert(37%) sepia(98%) saturate(3079%) hue-rotate(182deg) brightness(91%) contrast(86%);
}
.diferenciais .box-div .box .texto{
    max-width: calc(100% - 55px - 25px);
    gap: 10px;
}
.diferenciais .box-div .box .texto h5{
    font-weight: 700;
}
.diferenciais .arrow.mobile{
    display: none;
}
.diferenciais .botao{
    width: 100%;
    justify-content: center;
}
.diferenciais .botao .btn{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 412px;
    width: 100%;
    min-height: 53px;
    padding: 5px 40px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.diferenciais .botao .btn:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}


.clientes{
    width: 100%;
    padding-top: 50px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}
.clientes::after{
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 326px;
    background-image: url(../imagens/home/bg2.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 15px;
}
.clientes .container{
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 5;
}
.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: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    font-size: 22px;
    transition: ease .3s;
}
.clientes .clientes-div .arrow i:hover{
    background-color: #fff;
    color: var(--cor-1);
    transition: ease .3s;
}
.clientes .clientes-div .arrow.mobile i{
    background-color: var(--cor-1);
    color: #fff;
}
.clientes .clientes-div .arrow.mobile i:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}
.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);
    background-color: #fff;
}
.clientes .clientes-div .clientes-slider .box img{
    max-width: 80%;
    width: fit-content;
    height: fit-content;
    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;
}


.sobre{
    width: 100%;
    padding: 150px 0;
}
.sobre .container{
    gap: 50px;
}
.sobre .texto{
    max-width: 585px;
    width: 100%;
}
.sobre .texto p{
    margin: 35px 0;
    font-weight: 500;
}
.sobre .btn {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 345px;
    width: 100%;
    min-height: 53px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.sobre .btn:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}
.sobre .img{
    max-width: 712px;
    width: 100%;
    height: fit-content;
    position: relative;
    justify-content: center;
}
.sobre .img .img-1{
    width: 93.5%;
    height: auto;
    position: relative;
    z-index: 1;
}
.sobre .img .img-2{
    width: 38.5%;
    height: auto;
    position: absolute;
    z-index: 2;
    bottom: -30px;
    left: -20px;
}
.sobre .img .img-3{
    width: 38.5%;
    height: auto;
    position: absolute;
    z-index: 2;
    top: -60px;
    right: -20px;
}
.sobre .mobile{
    display: none;
    margin-top: -20px;
}


.depoimentos{
    width: 100%;
    padding: 50px 0 150px;
    background-color: var(--bg1);
}
.depoimentos .container{
    gap: 20px;
    align-items: center;
}
.depoimentos .titulo{
    max-width: 500px;
    width: 100%;
    align-items: center;
    text-align: center;
}
.depoimentos .mobile{
    display: none;
    gap: 15px;
    margin: 0 auto;
}
.depoimentos .arrow i {
    display: flex;
    width: 29px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background-color: var(--cor-1);
    color: #fff;
    font-size: 22px;
}
.depoimentos .arrow i:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}
.depoimentos .box-div{
    width: 100%;
    gap: 20px;
    justify-content: center;
}
.depoimentos .box-div .depoimentos-slider{
    max-width: calc(100% - 40px - 58px);
    width: 100%;
}
.depoimentos .box-div .depoimentos-slider .slick-track{
    padding: 30px 0;
}
.depoimentos .box-div .depoimentos-slider .box{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    gap: 10px;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0px 12px 13px 0px rgba(0, 0, 0, 0.05);
}
.depoimentos .box-div .depoimentos-slider .box .img{
    width: fit-content;
    object-fit: contain;
}
.depoimentos .box-div .depoimentos-slider .box p{
    width: 100%;
    margin-bottom: 20px;
}
.depoimentos .box-div .depoimentos-slider .box .user{
    margin-top: auto;
    gap: 10px;
}
.depoimentos .box-div .depoimentos-slider .box .user img{
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.depoimentos .box-div .depoimentos-slider .box .user div{
    max-width: calc(100% - 10px - 46px);
}
.depoimentos .box-div .depoimentos-slider .box .user div .txt1{
    font-weight: 600;
}
.depoimentos .box-div .depoimentos-slider .box .user div .txt2{
    font-weight: 300;
}
.depoimentos .botao{
    width: 100%;
    justify-content: center;
}
.depoimentos .botao .btn{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 362px;
    width: 100%;
    min-height: 53px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.depoimentos .botao .btn:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}


.banner-mid{
    width: 100%;
    position: relative;
    border-radius: 15px;
    background-color: var(--bg1);
    background-image: url(../imagens/home/bg1.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.banner-mid .container{
    min-height: 275px;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.banner-mid .texto{
    max-width: 570px;
    width: 100%;
}
.banner-mid .texto .btn{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 279px;
    width: 100%;
    min-height: 53px;
    padding: 5px 40px;
    margin-top: 30px;
    background-color: var(--cor-2);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.banner-mid .texto .btn:hover{
    background-color: #ffca3c;
    transition: ease .3s;
}
.banner-mid .img{
    max-width: 650px;
    width: 100%;
    min-height: 275px;
    position: relative;
    place-items: end;
}
.banner-mid .img img{
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
}


.blog-geral{
    width: 100%;
    padding: 100px 0 ;
}
.blog-geral .container{
    gap: 50px;
    align-items: center;
    text-align: center;
}
.blog-geral .titulo{
    max-width: 505px;
    width: 100%;
}
.blog-geral .blog-div{
    width: 100%;
    gap: 75px 20px;
    justify-content: center;
}
.blog-geral .blog-div .box:hover .img img{
    transform: scale(1.2);
    transition: ease .3s;
}
.blog-geral .blog-div .box{
    max-width: 410px;
    width: 100%;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 12px 13px 0px rgba(0, 0, 0, 0.05);
}
.blog-geral .blog-div .box .img{
    width: 100%;
    height: 258px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.blog-geral .blog-div .box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: ease .3s;
}
.blog-geral .blog-div  .box .texto{
    width: 100%;
    padding: 20px;
    gap: 20px;
    align-items: center;
}
.blog-geral .blog-div .box .texto h4{
    width: 100%;
    line-height: 1;
    font-size: 24px;
}
.blog-geral .blog-div .box .texto p{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    margin-bottom: 50px;
}
.blog-geral .blog-div .box .texto a {
    position: absolute;
    bottom: -22.5px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 210px;
    width: 100%;
    min-height: 45px;
    padding: 10px 20px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: ease .3s;
}


.formulario-geral{
    margin-top: 100px;
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
    margin-right: 5px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.formulario-geral .texto{
    order: 1;
    padding: 50px calc((100% - 1300px) / 2) 50px 50px ;
}
.formulario-geral .img{
    order: 0;
}
.formulario-geral .img img{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}


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

    .banner .arrow i {
        width: 1.7vw;
        height: 3vw;
        font-size: 1.1vw;
    }
    .banner .arrow .slick-dots-wrapper .slick-dots li button{
        width: 1vw;
        height: 1vw;
    }
}

@media screen and (max-width: 1440px){
    .banner::after{
        bottom: 0;
    }
    .banner .arrow{
        bottom: 115px;
    }


    .formulario-geral .texto{
        padding: 50px 5%;
    }
}

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

}

@media screen and (max-width: 1270px){
    .banner .banner-slider .box picture::after{
        height: 5vw;
    }
    .banner .arrow {
        bottom: 9vw;
    }

    .servicos .box-div{
        flex-wrap: wrap;
    }

    .blog-geral .blog-div{
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 1100px){
    .diferenciais .box-div .box{
        max-width: calc(100% - 50% - 12.5px);
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .diferenciais{
        background-size: 100% 300px;
    }

    .sobre .container{
        flex-direction: column;
        align-items: center;
        gap: 100px;
    }
    .sobre .texto{
        align-items: center;
    }
    .sobre .texto h2,
    .sobre .texto span{
        text-align: center;
    }
    .sobre .texto .btn{
        display: none;
    }
    .sobre .mobile{
        display: flex;
    }

}

@media screen and (max-width: 800px){
    .diferenciais .box-div{
        justify-content: center;
    }
    .diferenciais .box-div .box{
        max-width: 500px;
    }

    .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;
    }

    .sobre .img{
        max-width: 90%;
    }

    .banner-mid{
        padding: 50px 0 0;
    }
    .banner-mid .container{
        flex-direction: column;
    }
    .banner-mid .texto{
        align-items: center;
        text-align: center;
    }
    .banner-mid .img{
        min-height: unset;
    }
    .banner-mid .img img{
        position: relative;
    }

    .depoimentos .arrow.desktop{
        display: none!important;
    }
    .depoimentos .arrow.mobile{
        display: flex;
    }
    .depoimentos .box-div .depoimentos-slider{
        max-width: 100%;
    }
}

@media screen and (max-width: 600px){
    .diferenciais .container {
        gap: 20px;
    }
    .diferenciais .box-div.desktop{
        display: none!important;
    }
    .diferenciais .box-div.diferenciais-slider{
        display: unset;
        width: 100%;
    }
    .diferenciais .box-div.diferenciais-slider .slick-track{
        padding: 20px 0;
    }
    .diferenciais .box-div.diferenciais-slider .box{
        width: 95%;
        height: 100%;
        margin: 0 auto;
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
    }
    .diferenciais .box-div .box .icon{
        width: 41px;
    }
    .diferenciais .box-div .box .texto{
        max-width: calc(100% - 20px - 41px);
    }
    .diferenciais .arrow.mobile{
        display: flex;
        gap: 15px;
        margin: 0 auto;
    }
    .diferenciais .arrow.mobile i{
        display: flex;
        width: 29px;
        height: 48px;
        align-items: center;
        justify-content: center;
        background-color: var(--cor-1);
        border: 2px solid var(--cor-1);
        border-radius: 5px;
        color: #fff;
        font-size: 22px;
        transition: ease .3s;
    }
    .diferenciais .arrow.mobile i:hover{
        background-color: #fff;
        color: var(--cor-1);
        transition: ease .3s;
    }


    .formulario-geral{
        margin-top: 0px;
    }


    .servicos .box-div.desktop{
        display: none!important;
    }
    .servicos .box-div.servicos-slider{
        display: unset;
        width: 100%;
    }
    .servicos .box-div.servicos-slider .slick-track{
        padding: 20px 0;
    }
    .servicos .box-div.servicos-slider .box{
        max-width: unset;
        width: 95%;
        margin: 0 auto;
    }
    .servicos .box-div .box .texto h3{
        font-size: 26px;
    }
    .servicos .arrow.mobile{
        display: flex;
        gap: 15px;
        margin: 0 auto;
    }
    .servicos .arrow.mobile i{
        display: flex;
        width: 29px;
        height: 48px;
        align-items: center;
        justify-content: center;
        background-color: var(--cor-1);
        border: 2px solid var(--cor-1);
        border-radius: 5px;
        color: #fff;
        font-size: 22px;
        transition: ease .3s;
    }
    .servicos .arrow.mobile i:hover{
        background-color: #fff;
        color: var(--cor-1);
        transition: ease .3s;
    }
}

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

}

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

}
