/* Doble opt-in — estados de éxito pendiente */
.uayu-sub-fade-out {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
  pointer-events: none;
}
.uayu-sub-fade-in {
  animation: uayuSubFadeIn 0.45s ease forwards;
}
@keyframes uayuSubFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.uayu-sub-pending {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: 0.85rem;
  background: linear-gradient(120deg, #ecfdf5 0%, #fffbeb 55%, #ffffff 100%);
  border: 1px solid #99f6e4;
  text-align: center;
}
.uayu-sub-pending__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 700;
}
.uayu-sub-pending__title {
  margin: 0 0 0.55rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: #1f2937;
  line-height: 1.2;
}
.uayu-sub-pending__text {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4b5563;
}
.uayu-sub-pending__hint {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.nl-banner [data-uayu-sub-success] {
  padding: 0 1.25rem 1rem;
}
@media (min-width: 768px) {
  .nl-banner [data-uayu-sub-success] { padding: 0 1.75rem 1.15rem; }
}

.cron-landing__msg.uayu-sub-pending-wrap .uayu-sub-pending {
  text-align: left;
  margin-top: 0.35rem;
}

/* Página de bienvenida con cupón */
.uayu-welcome {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f6f3ec 0%, #fff 40%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #1f2937;
}
.uayu-welcome__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
}
.uayu-welcome__card {
  width: 100%;
  max-width: 32rem;
  padding: 2rem 1.75rem;
  border-radius: 1.25rem;
  background: #fffdf8;
  border: 1px solid #e8e2d4;
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.08);
  text-align: center;
}
.uayu-welcome__logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.65rem;
  margin: 0 auto 1rem;
  display: block;
}
.uayu-welcome__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f766e;
  font-weight: 700;
}
.uayu-welcome__title {
  margin: 0 0 0.75rem;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1f2a1c;
}
.uayu-welcome__text {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}
.uayu-welcome__code {
  margin: 0 0 1rem;
  padding: 1.1rem 1rem;
  border-radius: 0.75rem;
  border: 2px dashed #0f766e;
  background: linear-gradient(105deg, #f0fdfa, #fffbeb);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.15rem, 4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #115e59;
}
.uayu-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.uayu-welcome__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.uayu-welcome__btn:hover { opacity: 0.92; }
.uayu-welcome__btn--primary {
  background: #0f766e;
  color: #fff;
}
.uayu-welcome__btn--ghost {
  background: #fff;
  color: #0f766e;
  border: 2px solid #0f766e;
}
.uayu-welcome__err {
  color: #b91c1c;
  font-size: 0.92rem;
  line-height: 1.5;
}
