.text-wrapper {
  font-weight: bold;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: linear-gradient(90deg, #ffd900, #ff9900, #ffd900);
  background-size: 200% auto; /* mais espaço para animar */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: animate 8s linear infinite;
}

@keyframes animate {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.left-hero{
   position: relative;
}
