#banner-general {
  position: relative;
  overflow: hidden;
}

.banner-slide {
  display: none;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.banner-slide img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.banner-prev, .banner-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: white;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  user-select: none;
  transition: 0.3s;
  z-index: 10;
}

.banner-prev { left: 15px; }
.banner-next { right: 15px; }

.banner-prev:hover, .banner-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ====== UNIFICAR ALTURA DE SLIDES ====== */
#banner-general, 
.banner-slide, 
.banner-area {
  min-height: 650px; /* ajusta según tu diseño actual */
}

/* Asegura que las imágenes llenen todo el espacio */
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Para evitar que el contenido interno achique el slide */
.banner-area {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}
