/* ============================================================ */
/* BLOQUE: URGENCY v2.0                                         */
/* Countdown estilo LCD neón cian con cajas glow (referencia    */
/* retromotiongraphics) + barra de plazas                       */
/* ============================================================ */

.urgency { text-align: center; }

/* === COUNTDOWN LCD === */
.urgency__countdown {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.urgency__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  min-width: 110px;
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(180deg, #041014 0%, #071A20 100%);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: var(--radius-md);
  box-shadow:
    0 0 24px rgba(34, 211, 238, 0.18),
    inset 0 0 18px rgba(34, 211, 238, 0.08);
  position: relative;
  overflow: hidden;
}

/* Scanline sutil dentro de cada caja LCD */
.urgency__unit::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(34, 211, 238, 0.05) 3px,
    rgba(34, 211, 238, 0.05) 4px
  );
}

.urgency__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: #00F0FF;
  text-shadow:
    0 0 8px rgba(0, 240, 255, 0.8),
    0 0 24px rgba(0, 240, 255, 0.45),
    0 0 48px rgba(0, 240, 255, 0.25);
  font-variant-numeric: tabular-nums;
}

.urgency__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(34, 211, 238, 0.75);
}

.urgency__sep {
  align-self: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: rgba(0, 240, 255, 0.7);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
  animation: urgency-blink 1s steps(1) infinite;
}

@keyframes urgency-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.15; }
}

@media (prefers-reduced-motion: reduce) {
  .urgency__sep { animation: none; }
}

/* === BARRA DE PLAZAS === */
.urgency__slots {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.urgency__slots-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.urgency__slots-info strong { color: var(--text-primary); }

.urgency__bar {
  height: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.urgency__bar-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
  box-shadow: 0 0 16px var(--accent-glow);
  transition: width 1s ease;
}

.urgency__slots-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.urgency__slots-note strong { color: var(--accent-secondary); }

@media (max-width: 520px) {
  .urgency__unit { min-width: 70px; padding: var(--space-md) var(--space-sm); }
  .urgency__countdown { gap: var(--space-sm); }
}
