void OnTriggerEnter2D(Collider2D colisor)
 {
     if (colisor.gameObject.tag == "Player")
     {
         jogo.CarregaFase2();
     }
 }