body {
  font-family: "Montserrat", sans-serif !important;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.contenedor-slider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider_giratorio {
  max-width: 100%;
  text-align: center;
  background-color: rgb(231, 235, 239);
  padding: 33px;
  height: auto;
  align-content: center;
}

.slider_title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 27px;
  color: #333;
}

.slider_wrapper {
  overflow: hidden;
  width: 1250px; 
  height: auto;
  border-radius: 10px;
  position: relative;
}

.slider_track {
  display: flex;
  width: max-content; /* Se ajusta automáticamente al contenido */
  animation: slide 16s linear infinite; 
  justify-content: center;
  align-items: center;
}

.slider_image {
  width: 126px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 20px;
  padding: 0PX 45px 0 0;
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}
