.gallery{
    width: 100%;
}
.owl-gallery{
    position: relative;
    display: flex;
    width: 100%;
}
.owl-gallery .owl-item {

    width: 100%;
}
.owl-gallery .item {
    height: 400px; /* Define a altura fixa para o contêiner da imagem */
    width: 100%;
    display: flex;
    align-items: center; /* Alinha a imagem verticalmente */
    justify-content: center; /* Alinha a imagem horizontalmente */
    overflow: hidden; /* Esconde partes da imagem que ultrapassam o contêiner */
    opacity: 1.0;
    cursor: pointer;
}

.owl-gallery .item:hover {
    opacity: 1.0;
}
.owl-gallery .item img {
    height: 100%;
    width: 100%; /* Mantém a proporção da imagem */
    object-fit: cover; /* Faz com que a imagem cubra o contêiner sem distorcer */
}
.owl-gallery .owl-nav{
    width: 100%;
    height: 0;
    position: absolute;
    top: calc(50% - 15px);
    left: 0;
    display: flex;
    justify-content: space-between;
}
.owl-gallery .owl-nav .owl-next span, 
.owl-gallery .owl-nav .owl-prev span{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    font-size: 30px;
    color: var(--red);
    margin: 0 10px;
    opacity: 1.0;
}

.owl-gallery .owl-nav .owl-next span:hover, 
.owl-gallery .owl-nav .owl-prev span:hover{
    opacity: 1.0;
}
.single-top{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.single-top .local{
    display: flex;
}
.city, .neighborhood, .type{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--gray);
    color: var(--gray);
    font-size: 15px;
    margin-right: 10px;
}
.share{
    max-width: 160px;
    width: 100%;
}
.share a{
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid  var(--red);
    color: var(--red);
    background: var(--white);
    font-size: 15px;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    
}

.share a:hover{
    border: 1px solid var(--red);
    color: var(--white);
    background: var(--red);
}
.single-content{
    width: 60%;
}
h1{
    padding-right: 50px;
}
.gallery-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    border: 1px solid var(--gray-3);
}
.gallery-list .item{
    display: flex;
    width: calc(20% - 20px);
    margin: 10px;
}
.gallery-list .item img{
    width: 100%;
}
.single-flex{
    display: flex;
    justify-content: space-between;
}
.single-content h1{
    color: var(--red);
    margin-bottom: 20px;
}

.single-content p{
    margin: 10px 0;
    display: flex;
    line-height: 20px;
}
.single-content .amenities i {
    color: var(--red);
}
.single-content .amenities strong {
    margin: 0 20px 0 8px;
    padding-top: 4px;
}
.single-content .sale{
    display: flex;
    margin-top: 20px;
}
.property-card .sales{
    position: relative;
    display: flex;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-bottom: 20px;
    z-index: 0;
}
.property-card .sales a{
    width: 100%;
}
.single-maps{
    width: calc(40% - 20px);
    margin-bottom: 40px;
}

.single-maps iframe{
    width: 100%;
}

@media (max-width: 992px) {
    .single-flex{
        flex-wrap: wrap;
    }
    .single-content{
        width: 100%;
    }
        
    .single-maps{
        width: 100%;
    }

}

.lity .lity-toolbar .lity-prev,
.lity .lity-toolbar .lity-next {
    display: block !important;
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center !important;
    font-size: 24px !important;
    z-index: 1000 !important;
}
.vbox-container{
    overflow: hidden;
}