#ticker-container {
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#0b3d2e;
  color:#fff;
  padding:10px;
  font-size:15px;
  font-family:Arial, sans-serif;
  overflow:hidden;
  white-space:nowrap;
  z-index:9999;
}

#ticker {
  display:inline-block;
  animation:scroll 100s linear infinite; /* Velocidade reduzida */
}

@keyframes scroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
