.main-banner {
  position: relative;
  width: 100%;
  height: 450px; /* Altura en Desktop */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.banner-info {
  padding: 0 10%;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.banner-info h1 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.banner-info p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Puntos indicadores */
.dots {
  position: absolute;
  bottom: 20px;
  left: 10%;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
  background-color: #d4e157; /* Color amarillento de tu imagen */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-banner {
    height: 300px; 
  }
  .banner-info h1 {
    font-size: 1.8rem;
  }
  .banner-info p {
    font-size: 1rem;
    padding: 0;
  }
  .dots{
    left:45%
   
  }
}