/* ============================================================
   EN CONSTRUCCIÓN — full-page lock for unfinished pages.
   Hides the entire site behind a branded overlay.
   ============================================================ */
html.uc-locked,
html.uc-locked body {
  overflow: hidden !important;
  height: 100vh !important;
}

.uc-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(131,193,198,0.18), transparent 70%),
    linear-gradient(180deg, #344262 0%, #1f2942 100%);
  color: #ffffff;
  overflow: hidden;
}

.uc-overlay::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,140,66,0.08) 0 24px,
      transparent 24px 48px
    );
  pointer-events: none;
}

.uc-logo {
  width: clamp(120px, 16vw, 200px);
  height: auto;
  margin-bottom: clamp(24px, 4vh, 40px);
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 9999px;
  background: rgba(255,140,66,0.18);
  border: 1px solid rgba(255,140,66,0.55);
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF8C42;
  margin-bottom: clamp(20px, 3vh, 32px);
  position: relative;
  z-index: 1;
}

.uc-badge .uc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF8C42;
  box-shadow: 0 0 10px #FF8C42;
  animation: uc-pulse 1.4s ease-in-out infinite;
}

@keyframes uc-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.2); }
}

.uc-title {
  font-family: 'Bangond', Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 clamp(16px, 2.5vh, 28px);
  font-weight: 100;
  position: relative;
  z-index: 1;
  text-shadow: 0 6px 40px rgba(0,0,0,0.4);
}

.uc-title .uc-amp {
  color: #83C1C6;
  font-style: italic;
}

.uc-sub {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 clamp(28px, 4vh, 44px);
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.uc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.uc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 9999px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.uc-btn--primary {
  background: rgba(131,193,198,0.22);
  border: 1px solid rgba(131,193,198,0.65);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.uc-btn--primary:hover {
  background: rgba(131,193,198,0.40);
  border-color: rgba(131,193,198,1);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.uc-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.30);
  color: #ffffff;
}
.uc-btn--ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.uc-foot {
  position: absolute;
  bottom: clamp(16px, 3vh, 28px);
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 1;
}

@media (max-width: 480px) {
  .uc-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .uc-btn     { justify-content: center; width: 100%; }
}
