/* Slider */
.propiedad-slider {
    width: 100%;
}

.propiedad-slider-main {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1f1f1f;
    border-radius: 10px;
    overflow: hidden;
    padding: 16px;
}

.propiedad-slider-stage {
    position: relative;
    flex: 1;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
}

.propiedad-slide {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}

.propiedad-slide.is-active {
    display: block;
}

.propiedad-slide img,
.propiedad-slide video {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
    background: #000;
}

.propiedad-slider-arrow {
    border: 0;
    background: #d9d9d9;
    color: #111;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    flex: 0 0 42px;
    padding-bottom: 36px;
}

.propiedad-slider-arrow:hover {
    background: #bfbfbf;
}

.propiedad-slider-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.propiedad-thumb {
    border: 2px solid transparent;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 120px;
    height: 80px;
}

.propiedad-thumb.is-active {
    border-color: #c62828;
}

.propiedad-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f3f3f3;
}

.propiedad-thumb-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.propiedad-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
}

.propiedad-youtube-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.propiedad-youtube-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Filtros búsqueda */
.propiedad-filtro-titulo {
    font-size: 32px;
}

.propiedad-filtros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: fit-content fit-content;
    gap: 16px;
    align-items: end;
    margin-top: 10px;
}

.propiedad-filtro-campo label {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
}

.propiedad-filtro-campo input,
.propiedad-filtro-campo select {
    width: 100%;
    min-height: 42px;
}

.propiedad-filtro-boton button {
    color: #1a1a1a;
    min-height: 42px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 10px;
}

/* Etiqueta propiedad destacada */
.propiedad-destacada-badge {
    position: relative;
    top: 22px;
    left: 275px;
    z-index: 9;
    color: #595959;
    background-color: #F4E6DF;
    width: fit-content;
    padding: 3px 6px;
    border-radius: 5px;
    font-weight: 600;
}

.propiedad-destacada-icon {
    font-size: 22px;
    line-height: 1;
}

.propiedad-filtro-boton button:hover {
    color: #FFFFFF;
}

@media (max-width: 1200px) {
    .propiedad-destacada-badge {
        left: 200px;
    }
}

@media (max-width: 767px) {
    .propiedad-filtros-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .propiedad-slide img, .propiedad-slide video {
        max-height: 100%;
        min-height: 520px;
        object-fit: cover;
    }

    .propiedad-slider-next,
    .propiedad-slider-prev {
        position: absolute;
        z-index: 1;
    }

    .propiedad-slider-prev {
        left: 3px;
    }

    .propiedad-slider-next {
        left: 690px;
    }
}

@media (max-width: 767px) {
    .propiedad-slider-main {
        padding: 8px;
    }

    .propiedad-slider-stage {
        min-height: 280px;
    }

    .propiedad-slider-prev {
        left: 0px;
    }

    .propiedad-slider-next {
        left: 322px;
    }

    .propiedad-slide img,
    .propiedad-slide video {
        min-height: 280px;
    }

    .propiedad-thumb {
        flex: 0 0 90px;
        height: 64px;
    }
}