/* ============================================================
   Carrossel "Na mídia" — componente reutilizável (standalone)
   Use com <div id="ft-press"></div> + /js/press-bar.js
   ============================================================ */
.ft-press {
  padding: 32px 0;
  border-bottom: 1px solid #f1e9e2;
}
.ft-press-label {
  text-align: center;
  color: #8a8d96;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ft-press-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ft-press-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: ft-press-scroll 36s linear infinite;
}
.ft-press-track:hover {
  animation-play-state: paused;
}
.ft-press-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.ft-press-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.ft-press-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes ft-press-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-press-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .ft-press-track-wrap {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
