/* streak ------------------------------------------ */
/* streak ------------------------------------------ */
/* streak ------------------------------------------ */

#sequencia {
  position: absolute;
  place-self: center;
  bottom: 5%;
  width: 100vw;
  border: 3px solid var(--neon_primario);
  border-right: none;
  border-left: none;
  justify-items: center;
  z-index: 1;
  background:
    linear-gradient(
        rgba(0, 0, 0, 0.5),
        transparent,
        transparent,
        rgba(0, 0, 0, 0.5)
      )
      no-repeat,
    url("../imagens/background_pixelado.webp") no-repeat top / cover;
  padding: 15px 5px;
  transform: scale(0);
  opacity: 0;
  transition:
    opacity 0.5s,
    transform 0.5s;
}

#sequencia h2 {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: var(--neon_gold);
  text-shadow: 0 0 8px currentColor;
}

#sequencia.streak {
  transform: scale(1);
  opacity: 1;
  /* animation: pop 0.5s ease; */
}

#sequencia svg {
  height: 40px;
  margin-right: 15px;
}

#sequencia span {
  font-size: 2.3rem;
}

#sequencia span.pop {
  animation: pop 0.5s ease;
}

@keyframes pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(2);
  }
}

/* MENSAGEM MOTIVACIONAL ---------------------------------------- */
/* MENSAGEM MOTIVACIONAL ---------------------------------------- */
/* MENSAGEM MOTIVACIONAL ---------------------------------------- */

#msg_motivacional {
  height: 0;
  overflow: hidden;
  width: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--neon_gold);
  transition:
    padding 0.5s,
    margin 1s;
  text-align: center;
  align-self: center;
  position: relative;
}

#msg_motivacional.aberto {
  padding: 5px 0 3dvh 0;
  margin: 1dvh 0;
}

#msg_motivacional > span {
  width: 100%;
  text-shadow: 0 0 15px currentColor;
}

#msg_motivacional svg {
  display: block;
  position: absolute;
  height: 30px;
  top: 0;
  right: 5%;
}

#separacao_mensagem_motivacional {
  height: 1px;
  padding: 0.5px;
  transform: scaleY(0);
  opacity: 0;
  transition:
    opacity 1s,
    transform 1s;
}

#separacao_mensagem_motivacional.aberto {
  transform: scaleY(1);
  opacity: 0.2;
}
