.carrusel-experiencia {
  padding: 2rem 0;
  background: transparent;
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide-2 {
  min-width: 100%;
  position: relative;
  text-align: center;
}

.carousel-slide-2 img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 14px;
  height: 14px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #80BC00;
}