#ambiente-de-carregamento {
  width: 100%;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow-x: hidden;
}

#ambiente-de-carregamento.sem-protagonismo {
  display: none !important;
}

#ambiente-de-carregamento .logo {
  max-width: 580px;
}

#ambiente-de-carregamento .logo img {
  width: 0px;
  transition: 1;
  margin-bottom: 8%;

  animation: load-crescer 1.2s ease-in-out forwards;
}

#ambiente-de-carregamento .barra-de-carregamento {
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

  width: 800px;
  height: 20px;
  background: wheat;
  border-radius: 10px;
  overflow: hidden;

  animation: load-amanhecer 0.8s ease-in-out forwards;
  animation-delay: 1.6s;
}

#progresso-de-carregamento {
  height: 100%;
  width: 0;
  background: #4caf50;
  transition: width 0.3s color 1s;
}

#progresso-de-carregamento.em-recuperacao {
  background: #db2763;
}

#progresso-de-carregamento.falhado {
  background: #a50303;
  animation: load-cancelar 3s ease-in-out 1s forwards;
}

#mensagem-de-status {
  transition: 1s;
  overflow: hidden;
  height: 0;

  color: black;
}

#mensagem-de-status.ativa {
  height: 26px;
  margin: 30px;

  color: #960606;
}

@keyframes load-amanhecer {
  to {
    opacity: 1;
    width: 500px;
  }
}

@keyframes load-crescer {
  to {
    width: 380px;
  }
}

@keyframes load-cancelar {
  to {
    width: 100%;
  }
}

#ambiente-de-jogo {
  display: none;
}

#ambiente-de-jogo.com-protagonismo {
  display: flex;
}

@media screen and (max-width: 700px) {
  #ambiente-de-carregamento {
    scale: 0.5;
    max-height: 100vh;
  }
}
