/* Container para o texto digitado */
.typing-text-container {
    justify-content: center;
    max-width: 600px;
    height: 80px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.0;
    font-size: 1.5em;
    position: relative; /* Crucial para o posicionamento absoluto do cursor */
}

/* O elemento onde o texto é digitado */
#typed-text {
    display: inline; /* Mude para inline (padrão de span) ou inline-block */
    /* Remove todas as propriedades de vertical-align, line-height, etc. aqui,
       deixe-o o mais simples possível para não interferir. */
    white-space: pre-wrap;
    word-break: break-word;
    line-height: inherit;
    /* Opcional: min-height para garantir que sempre haja espaço para o texto */
    /* min-height: 1.2em; */
}

/* Estilizando o cursor do Typed.js */
.typed-cursor {
    font-weight: bold;
    margin-left: 3px;
    color: #ffffff;
    font-size: 1.2em;
  }


/* Animação de piscar do cursor */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

p {
  font-size: xx-large;
  color: white;
}

.typeText::after {
  content: "|";
  animation: blink 0.9s infinite;
}

@keyframes blink {
  0%, 100% {opacity: 1;}
  50% {opacity: 0;}
}