#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #0e0e0e; /* fondo oscuro */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 0.6s ease-out 2s forwards; /* se desvanece tras 2s */
}

.loader-wrapper {
  text-align: center;
  animation: zoomIn 1.2s ease-in-out;
}

.preloader-logo {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
  border-radius: 10px;
  filter: brightness(1.15);
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 4px solid #2c2c2c;
  border-top: 4px solid #c92a2a; /* rojo corporativo */
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 1s linear infinite;
}

.preloader-text {
  color: #999;
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1.2s;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes zoomIn {
  0% { transform: scale(0.96); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}