.showroom-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    text-decoration: none;
}

.showroom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    transition: opacity 0.3s ease;
}

.showroom-card img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.showroom-card:hover img {
    transform: scale(1.03);
}

.showroom-card:hover::after {
    opacity: 0.82;
}

.showroom-card-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.showroom-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(3px);
    font-size: 2.2rem;
    line-height: 1;
}

.showroom-location {
    margin: 0;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991.98px) {
    .container-showroom .columna-showroom + .columna-showroom {
        margin-top: 1rem;
    }

    .showroom-card img {
        min-height: 300px;
    }
}
