/* ======================================
   🎯 HERO BANNER – Estilo Producción Final
   Tema: Regalos ARY – 2025
====================================== */

.hero-banner {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-color: #000; /* Fallback si no carga imagen */
}

.hero-banner .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-banner .slide.active {
  opacity: 1;
  z-index: 2;
}

/* ===========================
   📱 RESPONSIVE – Mobile First
=========================== */
@media (max-width: 768px) {
  .hero-banner {
    height: 250px;
  }
}
