/* carrousel para proyeccion social */
.carousel-section {
  overflow: hidden;
  /*width: 100%;
  background: #111; 
  padding: 20px 0;*/
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.carousel-track img {
  width: 1080px;
  height: 650px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.carousel-track img:hover {
  transform: scale(1.1);
}

/* detener animacin al pasar el mouse */
.carousel-section:hover .carousel-track {
  animation-play-state: paused;
}