.news-slider-top {
  width: 100%;
  background: #00214d;
  color: white;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.news-track {
  display: flex;
  width: max-content; /* Garante que o conteúdo tenha largura total real */
  animation: scroll 50s linear infinite;
}

.news-slider-top:hover .news-track {
  animation-play-state: paused;
}

.news-item {
  flex: 0 0 auto;
  padding: 0 2rem;
  white-space: nowrap;
}

.news-item:hover {
  text-decoration: underline
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}