.brand-slider-orange {
  width: 100%;
  padding: 50px 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f3f3f3, #ffffff);
}

.brand-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0px;
  color: #1a1a1a;
}

.brand-slider-mask {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.brand-slider-track {
  display: flex;
  gap: 40px;
  width: 200%;
  animation: brandScroll 30s linear infinite;
}

/* CARD */
.brand-item {
  min-width: 160px;
  height: 90px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6e6e6;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

/* LOGO */
.brand-item img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.35s ease;
}

/* HOVER */
.brand-item:hover {
  transform: translateY(-6px);
  border-color: #cfcfcf;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.12);
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Animación infinita */
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



/* Mobile */
@media (max-width: 768px) {
  .brand-title {
    font-size: 20px;
  }

  .brand-item {
    min-width: 120px;
    height: 70px;
  }

  .brand-item img {
    max-width: 90px;
    max-height: 40px;
  }
}
