.anuncios {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  background-color: #2a1a3d;
  padding: 5px 10px;
  height: 45px; /* altura reduzida */
  border: none;
  overflow: hidden;
}

.anuncio-icone {
  background-color: transparent;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-shrink: 0;
}

.anuncio-icone i {
  color: #f5f5dc;
  font-size: 20px;
}

.anuncio-texto {
  background-color: transparent;
  padding: 0;
  border: none;
  flex-grow: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 100%;
}

.anuncio-scroll {
  display: flex;
  white-space: nowrap;
  animation: scrollHorizontal 90s linear infinite;
  gap: 100px; /* espaçamento entre duplicatas */
}

.scroll-text {
  color: #f5f5dc;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  line-height: 45px;
  display: inline-block;
}

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