@keyframes scrollText {
  0% {
    transform: translateX(100%) translateY(-50%);
  }
  100% {
    transform: translateX(-100%) translateY(-50%);
  }
}

/* Fallback en caso de que el navegador no soporte <textPath> */
.fallback-container {
  display: none;
  width: 100%;
  height: 100px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  margin-top: 20px;
}

.fallback-text {
  position: absolute;
  white-space: nowrap;
  font-family: 'Georgia', serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #2c2c2c;
  text-transform: uppercase;
  top: 50%;
  transform: translateY(-50%);
  animation: scrollText 25s linear infinite;
}
