/* Emule Daty Front CSS — v2.1.0
   [1] Classes exclusivas edty-*
   [2] Responsivo por padrão (texto fluido)
*/

.edty-wrapper{ /* [3] Container do bloco */
  display:inline-flex;
  align-items:baseline;
  gap:.25rem;
  line-height:1.3;
  flex-wrap:wrap;
}

.edty-fixed{ /* [4] Texto fixo com cor própria */
  font-weight:600;
}

.edty-typed{ /* [5] Palavra “digitada” com cor própria */
  font-weight:700;
}

.edty-cursor{ /* [6] Cursor piscando */
  display:inline-block;
  width:auto;
  animation:edty-blink 1s steps(2, start) infinite;
  opacity:.9;
}

.edty-cursor.edty-ended{
  animation:none;
  opacity:.5;
}

/* [7] Animação do cursor */
@keyframes edty-blink{
  0%,100%{opacity:0;}
  50%{opacity:1;}
}

/* [8] Ajustes mobile */
@media (max-width:480px){
  .edty-wrapper{
    gap:.2rem;
  }
}
