.container__listar_imoveis {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.titulo_busca {
    width: 100%;
    height: 2rem;
    display: flex;
    justify-content: space-around;
    background: rgba(10, 175, 238, 0.7);
}
.busca_imovel {
    margin: auto;
}
.busca_referencia {
    margin: auto;
}
.lista_imoveis {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.paginacao {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 1rem;
    border-radius: 8px;
}
.paginacao button {
    /* border: 1px solid rgb(153, 255, 2); */
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s ease;
}
.paginacao button:disabled {
    background: rgba(153, 255, 2, 0.5);
    cursor: not-allowed;
}
.paginacao button:first-child {
    border-top-left-radius: 8px;
    border: thin solid rgb(102, 204, 0);;
    border-bottom-left-radius: 8px;
}
.paginacao button:last-child {
    border: thin solid rgb(102, 204, 0);;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}   
.paginacao button:hover {
    background: rgb(102, 204, 0);
}
.container__imoveis {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.filtros-form {
    width: 100%;
    max-width: 1200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(10,175,238,0.06);
    padding: 24px 20px;
    margin: 32px;
    display: flex;
    flex-wrap: wrap;
    /* gap: 16px; */
    align-items: center;
    justify-content: center;
}
.filtros-form .form-label {
    font-weight: 500;
}
.filtros-form .form-control,
.filtros-form .form-select {
    min-width: 120px;
}