﻿.vr-carousel-wrap {
    position: relative;
}

.vr-carousel {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px 18px 4px;
}

    .vr-carousel::-webkit-scrollbar {
        display: none;
    }

.vr-slide {
    flex: 0 0 calc(25% - 14px);
}

.vr-seta {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #2b6cb0;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    z-index: 20;
}

.vr-seta-left {
    left: -18px;
}

.vr-seta-right {
    right: -18px;
}

.badge-finalidade {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    z-index: 20;
}

@media(max-width: 991px) {
    .vr-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media(max-width: 575px) {
    .vr-slide {
        flex: 0 0 85%;
    }
}

/*========================================
INFO IMOVEL
========================================*/
.infos-imovel {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: #475569;
}

.infos-imovel i {
    color: #2563eb;
}

.icon-imovel {
    width: 20px;
    height: 20px;
}



/*========================================
VALOR IMOVEL
========================================*/
.valor-imovel {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-top: 8px;
}


/*========================================
BAIRRO
========================================*/
.bairro-imovel {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/*========================================
CIDADE
========================================*/

.cidade-imovel {
    color: #64748b;
    font-size: 14px;
}

/*========================================
TAXAS
========================================*/

.taxas-imovel {
    font-size: 13px;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 4px;
}


/*========================================
SETAS FOTO PREMIUM
========================================*/
.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all .25s ease;
}

/*========================================
MOSTRAR HOVER
========================================*/

.card-imovel:hover .img-nav {
    opacity: 1;
}

/*========================================
HOVER BOTAO
========================================*/

.img-nav:hover {
    background: rgba(255,255,255,.92);
    color: #111827;
    transform: translateY(-50%) scale(1.08);
}

/*========================================
ESQUERDA
========================================*/

.img-nav.left {
    left: 10px;
}

/*========================================
DIREITA
========================================*/

.img-nav.right {
    right: 10px;
}

/*========================================
CORROSEL DAS IMAGENS DO IMOVEL
========================================*/
.img-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.img-imovel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s ease;
}

    .img-imovel.active {
        opacity: 1;
    }

