.ticker {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(6px);
  overflow: hidden;
  z-index: 9999;
  font-size: 14px;
  border-top: 1px solid #def1f3;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding: 10px 0;
  animation: ticker-scroll 45s linear infinite;
}

.ticker-item {
  color: #000;
  text-decoration: none;
  margin-right: 60px;
}

.ticker-item:hover {
  text-decoration: underline;
}

/* PAUSA NO HOVER (DEFAULT) */
.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* MOBILE: menu fixo está ACIMA do ticker */
@media (max-width: 768px) {
  .ticker {
    bottom: -60px; /* AJUSTE para a altura real do seu menu */
    font-size: 13px;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
