main{
    display: flex;
    flex-wrap: wrap;
    gap: 150px;
}


.formulario-footer-1{
    display: flex;
    justify-content: space-between;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    border-bottom-left-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.03);
    background-image: url(../imagens/anuncie/bg1.png);
    background-size: auto;
    background-position: 10px 50%;
    background-repeat: no-repeat;
}
.formulario-footer-1 .form{
    width: 100%;
    padding: 50px 100px 50px calc((100% - 1532px) / 2);
    align-content: center;
}
.formulario-footer-1 form{
    width: 100%;
    gap: 10px;
}
.formulario-footer-1 form .input-grupo{
    width: 100%;
    gap: 5px;
}
.formulario-footer-1 form .input-grupo select{
    width: calc(100% - 50% - 5px);
    padding: 0 20px;
    color: #000;
}
.formulario-footer-1 form .input-grupo select,
.formulario-footer-1 form .input-grupo .input{
    height: 74px;
    border: 1px solid #0000001c;
    font-size: 24px;
    border-radius: 5px;
}
.formulario-footer-1 form .input::placeholder,
.formulario-footer-1 form textarea::placeholder{
    color: rgb(0 0 0 / 40%);
    font-size: 24px;
}
.formulario-footer-1 form .input-grupo .input{
    padding: 0 20px 0 60px;
    color: rgb(0 0 0 / 40%);
}
.formulario-footer-1 form .input-grupo .input:nth-child(1){
    width: calc(100% - 50% - 5px);
    background-image: url(../imagens/contato/nome.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 20px center;
}
.formulario-footer-1 form .input-grupo .input:nth-child(2){
    width: calc(100% - 50% - 5px);
    background-image: url(../imagens/contato/tell.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 20px center;
}
.formulario-footer-1 form .input-grupo .input:nth-child(3){
    width: calc(100% - 50% - 5px);
    background-image: url(../imagens/contato/mail.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 20px center;
}
.formulario-footer-1 form .input{
    width: 100%;
    height: 74px;
    border: 1px solid #0000001c;
    font-size: 24px;
    border-radius: 5px;
    padding: 0 20px;
}
.formulario-footer-1 form textarea{
    width: 100%;
    height: 143px;
    padding: 20px;
    border: 1px solid #0000001c;
    color: rgb(0 0 0 / 40%);
    font-size: 24px;
    border-radius: 5px;
}
.formulario-footer-1 form .upload-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
}
.formulario-footer-1 form .upload-label{
    height: fit-content;
    display: flex;
    background-color: #f1f1f1;
    border: 1px solid #0000001c;
    padding: 5px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    color: #828282;
}
.formulario-footer-1 form .upload-label:hover {
    background-color: #bbb;
}
.formulario-footer-1 form #imageUpload {
    display: none;
}
.formulario-footer-1 form .upload-info {
    max-width: calc(100% - 225px);
    font-size: 24px;
    color: #828282;
}
.formulario-footer-1 form #imagePreview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}
.formulario-footer-1 form #imagePreview img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.formulario-footer-1 form .bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}
.formulario-footer-1 form .check-input {
    max-width: 473px;
    width: 100%;
    display: block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 40px;
}
.formulario-footer-1 form .check-input input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}
.formulario-footer-1 form .check-input .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #00000030;
    cursor: pointer;
}
.formulario-footer-1 form .check-input span:hover input ~ .checkmark {
    background-color: var(--cor-1);
}
.formulario-footer-1 form .check-input input:checked ~ .checkmark {
    background-color: var(--cor-1);
}
.formulario-footer-1 form .check-input .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.formulario-footer-1 form .check-input input:checked ~ .checkmark:after {
    display: block;
}
.formulario-footer-1 form .check-input .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.formulario-footer-1 form .check-input{
    font-size: 24px;
}
.formulario-footer-1 form .check-input a{
    color: #638FFF;
    font-size: 24px;
}
.formulario-footer-1 form .bottom button{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 245px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background-color: var(--cor-1);
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
}
.formulario-footer-1 .img{
    max-width: 810px;
    width: 100%;
    object-fit: cover;
}


.passo-passo{
    width: 100%;
    background-image: url(../imagens/anuncie/bg2.png);
    background-size: auto;
    background-position: 100% 100px;
    background-repeat: no-repeat;
}
.passo-passo .container{
    gap: 75px;
}
.passo-passo .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.passo-passo .passo-div{
    width: 100%;
    gap: 10px;
}
.passo-passo .passo-div .box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 28px 1fr;
    justify-items: stretch;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
}
.passo-passo .passo-div .box .texto{
    width: calc(100% - 10px);
    min-height: 281px;
    height: fit-content;
    background-color: #fff;
    padding: 20px;
    gap: 20px;
    box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.03);
}
.passo-passo .passo-div .box .texto .topo{
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
}
.passo-passo .passo-div .box .texto .topo span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--cor-1);
}
.passo-passo .passo-div .box .texto .topo span img,
.passo-passo .passo-div .box .texto .topo span i{
    font-size: 45px;
    max-width: 45px;
    max-height: 45px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(345deg) brightness(102%) contrast(101%);
}
.passo-passo .passo-div .box .texto .topo h4{
    width: calc(100% - 70px);
    font-size: 31;
    font-weight: 500;
    color: var(--cor-1);
    font-family: "Asap Condensed", serif;
}
.passo-passo .passo-div .box .texto .mid{
    max-width: 324px;
    width: 100%;
    height: 1px;
    background-color: hsl(0deg 0% 0% / 20%);
}
.passo-passo .passo-div .box .texto .bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.passo-passo .passo-div .box .texto .bottom h6{
    font-size: 24px;
    font-weight: 700;
    color: var(--primaria);
}
.passo-passo .passo-div .box .texto .bottom p{
    font-size: 23px;
    font-weight: var(--primaria);
}
.passo-passo .passo-div .box .divisor{
    width: 28px;
    height: 100%;
    margin: -14px auto 0;
    gap: 10px;
    align-items: center;
    order: 1;
}
.passo-passo .passo-div .box .divisor .img-1{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}
.passo-passo .passo-div .box .divisor span{
    width: 7px;
    height: calc(100% - 52px);
    object-fit: cover;
    border-radius: 50px;
    background-color: var(--primaria);
}
.passo-passo .passo-div .box .img{
    width: 100%;
}
.passo-passo .passo-div .box .img img{
    max-width: 100%;
    object-fit: contain;
}
.passo-passo .passo-div .box:nth-child(2n+1) .texto {
    order: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.passo-passo .passo-div .box:nth-child(2n+1) .img {
    order: 2;
}
.passo-passo .passo-div .box:nth-child(2n+1) .img img{
    margin-right: auto;
}
/* Nova regra para os boxes ímpares */
.passo-passo .passo-div .box:nth-child(2n+2) .texto {
    order: 2;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.passo-passo .passo-div .box:nth-child(2n+2) .img {
    order: 0;
}
.passo-passo .passo-div .box:nth-child(2n+2) .img img{
    margin-left: auto;
}


.faq{
    width: 100%;
    position: relative;
    z-index: 10;
}
.faq .titulo{
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    padding: 30px 5% 15px;
    mask-image: url(../imagens/sobre/mask1.png);
    mask-size: cover;
    mask-position: top;
    mask-repeat: no-repeat;
    background-color: #fff;
    position: relative;
    z-index: 3;
}
.faq .faq-content{
    width: 100%;
    gap: 10px;
    border-radius: 30px;
    padding: 30px 20px;
    mask-image: url(../imagens/sobre/mask2.png);
    mask-size: cover;
    mask-position: top;
    mask-repeat: no-repeat;
    background-color: #fff;
    position: relative;
    z-index: 3;
}
.faq .faq-content details{
    align-items: center;
    max-width: 1860px;
    width: 100%;
    min-height: 74px;
    margin: 0 auto;
    border: 1px solid #0000001c;
    padding: 20px;
    cursor: pointer;
    transition: ease .3s;
}
.faq .faq-content details summary{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
    justify-content: space-between;
    font-size: 24px;
    transition: ease .3s;
}
.faq .faq-content details:hover summary{
    color: var(--cor-1);
    transition: ease .3s;
}
.faq .faq-content details summary i{
    color: var(--cor-1);
    transition: ease .3s;
}
.faq .faq-content details[open] summary i{
    transform: rotate(180deg);
    transition: ease .3s;
}
.faq .faq-content details p{
    margin-top: 10px;
    max-width: 1200px;
    width: 100%;
    font-size: 20px;
}




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

@media screen and (max-width: 1600px){
    .formulario-footer-1 .form{
        max-width: 50%;
        padding: 50px 5%;
    }
    .formulario-footer-1 .img{
        max-width: 50%;
    }


}

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

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

}

@media screen and (max-width: 1280px){
    .formulario-footer-1 form .bottom{
        flex-direction: column;
    }
    .formulario-footer-1 form .check-input{
        max-width: 100%;
    }
    .formulario-footer-1 form .bottom button{
        margin: 0 auto;
    }
    .formulario-footer-1 form .input,
    .formulario-footer-1 form .input-grupo select{
        width: 100%!important;
    }
}

@media screen and (max-width: 1100px){
    .formulario-footer-1{
        flex-wrap: wrap;
    }
    
    .formulario-footer-1 .form{
        max-width: 100%;
    }
    .formulario-footer-1 .img{
        max-width: 100%;
        height: 600px!important;
    }
}

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

}

@media screen and (max-width: 800px){
    main{
        gap: 100px;
    }

    .passo-passo .passo-div .box{
        grid-template-columns: 1fr 1fr;
    }
    .passo-passo .passo-div .box .divisor{
        display: none;
    }
    
    .formulario-footer-1 form .upload-container{
        flex-wrap: wrap;
    }
    .formulario-footer-1 form .upload-info{
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 600px){
    .passo-passo .passo-div .box{
        grid-template-columns: 1fr;
    }
    .passo-passo .passo-div .box .divisor{
        display: none;
    }
    .passo-passo .passo-div .box .texto{
        max-width: 100%;
        order: 0!important;
    }
    .passo-passo .passo-div .box .img{
        order: 1!important;
    }
}

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

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

}

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

}