.fundo-clientes {
  background-color: #fff; 
}
.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.logo {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/*Carousel Track*/

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 30px;
}

.carousel-track {
  display: flex;
  animation: slide 30s linear infinite;
}

.logo-carousel {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
}

.logo-carousel img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-600%);
  }
}

/*logos-clientes*/

.logos-clientes-section {
  margin: 0 auto 15px;
  width: 90%;
  border-radius: 1px;
  padding: 30px;
}

.img-clientes {
  background-image: linear-gradient(to right, #061940 5%, transparent 40%),
    linear-gradient(to left, #061940 5%, transparent 40%),
    url("../logos-clientes-sengefar/handshake.jpg");
}

@media screen and (max-width: 430px) {
  .carousel-track {
    animation: slide 30s linear infinite;
  }

  .logo-carousel {
    width: 100px;
    height: 100px;
  }

  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-1500%);
    }
  }
}
