/* Banda Vina Infinita */
.banda-vina {
  width: 100%;
  margin: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  height: 260px;
}
.banda-vina-inner {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform;
}
.banda-vina-item {
  min-width: 300px;
  margin: 0 1.5rem; 
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(106,130,251,0.15);
  overflow: hidden;
  box-shadow: 0 4px 32px #ff61a6aa;
}
.banda-vina-item img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.banda-vina-caption {
  background: linear-gradient(90deg, #ff61a6cc 0%, #6a82fbcc 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  text-align: center;
  width: 100%;
  box-shadow: 0 2px 12px #6a82fb44;
}
@media (max-width: 600px) {
  .banda-vina, .banda-vina-item img {
    height: 120px;
    min-width: 180px;
  }
  .banda-vina-item {
    min-width: 180px;
  }
  .banda-vina-item img {
    width: 180px;
    height: 90px;
  }
}

/* Carrusel infinito solo de fotos */
.banda-fotos {
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 4px 32px #ff61a6aa;
  background: #fff;
  position: relative;
  height: 200px;
}
.banda-fotos-inner {
  display: flex;
  align-items: center;
  height: 100%;
  will-change: transform;
}
.banda-foto-item {
  min-width: 180px;
  max-width: 180px;
  height: 180px;
  margin: 0 1rem;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px #6a82fb44;
  transition: transform 0.2s;
}
.banda-foto-item:hover {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 4px 24px #ff61a6aa;
}
@media (max-width: 600px) {
  .banda-fotos, .banda-foto-item {
    height: 90px;
    min-width: 90px;
    max-width: 90px;
  }
  .banda-foto-item {
    height: 90px;
    width: 90px;
  }
}