.desktop-banner-carousel {
  background-color: white;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Fondo difuminado */
.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(25px);
  opacity: 0.5;
  z-index: 0;
}

.carousel-slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

/* Flechas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }

/* Opcional: ocultar flechas en pantallas pequeñas */
@media (max-width: 768px) {
  .carousel-arrow {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blur-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(320px) grayscale(100%) brightness(1.1) saturate(1.2);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

.carousel-slide img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
}

