/* ======= PRELOADER PREMIUM LICITAPRO ======= */
#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181a1b;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s;
}

.preloader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #25d366, #198754, #00b4d8, #f9d923, #f72585, #25d366);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: preloader-gradient 2.5s linear infinite;
  text-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

@keyframes preloader-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.preloader-dot {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.15em;
  border-radius: 50%;
  background: #25d366;
  animation: preloader-dot-bounce 1.2s infinite both;
}
.preloader-dot:nth-child(2) { animation-delay: 0.2s; background: #198754; }
.preloader-dot:nth-child(3) { animation-delay: 0.4s; background: #00b4d8; }
.preloader-dot:nth-child(4) { animation-delay: 0.6s; background: #f9d923; }
.preloader-dot:nth-child(5) { animation-delay: 0.8s; background: #f72585; }

@keyframes preloader-dot-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-1em); }
}
