
    .brands-carousel {
  width: 100%;
  padding: 0px 0;
  overflow: hidden;
  margin-top: 50px;
}

.brands-viewport {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
}

.brands-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.brand-item {
  flex: 0 0 calc(100% / 6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.brand-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-item img {
  max-width: 120px;
   object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.5s ease;
  border-radius: 15px;
 }

.brand-item:hover img {
  filter: grayscale(100%);
  opacity: 1;
    scale: 1.4;

}

/* TOOLTIP */
.brand-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff0000;
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.brand-item:hover::after {
  opacity: 1;
  scale: 1.1;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .brand-item { flex: 0 0 calc(100% / 5); }
}

@media (max-width: 900px) {
  .brand-item { flex: 0 0 calc(100% / 4); }
}

@media (max-width: 700px) {
  .brand-item { flex: 0 0 calc(100% / 3); }
}

@media (max-width: 480px) {
  .brand-item { flex: 0 0 calc(100% / 2); }
}
