#marcas {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 24px;
}

.carrusel {
  width: 80vw;
  max-width: 70vw;
  overflow: hidden;
  border: 5px solid transparent;
  border-radius: 20px;
}

.wrap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  justify-items: stretch;
  animation: slide 60s linear infinite;
  animation-play-state: running;
}

.wrap img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wrap img:hover {
  transform: scale(1.1);
}

.wrap:hover {
  animation-play-state: paused;
}

@keyframes slide {
  to {
    translate: calc(-47 * 200px);
  }
}