/* Card */
.habitacion-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.habitacion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* Imagen */
.habitacion-img {
    position: relative;
}

.habitacion-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* PRECIO FLOTANTE */
.habitacion-precio {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #8b1d18; /* rojo elegante hotel */
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
    z-index: 2;
}

/* Botón */
.habitacion-card .btn {
    border-radius: 20px;
    font-size: 14px;
}
