/* ==========================================================
   Clientes — título + marquee (largura 100%, sem bordas)
   ========================================================== */

.clientes {
  background-color: #fcfcfc;
  padding: 100px 0 65px;
}
.clientes__titulo {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 45px;
}

.clientes-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.clientes-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.clientes-marquee__track img {
  display: block;
  height: 104px;          /* altura das faixas de logos */
  width: auto;
  max-width: none;
  margin: 0 10px;
  border: 0;
  flex: 0 0 auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Arraste ---------------------------------------------------- */

.clientes-marquee.is-arrastavel {
  cursor: grab;
  touch-action: pan-y;          /* mantém a rolagem vertical da página */
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.clientes-marquee.is-arrastando {
  cursor: grabbing;
}

/* Telas menores: reduz a altura das faixas */
@media (max-width: 768px) {
  .clientes { padding: 70px 0 50px; }
  .clientes__titulo { font-size: 24px; margin-bottom: 30px; }
  .clientes-marquee__track img { height: 74px; margin: 0 18px; }
}

@media (max-width: 480px) {
  .clientes-marquee__track img { height: 58px; margin: 0 12px; }
}
