#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #e9b08f, #ea5e3a, #c02226);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loader-content {
  text-align: center;
}

/* Logo */
.logo-loader {
  width: 120px;
  margin-bottom: 20px;
  animation: latido 1.5s ease-in-out infinite;
}

@keyframes latido {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Barra */
.barra {
  width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
  overflow: hidden;
}

/* Progreso animado */
.progreso {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 2s ease;
  border-radius: 10px;
}

@keyframes cargar {
  0% { width: 0%; }
  50% { width: 80%; }
  100% { width: 100%; }
}