/* Enlace promocional Pixel House Showroom dentro del hero. */
.showroom-promo {
  position: absolute;
  right: clamp(1.5rem, 4vw, 5rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  z-index: 3;
  display: block;
  width: 30vw;
  line-height: 0;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .35));
  transition: transform .2s ease;
}

.showroom-promo:hover,
.showroom-promo:focus-visible {
  transform: translateY(-4px);
}

.showroom-promo:focus-visible {
  outline: 3px solid #00d9ff;
  outline-offset: 4px;
  border-radius: 18px;
}

.showroom-promo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

@media (max-width: 767px) {
  .showroom-promo {
    top: 5.5rem;
    right: 50%;
    bottom: auto;
    width: 90vw;
    transform: translateX(50%);
  }

  .showroom-promo:hover,
  .showroom-promo:focus-visible {
    transform: translateX(50%) translateY(-4px);
  }
}
