main{
    gap: 100px;
    background-color: var(--bg1);
}


.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner:before{
    content: "";
    display: flex;
    width: 100%;
    height: 85px;
    background-image: url(../imagens/mask.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    z-index: 5;
    filter: brightness(0) saturate(100%) invert(86%) sepia(7%) saturate(36%) hue-rotate(201deg) brightness(112%) contrast(96%);
}
.banner:after{
    content: "";
    display: flex;
    width: 576px;
    height: 161px;
    background-image: url('../imagens/home/bg1.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 6;
}
.banner-slider{
    width: 100%;
}
.banner-slider .banner-slide{
    width: 100%;
    position: relative;
}
.banner-slider .banner-slide picture::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #00000063;
}
.banner-slider .banner-slide picture,
.banner-slider .banner-slide picture img{
    width: 100%;
    height: fit-content;
    display: flex;
    position: relative;
}
.banner-slider .banner-slide .absolute-container{
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.banner-slider .banner-slide .absolute-container .container{
    max-width: 1800px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.banner-slider .banner-slide .absolute-container .container .texto{
    max-width: 771px;
    gap: 25px;
}
.banner-slider .banner-slide .absolute-container .container .texto h2{
    font-size: 60px;
    font-weight: 600;
}
.banner-slider .banner-slide .absolute-container .container .texto a{
    max-width: fit-content;
    width: 100%;
    height: 60px;
    border: 2px solid #fff;
    padding: 10px 25px;
    color: #fff;
    font-weight: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    transition: ease .3s;
}
.banner-slider .banner-slide .absolute-container .container .texto a:hover{
    background-color: #fff;
    color: var(--primaria);
    font-weight: 400;
    transition: ease .3s;
}
.banner-slider.slick-dotted.slick-slider{
    margin-bottom: 0;
}
.banner-slider .slick-dots{
    bottom: 150px;
}
.banner-slider .slick-dots li button:before{
    font-size: 55px;
    color: #eee!important;
}
.banner-slider .slick-dots li.slick-active button:before{
    color: #fff!important;
}


.servicos{
    width: 100%;
}
.servicos .container{
    gap: 75px;
}
.servicos .titulo{
    max-width: 591px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    gap: 10px;
}
.servicos .servicos-div{
    width: 100%;
    gap: 20px 1%;
    justify-content: center;
}
.servicos .servicos-div .box:hover{
    transform: translateY(-15px);
    transition: ease .3s;
}
.servicos .servicos-div .box{
    width: 24%;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: var(--cor-1);
    align-items: center;
    text-align: center;
    gap: 10px;
    position: relative;
    transition: ease .3s;
    /* background-image: url('../imagens/home/bg-serv.png');
    background-size: auto;
    background-position: top right;
    background-repeat: no-repeat; */
}
.servicos .servicos-div .box .icon{
    max-width: 110px;
    position: relative;
    z-index: 5;
}
.servicos .servicos-div .box .icon img{
    max-width: 100%;
    width: fit-content;
    height: fit-content;
}
.servicos .servicos-div .box .div{
    display: flex;
    width: 100%;
    height: 1px;
    background-color: #ffffff42;
    margin: auto 0 5px;
    position: relative;
    z-index: 5;
}
.servicos .servicos-div .box a{
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 5;
}
/* POP UP */
.pop-up-servicos.open,
.pop-up-servicos .pop-up.open{
    opacity: 1;
    z-index: 100;
    pointer-events: all;
    transition: ease .3s;
}
.pop-up-servicos{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: ease .3s;
}
.pop-up-servicos .pop-up{
    width: 100%;
    height: 100%;
    padding: 50px 0;
    position: fixed;
    top: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    align-content: center;
    justify-items: center;
    transition: ease .3s;
}
.pop-up-servicos .pop-up .bg{
    background-color: #000000d4;
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
}
.pop-up-servicos .pop-up .content{
    max-width: 1200px;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    background-color: #fff;
    border-radius: 20px;
    z-index: 10;
    position: relative;
    padding: 50px;
    display: flex;
    align-items: start;
    gap: 50px;
}
.pop-up-servicos .pop-up .content .texto{
    max-width: 533px;
    width: 100%;
    gap: 20px;
    display: grid;
    text-align: justify;
}
.pop-up-servicos .pop-up .content .img{
    max-width: 551px;
    width: 100%;
}
.pop-up-servicos .pop-up .content .img img{
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}


.diferenciais{
    width: 100%;
    position: relative;
}
.diferenciais:after{
    content: "";
    display: flex;
    width: 700px;
    height: 161px;
    background-image: url('../imagens/home/bg2.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -80px;
    left: 0;
}
.diferenciais .container{
    gap: 75px;
}
.diferenciais .titulo{
    max-width: 591px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    gap: 10px;
}
.diferenciais .dife-div{
    width: 100%;
    gap: 50px;
}
/* SLIDER TOPO */
.diferenciais .dife-div .dife-links{
    max-width: 1420px;
    width: 100%;
    margin: 0 auto;
}
.diferenciais .dife-div .dife-links .slick-current h6,
.diferenciais .dife-div .dife-links h6:hover{
    color: var(--cor-1);
    border-bottom: 1px solid var(--cor-1);
    transition: ease .3s;
}
.diferenciais .dife-div .dife-links h6{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    padding: 10px 25px;
    color: #1f1f1f4d;
    border-bottom: 1px solid #1f1f1f4d;
    transition: ease .3s;
}
/* SLIDER BAIXO */
.diferenciais .dife-div .dife-slider{
    width: 100%;
}
.diferenciais .dife-div .dife-slider .box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}
.diferenciais .dife-div .dife-slider .box .img{
    max-width: 682px;
    width: 100%;
}
.diferenciais .dife-div .dife-slider .box .img img{
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    align-self: center;
}
.diferenciais .dife-div .dife-slider .box .texto{
    max-width: 776px;
    width: 100%;
    height: fit-content;
    align-self: center;
    gap: 20px;
    padding: 30px 0;
}
.diferenciais .dife-div .dife-slider .box .texto p{
    text-align: justify;
}
.diferenciais .dife-div .dife-slider .box .texto .div{
    display: flex;
    width: 100%;
    height: 1px;
    background-color: #1f1f1f4d;
}
.diferenciais .dife-div .dife-slider .box .texto a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 60px;
    background-color: var(--cor-1);
    padding: 10px 25px;
    color: #fff;
    font-weight: 200;
    text-align: center;
    margin-top: auto;
}


.consultoria{
    width: 100%;
    min-height: 490px;
    background-image: url('../imagens/home/bg-cons.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
}
.consultoria .container{
    gap: 50px;
}
.consultoria .texto{
    max-width: 735px;
    width: 100%;
    margin-left: auto;
    text-align: center;
    align-self: center;
    padding: 50px 0;
    gap: 20px;
}
.consultoria .texto p{
    font-weight: 200;
}
.consultoria .texto a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 60px;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin: 20px auto 0;
    background-color: #fff;
    color: var(--cor-1);
}


.sobre{
    width: 100%;
    position: relative;
}
.sobre:after{
    content: "";
    display: flex;
    width: 670px;
    height: 161px;
    background-image: url('../imagens/home/bg3.png');
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -55px;
    right: 0;
}
.sobre .container{
    display: flex;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}
.sobre .container .img{
    max-width: 663px;
    width: 100%;
}
.sobre .container .img img{
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    align-self: center;
}
.sobre .container .texto{
    max-width: 815px;
    width: 100%;
    padding: 30px 0;
}
.sobre .container .texto h3,
.sobre .container .texto h3 span{
    font-weight: 500;
}
.sobre .container .texto .sub{
    font-weight: 300;
    font-style: italic;
}
.sobre .container .texto p{
    margin-top: 30px;
    text-align: justify;
}
.sobre .container .texto ul {
    width: 100%;
    gap: 20px;
    margin-top: 30px;
}
.sobre .container .texto ul li {
    display: flex;
    width: 100%;
    gap: 20px;
}
.sobre .container .texto ul li img{
    width: 24px;
    height: fit-content;
}
.sobre .container .texto ul li h6 {
    max-width: calc(100% - 44px);
    color: var(--primaria);
}
.sobre .container .texto ul li h6 strong{
    font-weight: 500;
}


.equipe{
    width: 100%;
}
.equipe .topo{
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.equipe .topo .titulo{
    max-width: 591px;
    width: 100%;
    gap: 10px;
}
.equipe .topo .titulo h2{
    font-weight: 500;
}
.equipe .topo .arrow.desktop{
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
}
.equipe .arrow.mobile{
    display: none;
    gap: 10px;
}
.equipe .arrow button i{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--cor-1);
    color: var(--cor-1);
    font-size: 35px;
}
.equipe .equipe-slider{
    width: 100%;
}
.equipe .equipe-slider .slick-track{
    padding: 50px 0;
}
.equipe .equipe-slider .box:hover{
    margin-top: -30px;
    transition: ease .3s;
}
.equipe .equipe-slider .box{
    width: 95%;
    margin: 0 auto;
    position: relative;
    transition: ease .3s;
}
.equipe .equipe-slider .box .img{
    width: 100%;
    position: relative;
    border-radius: 5px;
}
.equipe .equipe-slider .box .img img{
    width: 100%;
    position: relative;
    object-fit: contain;
    border-radius: 5px;
}
.equipe .equipe-slider .box .img:after{
    content: "";
    display: flex;
    width: 100%;
    min-height: 100%;
    background-image: url('../imagens/home/filtro.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    z-index: 2;
    bottom: 0;
}
.equipe .equipe-slider .box .texto{
    position: absolute;
    z-index: 10;
    width: 100%;
    padding: 30px 20px;
    bottom: 0;
    justify-content: center;
}
.equipe .equipe-slider .box .texto h5{
    color: #fff;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
}


.depoimentos{
    width: 100%;
    min-height: 680px;
    background-image: url('../imagens/home/bg-depo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top; 
    padding-top: 110px;
}
.depoimentos .container{
    align-items: start;
}
.depoimentos .topo{
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.depoimentos .topo .titulo{
    max-width: 571px;
    width: 100%;
    gap: 10px;
}
.depoimentos .topo .titulo h2{
    font-weight: 500;
}
.depoimentos .topo .titulo p{
    font-weight: 200;
    max-width: 500px;
    margin: 0 auto;
}
.depoimentos .topo .arrow.desktop{
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
}
.depoimentos .arrow.mobile{
    display: none;
    gap: 10px;
}
.depoimentos .arrow.desktop button i{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    font-size: 35px;
}
.depoimentos .arrow.mobile button i{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--cor-1);
    color: var(--cor-1);
    font-size: 35px;
}
.depoimentos .depoimentos-slider{
    width: 100%;
}
.depoimentos .depoimentos-slider .slick-track{
    padding: 10px 0;
}
.depoimentos .depoimentos-slider .slick-slide.slick-current.slick-active{
    transform: translateY(-10px);
    transition: transform .3s ease;
}
.depoimentos .depoimentos-slider .box{
    width: 95%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 15px;
    gap: 30px;
    transition: ease .3s;
}
.depoimentos .depoimentos-slider .box .texto{
    width: 100%;
    gap: 5px;
}
.depoimentos .depoimentos-slider .box .texto span{
    font-weight: 600;
    font-size: 15px;
}
.depoimentos .depoimentos-slider .box .texto h5{
    font-weight: 600;
    color: var(--cor-1);
}
.depoimentos .depoimentos-slider .box .texto p{
    font-weight: 400;
}
.depoimentos .depoimentos-slider .box .user{
    margin-top: auto;
    width: 100%;
    display: flex;
    gap: 10px;
}
.depoimentos .depoimentos-slider .box .user img{
    display: flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
.depoimentos .depoimentos-slider .box .user div{
    max-width: calc(100% - 82px);
    align-self: center;
}
.depoimentos .depoimentos-slider .box .user div span{
    font-size: 15px;
    font-weight: 600;
}
.depoimentos .depoimentos-slider .box .user div span:nth-child(1){
    color: var(--primaria);
}
.depoimentos .depoimentos-slider .box .user div span:nth-child(2){
    color: #929292;
}


.formulario{
    width: 100%;
    min-height: 715px;
    background-image: url('../imagens/home/bg-form.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top; 
    position: relative;
}
.formulario:after {
    content: "";
    display: flex;
    width: 576px;
    height: 161px;
    background-image: url(../imagens/home/bg1.png);
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -80px;
    right: 0;
    z-index: 6;
}
.formulario .container{
    display: grid;
    grid-template-columns: 1fr 700px;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 50px;
    row-gap: 50px;  
    padding-bottom: 50px; 
}
.formulario .texto{
    max-width: 709px;
    width: 100%;
    padding: 100px 0 0;
    gap: 30px;
}
.formulario .texto .topo{
    width: 100%;
    gap: 20px;
    display: flex;
}
.formulario .texto .topo .barra{
    width: 8px;
    height: 90px;
    margin: auto 0;
    background-color: #fff;
    border-radius: 50px;
}
.formulario .texto .topo div{
    max-width: calc(100% - 28px);
    gap: 10px;
}
.formulario .texto .topo div p{
    font-weight: 200;
}
.formulario .texto .div{
    max-width: 500px;
    width: 100%;
    height: 1px;
    background-color: #d9d9d980;
    border-radius: 50px;
}
.formulario .texto .informacoes{
    width: 100%;
    display: grid;
    grid-template-columns: 410px 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 50px;
    row-gap: 50px; 
}
.formulario .texto .informacoes .info{
    width: 100%;
    gap: 25px;
}
.formulario .texto .informacoes .info h6{
    font-weight: 500;
}
.formulario .texto .informacoes .info a{
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 200;
}
.formulario .texto .informacoes .info a i{
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}
.formulario .texto .informacoes .info a span{
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.formulario .texto .informacoes .info a span img{
    max-width: 100%;
}
.formulario .texto .safe{
    display: flex;
    align-items: center;
    min-height: 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 200;
    margin-top: 20px;
    gap: 10px;
}
.formulario .form{
    max-width: 700px;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    margin-top: -50px;
}
.formulario .form .botoes-form{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.formulario .form .botoes-form button{
    padding: 30px 20px;
    font-size: 18px;
    border: 1px solid transparent;
    background-color: #d9d9d9;
    color: #000;
    font-weight: 500;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.formulario .form .botoes-form button.ativo,
.formulario .form .botoes-form button:hover{
    background-color: #fff;
    transition: ease .3s;
}
.formulario form.ativado{
    display: flex!important;
    flex-wrap: wrap;
}
.formulario form{
    display: none;
    width: 100%;
    padding: 30px 35px;
    gap: 10px;
    align-self: start;
    justify-content: space-between;
    background-color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.formulario form .topo{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.formulario form .topo .barra{
    width: 10px;
    height: 56px;
    margin: auto 0;
    background-color: var(--cor-1);
    border-radius: 50px;
}
.formulario form .topo h2 span{
    font-weight: 600;
}
.formulario form input{
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    color: #1f1f1f7a;
    font-weight: 400;
}
.formulario form textarea{
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    color: #1f1f1f7a;
    font-weight: 400;
}
.formulario form .arquivo{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 50px;
    background-color: #f2f2f2;
    border-radius: 10px;
}
.formulario form .arquivo input[type="file"] {
    display: none;
}
.formulario form .arquivo label {
    width: 100%;
    height: 73px;
    background-color: #f2f2f2;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    color: #1f1f1f7a;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    align-items: center;
    cursor: pointer;
}
.formulario form .arquivo label i {
    font-size: 20px;
}
.formulario form .arquivo label.remove{
    display: none!important;
}
.formulario form .arquivo p{
    font-weight: 600;
    font-size: 21px;
    color: #1f1f1f7a;
    font-weight: 400;
    max-width: 100%;
    height: 73px;
    padding: 0 20px;
    display: flex;
    z-index: 1;
    align-items: center;
    position: absolute;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    margin-bottom: 0;
}
.formulario form input::placeholder,
.formulario form textarea::placeholder{
    color: #1f1f1f7a;
    font-weight: 400;
}
.formulario form .inputs{
    width: 100%;
    display: flex;
    gap: 10px;
}
.formulario form button{
    max-width: 383px;
    width: 100%;
    min-height: 50px;
    margin: 20px auto 0;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 400;
    color: #fff;
    background-color: var(--cor-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cor-1);
    transition: ease .3s;
}




/* MEDIA DESKTOP */
@media screen and (max-width: 1850px){
    .banner-slider .banner-slide .absolute-container .container{
        padding-left: 5%;
        padding-right: 5%;
    }
    .banner-slider .banner-slide .absolute-container .container .texto h2{
        font-size: 55px;
    }
}

@media screen and (max-width: 1600px){
    .formulario .container{
        grid-template-columns: 600px 1fr;
    }
    .formulario .texto .informacoes{
        column-gap: 20px;
        row-gap: 20px;
    }
}

@media screen and (max-width: 1500px){
    .banner-slider .banner-slide .absolute-container .container .texto{
        max-width: 670px;
    }
    .banner-slider .banner-slide .absolute-container .container .texto h2{
        font-size: 50px;
    }
}

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

@media screen and (max-width: 1366px){
    .banner:after,
    .diferenciais:after,
    .sobre:after,
    .formulario:after{
        display: none;
    }
    .banner-slider .banner-slide .absolute-container .container .texto{
        max-width: 630px;
    }
}

@media screen and (max-width: 1280px){
    .banner-slider .banner-slide .absolute-container .container .texto h2{
        font-size: 47px;
    }
    .banner-slider .slick-dots{
        bottom: 120px;
    }

    .sobre .container .texto .sub,
    .diferenciais .dife-div .dife-slider .box .texto a,
    .formulario .texto .informacoes .info a,
    .consultoria .texto a{
        font-size: 18px;
    }

    .formulario .form .botoes-form button{
        font-size: 20px;
    }
    
    .formulario .container{
        grid-template-columns: 1fr 1fr;
    }
    .formulario .texto .informacoes{
        grid-template-columns: 1fr;
    }
    .formulario form button{
        font-size: 20px;
    }

    .pop-up-servicos .pop-up .content{
        max-width: 90%;
    }
}

@media screen and (max-width: 1100px){
    .banner-slider .banner-slide .absolute-container .container .texto{
        max-width: 600px;
    }
    .banner-slider .banner-slide .absolute-container .container .texto h2{
        font-size: 45px;
    }

    .diferenciais .dife-div .dife-slider .box{
        flex-direction: column;
    }
    .diferenciais .dife-div .dife-slider .box .texto{
        max-width: 680px;
        margin: 0 auto;
        padding: 0;
        order: 0;
        justify-content: center;
        text-align: center;
    }
    .diferenciais .dife-div .dife-slider .box .img{
        max-width: 680px;
        margin: 0 auto;
        order: 1;
    }

    .consultoria .texto{
        margin: 0 auto;
    }

    .sobre .container{
        flex-direction: column;
        align-items: center;
    }
    .sobre .container .texto{
        max-width: 100%;
    }

    .formulario .container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .formulario .texto,
    .formulario .form{
        max-width: 710px;
        margin-top: 0;
    }
    .formulario .texto .informacoes{
        grid-template-columns: 410px 1fr;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .equipe .topo .arrow.desktop,
    .depoimentos .topo .arrow.desktop{
        display: none;
    }
    .equipe .arrow.mobile,
    .depoimentos .arrow.mobile{
        display: flex;
        margin: 0 auto;
    }

    .servicos .servicos-div .box{
        width: 32%;
    }

    .pop-up-servicos .pop-up .content{
        display: grid;
    }
    .pop-up-servicos .pop-up .content .texto,
    .pop-up-servicos .pop-up .content .img{
        max-width: 555px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 800px){
    .banner{
        margin-bottom: -75px;
    }
    .banner-slider .banner-slide .absolute-container .container .texto h2{
        font-size: 45px;
    }
    .banner:before{
        height: 35px;
    }
    .banner-slider .slick-dots{
        bottom: 80px;
    }

    .servicos .servicos-div{
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }
    .servicos .servicos-div .box{
        flex: 0 0 auto;
        width: 300px;
    }

    .servicos .container,
    .diferenciais .container{
        gap: 50px;
    }
 
}

@media screen and (max-width: 700px){
    .banner-slider .banner-slide .absolute-container .container .texto a{
        height: 60px;
    }

    .formulario{
        padding: 0!important;
    }
    .formulario .texto{
        padding: 100px 5% 0;
    }
    .formulario form{
        padding: 30px 5%;
    }
    .formulario .form .botoes-form button{
        font-size: 18px;
    }
    .formulario form button{
        font-size: 18px;
    }
    .formulario .texto .informacoes{
        grid-template-columns: 1fr;
    }
    .formulario form .inputs{
        flex-wrap: wrap;
    }

    .diferenciais .dife-div .dife-slider .box .texto a,
    .sobre .container .texto .sub,
    .consultoria .texto a,
    .formulario .texto .informacoes .info a{
        font-size: 16px;
    }
}

@media screen and (max-width: 480px){
    .banner-slider .banner-slide .absolute-container .container .texto h2 {
        font-size: 8.5vw;
    }
    .banner-slider .slick-dots {
        bottom: 50px;
    }
    .banner-slider .slick-dots li button:before{
        font-size: 40px;
    }

    .servicos .servicos-div .box{
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }

    .formulario .texto .informacoes .info a{
        font-size: 14px;
    }
    .formulario .texto .informacoes .info a span{
        display: none;
    }
}

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

}