/* ============================================================
   SEÇÃO — Marquee (faixa de features contínua)
   Para alterar velocidade: mude "28s" no animation
============================================================ */
.marquee-section {
  padding: 20px 0;
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

/* Gradiente nas bordas para fade suave */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left:  0; background: linear-gradient( 90deg, var(--bg), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  white-space: nowrap;
  letter-spacing: -.01em;
  transition: color .2s;
}
.marquee-item:hover { color: var(--text2); }

.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
}
