.hades-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  max-height: 598px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-group {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide-group.active {
  opacity: 1;
}

.slide {
  flex: 1;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.hades-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Adaptativo para móviles */
@media (max-width: 768px) {
  .slide-group {
    flex-direction: column;
  }
  .slide {
    height: 33.3%;
  }
}
