/* .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee img {
    margin-right: 50px;
    max-width: 200px;
    max-height: 50px;
}


@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
} */


.marquee-container {
    overflow: hidden;
    position: relative;
    background-color: transparent; /* Fondo claro */
    padding: 10px 0;
  }

  .marquee-izquierda {
    display: flex;
    justify-content: space-around;
    animation: marquee1 24s linear infinite;
  }
  
  .marquee-derecha {
    display: flex;
    justify-content: space-around;
    animation: marquee2 24s linear infinite;
  }

  .marquee-content img {
    max-height: 130px;
    margin: 0 15px;
  }

  @keyframes marquee1 {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
}
  
  @keyframes marquee2 {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }