#loading-overlay {
  position: fixed;
  inset: 0;
  background: #333333; /* o el color corporativo */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

#loading-overlay.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  width: 15vw;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}


/* Animaciones */

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}


@media (max-width: 768px) {

.loading-logo {
  width: 50vw;
}

}