/* Faixa contínua de serviços, no lugar da antiga faixa de marcas. */
.services-marquee {
  width: 100%;
  max-width: none;
}
.services-marquee .kicker { padding: 0 20px; }
.services-ticker {
  margin-top: 28px;
  overflow: hidden;
  border-block: 1px solid rgba(184, 107, 255, .22);
  background: linear-gradient(90deg, rgba(123,46,255,.06), rgba(123,46,255,.16), rgba(123,46,255,.06));
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.services-ticker-track {
  display: flex;
  width: max-content;
  animation: services-flow 36s linear infinite;
}
.services-ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  list-style: none;
  padding: 26px 0;
  margin: 0;
}
.services-ticker-group li {
  display: flex;
  align-items: center;
  flex: none;
  white-space: nowrap;
  color: #ede4fa;
  font: 600 clamp(20px, 2.3vw, 32px)/1.2 'Google Sans', sans-serif;
  letter-spacing: -.035em;
}
.services-ticker-group li::after {
  content: '✦';
  margin: 0 32px;
  color: var(--h);
  font-size: 22px;
  text-shadow: 0 0 16px rgba(184,107,255,.7);
}
.services-ticker:hover .services-ticker-track,
.services-ticker:focus-within .services-ticker-track { animation-play-state: paused; }
.services-ticker:focus-visible { outline: 2px solid var(--h); outline-offset: 5px; }
@keyframes services-flow { to { transform: translateX(-50%); } }
@media (max-width: 800px) {
  .services-marquee { width: 100%; }
  .services-ticker-group { padding: 22px 0; }
  .services-ticker-group li::after { margin: 0 22px; font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .services-ticker { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .services-ticker-track { animation: none; }
  .services-ticker-group[aria-hidden] { display: none; }
}
