/* Carousel 3 Styles */
.carousel-3-section {
  padding: 4rem 1rem;
  background-color: var(--white);
  position: relative;
}

.carousel-3-container {
  position: relative;
  max-width: 100%;
  height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  background: #f9f9f9;
}

.carousel-3-item {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.carousel-3-item.active {
  display: flex;
}

.carousel-3-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  pointer-events: auto; /* Permite interactuar con el video */
}

.carousel-3-prev,
.carousel-3-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: 0.3s;
}

.carousel-3-prev:hover,
.carousel-3-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-3-prev {
  left: 15px;
}

.carousel-3-next {
  right: 15px;
}
