.fixed-height-carousel {
  max-height: 72000px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
}


@media (max-width: 768px) {
  .fixed-height-carousel {
    max-height: 350px;
  }
  .carousel-item img {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .fixed-height-carousel {
    max-height: 250px;
  }
  .carousel-item img {
    max-height: 250px;
  }
}

.titulo-actividades {
  font-size: 2.5rem; 
  font-weight: bold; 
  text-align: center; 
  color: #2c3e50; 
  margin-bottom: 20px;
  position: relative;
}

.titulo-actividades::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #e74c3c; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
}