.apoiadores-carousel {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  animation: bgMove 10s linear infinite;
}

.carousel-track {
  display: flex;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}

.apoiador-card {
  flex: 0 0 auto;
  height: 100%;
  margin-right: 20px;
}

.apoiador-card img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
}

.apoiadores-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #4b3a00, #5d4a11, #6f5d2a, #5d4a11, #4b3a00);
  background-size: 300% 300%;
  animation: bgMove 10s linear infinite;
  padding: 10px 0;
  position: relative;
}

.banner-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.banner-track span {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  padding: 0 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

@keyframes bgMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
