#carregamento {
  display: none; /* aparece só quando ativar via JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loading-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dots {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #00ffcc; /* cor vibrante */
  animation: bounce 1.2s infinite ease-in-out;
}

.dot1 { animation-delay: 0s; }
.dot2 { animation-delay: 0.3s; }
.dot3 { animation-delay: 0.6s; }
.dot4 { animation-delay: 0.9s; }

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.texto-carregando {
  font-size: 20px;
  font-weight: 700;
  color: white;
  font-family: 'Arial', sans-serif;
  user-select: none;
}