/* === Sección de marcas estilo brutalista === */
.brands-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0a0a0a, #111);
  text-align: center;
  border-radius: 16px;
  box-shadow:
    0 0 15px var(--neon-red),
    0 0 40px rgba(255, 23, 68, 0.5);
  animation: argbGlowBrutal 3s ease-in-out infinite alternate;
}

.brands-section .section-title {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #0ff, 0 0 30px #f0f;
}

/* === Contenedor del slider === */
.brands-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  gap: 20px;
  position: relative;
  padding: 20px 0;
}

/* === Botones con borde rojo vacío === */
.brands-prev,
.brands-next {
  background: transparent;
  color: #ff0033;
  border: 2px solid #ff0033;
  font-size: 2rem;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 0 10px rgba(255, 0, 51, 0.4);
}

.brands-prev:hover,
.brands-next:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #ff0033, 0 0 30px rgba(255, 0, 51, 0.6);
  background: rgba(255, 0, 51, 0.05);
}

/* === Área deslizable === */
.brands-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 24px;
  padding: 10px 0;
  flex-grow: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brands-slider::-webkit-scrollbar {
  display: none;
}


/* === Cada marca (más clara y visible) === */
/* === Cada marca (fondo blanco, estilo neutral) === */
.brand-item {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.brand-item:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Logo de marca normal sin efectos */
.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: none;
}


/* Drag visual */
.brands-slider.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* === Animación LED brutal (contenedor) === */
@keyframes argbGlowBrutal {
  0%, 100% {
    box-shadow:
      0 0 20px #ff00ff,
      0 0 30px #00ffff,
      0 0 40px #ff0099,
      0 0 80px rgba(0, 255, 255, 0.4);
  }
  50% {
    box-shadow:
      0 0 40px #ff00ff,
      0 0 60px #00ffff,
      0 0 80px #ff0099,
      0 0 100px rgba(255, 0, 255, 0.6);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .brands-container {
    gap: 10px;
  }

  .brands-prev,
  .brands-next {
    font-size: 1.6rem;
    padding: 10px;
  }

  .brand-item {
    width: 120px;
    height: 90px;
    padding: 12px;
  }
}
