/* Animaciones para dibujar las líneas del SVG */
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* Animaciones para Bug.svg */
path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  fill: none;
  stroke-width: 2;
}

/* Estilos específicos por SVG */
#Bug path {
  stroke: #00ff99;
  animation: drawPath 8s ease-in-out forwards;
}

#Firma path {
  stroke: #ff00ff;
  animation: drawPath 3s ease-in-out 8s forwards;
}