/* =========================================================
   ESTILOS GENERALES KÖRTZ
   ---------------------------------------------------------
   Este archivo controla el estilo general de la web pública.

   IMPORTANTE:
   El header público ya se controla desde header.php con clases
   propias tipo:
   - .kortz-header
   - .kortz-header__link
   - .kortz-header__logo-img

   Por eso aquí NO usamos reglas antiguas como:
   - .header
   - #logo
   - nav ul
   - nav a
   - #dark-mode-toggle

   Así evitamos que el header cambie entre páginas.
========================================================= */


/* =========================================================
   RESET BÁSICO
========================================================= */

body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


/* =========================================================
   HERO PRINCIPAL INDEX
   ---------------------------------------------------------
   Imagen principal de bienvenida de la página de inicio.

   Esta sección queda encima del buscador y del carrusel.
========================================================= */

#hero-inicio {
    position: relative;
    min-height: 800px;
    background-image: url('img/Chalet_con_piscina.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.58) 45%,
        rgba(0, 0, 0, 0.18) 100%
    );
    z-index: 1;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: #ffffff;
}

.hero-etiqueta {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-contenido h1 {
    font-family: Georgia, serif;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-texto {
    max-width: 520px;
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: #5f1e22ff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    border: 1px solid #5f1e22ff;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}


/* =========================================================
   BUSCADOR AVANZADO
========================================================= */

#buscador-avanzado {
    padding: 40px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

#buscador-avanzado form {
    display: flex;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

#buscador-avanzado input {
    padding: 12px 20px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    min-width: 200px;
    background-color: #ffffff;
    font-family: inherit;
    cursor: pointer;
}

#buscador-avanzado input:focus {
    border-color: #c5a059;
}

#buscador-avanzado select {
    padding: 12px 20px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    min-width: 200px;
    cursor: pointer;
}

#buscador-avanzado button {
    padding: 12px 30px;
    background-color: #5f1e22ff;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#buscador-avanzado button:hover {
    background-color: #1a1a1a;
}


/* =========================================================
   CARRUSEL DE PROPIEDADES DESTACADAS
========================================================= */

#carrusel-destacados {
    padding: 50px 5%;
    background-color: #f9f9f9;
    position: relative;
}

#carrusel-destacados h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1a1a1a;
}

.contenedor-carrusel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-behavior: auto;
    gap: 25px;
    padding: 0;
}

.contenedor-carrusel::-webkit-scrollbar {
    display: none;
}

.tarjeta-propiedad {
    flex: 0 0 calc((100% - 50px) / 3);
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    will-change: transform, opacity;
}

.tarjeta-propiedad img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.info-propiedad {
    padding: 25px;
    text-align: center;
}

.info-propiedad h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.ubicacion {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.precio {
    font-size: 24px;
    font-weight: bold;
    color: #c5a059;
    margin: 15px 0;
}

.btn-primario {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primario:hover {
    background-color: #c5a059;
}


/* =========================================================
   CONTROLES DEL CARRUSEL
========================================================= */

.controles-carrusel {
    text-align: right;
    padding: 0 5% 20px 5%;
}

.controles-carrusel button {
    padding: 10px 20px;
    margin-left: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.controles-carrusel button:hover {
    background-color: #c5a059;
}

.controles-carrusel::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   FLECHAS DEL CARRUSEL
========================================================= */

.slider-nav button {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #b59a6d;
    border: 1px solid #b59a6d;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav .prev {
    left: 20px;
}

.slider-nav .next {
    right: 20px;
}

.slider-nav button:hover {
    background: #b59a6d;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }
}


/* =========================================================
   ANIMACIONES DEL CARRUSEL DE PROPIEDADES
   ---------------------------------------------------------
   Estas clases se activan desde script.js.

   preparada-entrada:
   deja la tarjeta invisible y desplazada hacia la derecha.

   animando-entrada:
   hace que la tarjeta entre desde la derecha.

   animando-salida:
   hace que el grupo actual salga antes de mostrar el siguiente.
========================================================= */

.tarjeta-propiedad.preparada-entrada {
    opacity: 0;
    transform: translateX(180px);
}

.tarjeta-propiedad.animando-entrada {
    opacity: 1;
    transform: translateX(0);
    transition:
        transform 0.65s ease,
        opacity 0.65s ease;
}

.tarjeta-propiedad.animando-salida {
    opacity: 0;
    transform: translateX(-80px);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}


/* =========================================================
   SECCIÓN CATEGORÍAS / ÁREAS DE INVERSIÓN
========================================================= */

#categorias-activos {
    padding: 80px 5%;
    background-color: #ffffff;
}

#categorias-activos .header-seccion {
    text-align: center;
    margin-bottom: 60px;
}

#categorias-activos h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

#categorias-activos .header-seccion p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.grid-editorial {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.item-editorial {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    background-color: #f4f4f4;
}

.item-grande {
    grid-column: span 2;
    grid-row: span 2;
}

.item-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.overlay-editorial {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.4) 40%,
        transparent 80%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.info-editorial {
    color: #ffffff;
    width: 100%;
}

.info-editorial h3 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.info-editorial p {
    font-size: 14px;
    font-weight: 300;
    opacity: 0;
    max-height: 0;
    transition: all 0.4s ease;
    margin-bottom: 15px;
}

.btn-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}

.item-editorial:hover img {
    transform: scale(1.08);
}

.item-editorial:hover p {
    opacity: 1;
    max-height: 50px;
}

.item-editorial:hover .btn-text {
    opacity: 1;
}

.btn-text:hover {
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 900px) {
    .grid-editorial {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        grid-auto-rows: 300px;
    }

    .item-grande {
        grid-column: auto;
        grid-row: auto;
    }
}


/* =========================================================
   BANNER DE VALOR / SERVICIOS
========================================================= */

#banner-servicios {
    position: relative;
    height: 550px;
    background-image: url('img/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

#banner-servicios::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-contenido {
    position: relative;
    z-index: 2;
    padding: 0 10%;
    width: 100%;
    text-align: center;
    color: #ffffff;
}

.banner-texto {
    max-width: 600px;
    color: #ffffff;
}

.banner-texto h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-texto p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.btn-banner {
    display: inline-block;
    padding: 15px 35px;
    background-color: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background-color: #b59a6d;
    color: #ffffff;
}


/* =========================================================
   SECCIÓN SERVICIOS PREMIUM
========================================================= */

#servicios-kortz {
    padding: 100px 10%;
    background-color: #ffffff;
    text-align: center;
}

#servicios-kortz h2 {
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contenedor-servicios {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.item-servicio {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-servicio p {
    min-height: 80px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.marco-circular {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.marco-circular img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-servicio:hover img {
    transform: scale(1.1);
}

.item-servicio h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.btn-saber-mas {
    display: inline-block;
    padding: 12px 35px;
    border: 1.5px solid #1a1a1a;
    border-radius: 50px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-saber-mas:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}


/* =========================================================
   CONTACTO / ENLACES / REDES SOCIALES
========================================================= */

.info-contacto {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.enlace-contacto {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.enlace-contacto i {
    color: #b59a6d;
    font-size: 16px;
}

.enlace-contacto:hover {
    color: #ffffff;
}

.redes-sociales {
    display: flex;
    gap: 15px;
}

.red-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #888;
    transition: all 0.4s ease;
}

.red-link:hover {
    border-color: #b59a6d;
    color: #b59a6d;
    transform: translateY(-3px);
}

.destacado-ia {
    color: #ffffff !important;
    font-weight: 600;
}

.destacado-ia i {
    color: #b59a6d;
    animation: pulse-ia 2s infinite;
}

@keyframes pulse-ia {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}


/* =========================================================
   MODO OSCURO GENERAL
========================================================= */

body.dark-mode {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
}

body.dark-mode section {
    background-color: #0a0a0a !important;
}

body.dark-mode #buscador-avanzado {
    background-color: #0a0a0a !important;
}

body.dark-mode #buscador-avanzado form {
    background-color: #111111 !important;
}

body.dark-mode #carrusel-destacados,
body.dark-mode .contenedor-carrusel {
    background-color: #0a0a0a !important;
}

body.dark-mode .tarjeta-propiedad {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
}

body.dark-mode .tarjeta-propiedad h3,
body.dark-mode .tarjeta-propiedad p {
    color: #ffffff !important;
}

body.dark-mode .ubicacion {
    color: #cccccc !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #222222 !important;
    color: #ffffff !important;
    border: 1px solid #444444 !important;
}

body.dark-mode .titulo-modo-oscuro {
    color: #ffffff !important;
}

body.dark-mode #categorias-activos h2,
body.dark-mode #categorias-activos .header-seccion p {
    color: #ffffff !important;
}

body.dark-mode #servicios-kortz h2,
body.dark-mode #servicios-kortz h3 {
    color: #ffffff !important;
}

body.dark-mode #servicios-kortz p {
    color: #cccccc !important;
}

body.dark-mode #servicios-kortz .btn-saber-mas {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.dark-mode #servicios-kortz .btn-saber-mas:hover {
    background-color: #ffffff !important;
    color: #111111 !important;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1024px) {

    /* HERO */

    #hero-inicio {
        min-height: 650px;
        padding: 0 6%;
    }

    .hero-contenido {
        max-width: 100%;
    }

    .hero-contenido h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .hero-texto {
        font-size: 16px;
        max-width: 100%;
    }


    /* BUSCADOR */

    #buscador-avanzado form {
        width: 100%;
        justify-content: center;
    }

    #buscador-avanzado input,
    #buscador-avanzado select {
        min-width: 220px;
        flex: 1;
    }


    /* CARRUSEL */

    .tarjeta-propiedad {
        flex: 0 0 calc((100% - 25px) / 2);
    }

    .tarjeta-propiedad img {
        height: 220px;
    }


    /* CATEGORÍAS */

    .grid-editorial {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }

    .item-grande {
        grid-column: span 2;
        grid-row: span 1;
    }


    /* BANNER */

    #banner-servicios {
        height: 450px;
        background-attachment: scroll;
    }

    .banner-texto h2 {
        font-size: 30px;
    }

    .banner-texto p,
    .banner-texto b {
        font-size: 16px;
        line-height: 1.7;
    }


    /* SERVICIOS */

    #servicios-kortz {
        padding: 80px 6%;
    }

    .contenedor-servicios {
        gap: 30px;
    }

    .item-servicio {
        min-width: 260px;
    }

    .marco-circular {
        width: 220px;
        height: 220px;
    }
}


/* =========================================================
   RESPONSIVE MÓVIL
========================================================= */

@media (max-width: 768px) {

    /* GENERAL */

    body {
        overflow-x: hidden;
    }


    /* HERO */

    #hero-inicio {
        min-height: 100vh;
        padding: 120px 7% 80px 7%;
        align-items: center;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.78),
            rgba(0,0,0,0.55)
        );
    }

    .hero-etiqueta {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-contenido h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-texto {
        font-size: 15px;
        line-height: 1.7;
    }

    .btn-hero {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }


    /* BUSCADOR */

    #buscador-avanzado {
        padding: 30px 5%;
    }

    #buscador-avanzado form {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    #buscador-avanzado input,
    #buscador-avanzado select,
    #buscador-avanzado button {
        width: 100%;
        min-width: unset;
    }


    /* TITULOS */

    #carrusel-destacados h2,
    #categorias-activos h2,
    #servicios-kortz h2 {
        font-size: 26px;
        line-height: 1.3;
    }


    /* CARRUSEL */

    #carrusel-destacados {
        padding: 60px 5%;
    }

    .contenedor-carrusel {
        gap: 20px;
    }

    .tarjeta-propiedad {
        flex: 0 0 100%;
    }

    .tarjeta-propiedad img {
        height: 240px;
    }

    .info-propiedad {
        padding: 20px;
    }

    .precio {
        font-size: 22px;
    }

    .btn-primario {
        width: 100%;
        text-align: center;
    }


    /* CATEGORÍAS */

    #categorias-activos {
        padding: 70px 5%;
    }

    .grid-editorial {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 18px;
    }

    .item-grande {
        grid-column: auto;
        grid-row: auto;
    }

    .overlay-editorial {
        padding: 22px;
    }

    .info-editorial h3 {
        font-size: 20px;
    }

    .info-editorial p {
        opacity: 1;
        max-height: unset;
    }

    .btn-text {
        opacity: 1;
    }


    /* BANNER */

    #banner-servicios {
        height: auto;
        padding: 90px 0;
        margin-top: 30px;
	background-image: url('img/banner.jpeg');
    	background-size: cover;
    	background-position: center;
    	background-attachment:;
    }

    .banner-contenido {
        padding: 0 7%;
    }

    .banner-texto h2 {
        font-size: 28px;
    }

    .btn-banner {
        width: 100%;
        text-align: center;
    }


    /* SERVICIOS */

    #servicios-kortz {
        padding: 70px 6%;
    }

    .contenedor-servicios {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .item-servicio {
        width: 100%;
        max-width: 100%;
    }

    .item-servicio p {
        min-height: auto;
    }

    .marco-circular {
        width: 220px;
        height: 220px;
    }

    .btn-saber-mas {
        width: 100%;
        text-align: center;
    }


    /* CONTACTO */

    .info-contacto {
        gap: 15px;
    }

    .enlace-contacto {
        font-size: 13px;
    }

    .redes-sociales {
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* =========================================================
   MÓVILES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    .hero-contenido h1 {
        font-size: 28px;
    }

    .hero-texto {
        font-size: 14px;
    }

    .banner-texto h2 {
        font-size: 24px;
    }

    .info-propiedad h3 {
        font-size: 18px;
    }

    .precio {
        font-size: 20px;
    }

    .marco-circular {
        width: 190px;
        height: 190px;
    }
}

/* =========================================================
   CARRUSEL REAL EN MÓVIL VERTICAL CON ANIMACIÓN
   ---------------------------------------------------------
   En móvil vertical mostramos una sola tarjeta cada vez,
   pero mantenemos una animación similar al carrusel original.

   - La tarjeta actual sale hacia la izquierda.
   - La nueva entra desde la derecha.
   - No se convierte en lista vertical.
========================================================= */

@media (max-width: 768px) and (orientation: portrait) {

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo {
        position: relative;
        overflow: hidden;
        gap: 0;
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-propiedad {
        display: none;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;

        opacity: 1;
        transform: translateX(0);
        transition: none;
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-visible,
    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-entrando,
    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-saliendo {
        display: block;
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-preparada {
        opacity: 0;
        transform: translateX(180px);
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-entrando {
        opacity: 1;
        transform: translateX(0);
        transition:
            transform 0.65s ease,
            opacity 0.65s ease;
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-movil-saliendo {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;

        opacity: 0;
        transform: translateX(-80px);
        transition:
            transform 0.45s ease,
            opacity 0.45s ease;
    }

    #carrusel-destacados .contenedor-carrusel.carrusel-movil-activo .tarjeta-propiedad img {
        height: 240px;
    }
}