.enlace-ambiente {
    display: block; /* Asegura que el enlace cubra toda el área */
    text-decoration: none; /* Elimina el subrayado del enlace */
    color: inherit; /* Mantiene el color de texto por defecto */
}

.imagen-ambiente {
    width: 100%;
    max-height: 400px;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.imagen-ambiente img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.imagen-ambiente:hover img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.titulo-ambiente {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    font-size: 2.5rem;
    width: 80%;
    z-index: 4;
}

.imagen-ambiente:hover .titulo-ambiente {
    opacity: 1;
}

.img-ficha-ambiente {
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-ficha-ambiente img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ambientes-title {
    text-transform: uppercase;
    color: #000;
    text-align: left;
    font-size: 3rem;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}
.ambientes-subtitle {
    color: #000;
    text-align: left;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.seleccion-abiente, .ambiente-destacado{
    height: 430px;
    justify-content: space-between;
}

.imagen-contenedor {
    height: 250px;
    overflow: hidden;
}

.imagen-ajustada {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .row-ambiente-destacado {
        min-height: 430px;
        height: 430px;
    }

    .ambiente-destacado {
        height: 100%;
    }

    .imagen-destacada-ambiente {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}
