.banner{
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 84px;
}
.banner img{
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}
.banner .texto{
    position: absolute;
    z-index: 1;
    gap: 20px;
    align-items: center;
}
.banner .texto span{
    width: 70px;
    height: 1px;
    background-color: var(--cor-2);
}
.banner .texto h2{
    width: fit-content;
    font-size: 48px;
}


.encontre{
    width: 100%;
}
.encontre .container{
    gap: 70px;
}
.encontre .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 30px;
}
.encontre .titulo h6{
    color: var(--cor-2);
    font-weight: 500;
    font-size: 18px;
}
.encontre .titulo span{
    width: 70px;
    height: 1px;
    background-color: var(--cor-2);
    display: flex;
}
.encontre .titulo h2{
    font-weight: 500;
    max-width: 376px;
    width: 100%;
    margin: auto;
}
.encontre .conteudo{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.encontre .conteudo .mapa{
    width: 100%;
    height: 900px;
}
.encontre .conteudo .mapa iframe{
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}
.encontre .conteudo-div{
    width: 100%;
    gap: 20px; 
    max-height: 900px;
    align-self: start;
    overflow: auto;
}
.encontre .conteudo-div form{
    width: 100%;
    margin: auto;
    justify-content: space-evenly;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}
.encontre .conteudo-div form .selects{
    width: 100%;
    gap: 20px;
    display: flex;
}
.encontre .conteudo-div form .select{
    width: 100%;
    height: 44px;
    justify-content: center;
    display: flex;
    border: 2px solid #eee;
    border-radius: 3px;
    transition: ease .3s;
}
.encontre .conteudo-div form .select:hover{
    border: 2px solid var(--cor-2);
    transition: ease .3s;
}
.encontre .conteudo-div form select{
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.encontre .conteudo-div form select option{
    color: #000;
}
.encontre .conteudo .informacoes{
    width: 100%;
    max-height: 832px;
    overflow: auto;
    gap: 20px;
}
.encontre .conteudo .informacoes .box{
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #eee;
    border-radius: 3px;
    padding: 20px;
    justify-content: space-between;
}
.encontre .conteudo .informacoes .box h6{
    font-weight: 600;
    font-size: 16px;
    width: calc(100% - 200px);
}
.encontre .conteudo .informacoes .box a{
    width: 180px;
    height: 40px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--cor-2);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: ease .3s;
}
.encontre .conteudo .informacoes .box a:hover{
    background-color: var(--cor-2);
    color: #fff;
    transition: ease .3s;
}


.modal-1.opened{
    top: 0%;
}
.modal-1{
    display: flex;
    width: 100%;
    height: 100%;
    position: fixed;
    top: -100%;
    z-index: 99;
    justify-content: center;
    align-items: center;
    transition: top 0.5s;
}
.modal-1 .bg{
    display: flex;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    position: absolute;
    top: 0;
    z-index: 1;
}
.modal-1 form {
    max-width: 552px;
    width: 100%;
    padding: 30px;
    gap: 10px;
    justify-content: space-between;
    border-radius: 5px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}
.modal-1 form span{
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.modal-1 form span i{
    font-size: 20px;
    color: #fff;
}
.modal-1 form p{
    max-width: 336px;
    width: 100%;
    font-weight: 600;
    margin-bottom: 10px;
}
.modal-1 form input,
.modal-1 form select{
    width: 100%;
    height: 56px;
    background-color: #FAFAFA;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #eee;
    color: #747474;
    font-size: 14px;
}
.modal-1 form select option{
    color: var(--primaria);
    font-size: 14px;
}
.modal-1 form input::placeholder,
.modal-1 form textarea::placeholder{
    color: #747474;
    font-size: 14px;
    font-weight: 500;
}
.modal-1 form button{
    max-width: 260px;
    width: 100%;
    height: 60px;
    margin: auto;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    border: 1px solid var(--cor-2);
    transition: ease .3s;
}
.modal-1 form button:hover{
    background-color: var(--cor-2);
    color: #fff;
    transition: ease .3s;
}



/* 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: 1100px){
    .encontre .conteudo{
        max-width: 900px;
        width: 100%;
        margin: auto;
        grid-template-columns: 1fr;
    }
    .encontre .conteudo .mapa{
        order: 1;
    }

}

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

}

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

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

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

}

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

}