main{
    background-color: #fff;
}


/* PAGINAÇÃO */
.paginacao{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    gap: 60px;
}
.paginacao::before{
    content: "";
    display: flex;
    width: 100%;
    height: 1px;
    background-color: var(--cor-5);
}
.paginacao .lista-paginacao{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.paginacao .lista-paginacao span a, 
.paginacao .lista-paginacao li a{
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primaria);
    border-radius: 5px;
    transition: ease .3s;
}
.paginacao .lista-paginacao span:hover a, 
.paginacao .lista-paginacao li a:hover,
.paginacao .lista-paginacao li a.active{
    background-color: var(--cor-2);
    color: #fff;
    transition: ease .3s;
}


.formulario-geral{
    width: 100%;
    align-items: center;
}
.formulario-geral .img{
    max-width: 780px;
    width: 100%;
    height: 100%;
}
.formulario-geral .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.formulario-geral .texto{
    width: fit-content;
    gap: 40px;
}
.formulario-geral .texto .topo{
    width: 100%;
}
.formulario-geral .texto .topo p{
    max-width: 525px;
}
.formulario-geral .texto .inputs-div{
    width: 100%;
    gap: 10px;
}
.formulario-geral .texto .inputs-div .input{
    align-items: center;
    width: calc(100% - 50% - 5px);
    height: 74px;
    border: 1px solid var(--cor-6);
    border-radius: 5px;
    position: relative;
}
.formulario-geral .texto .inputs-div .input span{
    position: absolute;
    left: 20px;
}
.formulario-geral .texto .inputs-div input,
.formulario-geral .texto .inputs-div select{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    padding: 0 20px 0 60px;
    color: var(--cor-4);
}
.formulario-geral .texto .inputs-div .textarea{
    width: 100%;
    border: 1px solid var(--cor-6);
    border-radius: 5px;
    position: relative;
}
.formulario-geral .texto .inputs-div .textarea textarea{
    width: 100%;
    height: 148px;
    padding: 20px;
     border-radius: 5px;
    color: var(--cor-4);
}
.formulario-geral .texto .inputs-div button{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    max-width: 245px;
    width: 100%;
    min-height: 60px;
    margin-top: 30px;
    background-color: var(--cor-1);
    border-radius: 5px;
    color: #fff;
    transition: ease .3s;
}
.formulario-geral .texto .inputs-div button:hover{
    background-color: #2da0e5;
    transition: ease .3s;
}
/* SPRITES FORM */
.bg-form1 {
    width: 25px; height: 26px;
    background: url('../imagens/form-sprite.png') -57px -10px;
}
.bg-form2 {
    width: 25px; height: 26px;
    background: url('../imagens/form-sprite.png') -102px -10px;
}
.bg-form3 {
    width: 28px; height: 20px;
    background: url('../imagens/form-sprite.png') -51px -57px;
}
.bg-form4 {
    width: 21px; height: 21px;
    background: url('../imagens/form-sprite.png') -10px -105px;
}
.bg-form5 {
    width: 27px; height: 27px;
    background: url('../imagens/form-sprite.png') -10px -10px;
}
.bg-form6 {
    width: 21px; height: 28px;
    background: url('../imagens/form-sprite.png') -10px -57px;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

}

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

}

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

}

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

@media screen and (max-width: 1100px){
    .formulario-geral{
        flex-direction: column;
    }
    .formulario-geral .texto{
        max-width: 800px;
        margin: 0 auto;
        order: 0!important;
    }
    .formulario-geral .img{
        max-width: 100%;
        order: 1!important;
    }
}

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

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

@media screen and (max-width: 600px){
    .formulario-geral .texto .inputs-div .input{
        width: 100%;
    }
    .formulario-geral .texto .inputs-div button{
        max-width: 100%;
    }
}

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

}

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

}
