/* Pantalla de carga (splash) */
#Pantalla-Carga{
  position: fixed;
  inset: 0;
  background:#fff;
  display: grid;
  place-items: center;
  transition: opacity 200ms ease;
  z-index: 9999;
}

#Pantalla-Carga .intro{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}

#Pantalla-Carga .intro-over{
  font-weight: 800;
  font-size: clamp(16px, 2.6vw, 28px);
  letter-spacing: .4px;
}

#Pantalla-Carga .intro-title{
  font-weight: 900;
  font-style: italic;
  font-size: clamp(42px, 10vw, 110px);
  line-height: 1;
}

#Pantalla-Carga .intro-sub{
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 36px);
  opacity: .9;
}

#Pantalla-Carga .progress{
  width: min(80vw, 560px);
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(0,0,0,.85);
  background: rgba(0,0,0,.12);
}

#Pantalla-Carga .progress__bar{
  display: block;
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: inherit;
  transition: width 300ms ease; /* ← ahora se anima el cambio de ancho */
}

@media (prefers-reduced-motion: reduce){
  #Pantalla-Carga .progress__bar{ transition: none; width: 100%; }
}
