

/* Spinner para redirección */
/* spinner.css */

.cargador-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e7e3da;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
}

.cargador-contenido {
  text-align: center;
  width: 90%;
  max-width: 320px;
  padding: 20px;
}

.cargador-texto {
  font-size: 16px;
  color: #92180b;
  font-weight: bold;
  margin-bottom: 20px;
}

.barra-progreso {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.barra-interna {
  width: 0%;
  height: 100%;
  background-color: #92180b;
  animation: animarCarga 2s ease-in-out forwards;
  border-radius: 50px;
}

@keyframes animarCarga {
  0%   { width: 0%; }
  30%  { width: 40%; }
  60%  { width: 70%; }
  85%  { width: 85%; }
  100% { width: 100%; }
}
