#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e53000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
  animation: none;
}

#loader img {
  width: 100px; /* Ajusta esto según el tamaño deseado para tu logo */
  height: auto;
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes slideUp {
  from { height: 100%; }
  to { height: 0; }
}

@keyframes fastSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

