#preloader2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0e10;
  display: none; /* começa escondido */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loader-box {
  text-align: center;
  animation: fadein 0.5s ease-in-out;
}

.logo {
  font-size: 60px;
  margin-bottom: 10px;
  animation: bounce 1.2s infinite;
}

.text {
  font-size: 20px;
  margin-bottom: 20px;
  color: #a147f5;
  font-weight: 600;
}

.barra {
  width: 250px;
  height: 7px;
  border-radius: 8px;
  background: #4a3d6a;
  overflow: hidden;
  margin: 0 auto;
}

.progresso {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #a147f5, #7b1fe0);
  animation: progress 2s linear forwards;
  border-radius: 8px;
}

/* Reutiliza animações */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadein {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes progress {
  to {
    width: 100%;
  }
}
