.banda-ofertas {
  width: 110%;
  background: #2d385d;
  color: #fff;
  font-size: 1.1rem;
  font-family: inherit;
  overflow: hidden;
  position: relative;
  transform: rotate(-10deg);
  z-index: 10;
  margin: 0rem 0 2rem -2vw;
  left: 0;
}

.banda-ofertas__marquee {
  display: flex;
  width: max-content;
  padding: 8px;
  gap: 28px;
  animation: banda-marquee 30s linear infinite;
}

.banda-ofertas__marquee span {
  white-space: nowrap;
  padding-right: 2rem;
}

.monstera-separator {
  background-image: var(--monstera-bg);
  width: 1px;
  height: auto;
  margin-top: 3px;
  background-repeat: no-repeat;
}

@keyframes banda-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Media queries para ajustar la velocidad según el tamaño de pantalla */
@media (min-width: 1920px) {
  .banda-ofertas__marquee {
    animation-duration: 40s;
  }
}

@media (min-width: 2560px) {
  .banda-ofertas__marquee {
    animation-duration: 50s;
  }
}

@media (min-width: 3840px) {
  .banda-ofertas__marquee {
    animation-duration: 60s;
  }
} 