/* /assets/css/off.css — OneCut · Estilos página link desactivado
   Complementa styles.css — no duplica variables ni reset
   ──────────────────────────────────────────────────────── */

/* ════════════════════════════════════════
   LAYOUT PRINCIPAL — dos columnas
════════════════════════════════════════ */
.page-off {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 96px;
  min-height: calc(100dvh - 58px - 61px);
}

.page-off__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0 80px;
}

/* ════════════════════════════════════════
   COLUMNA IZQUIERDA — símbolo
════════════════════════════════════════ */
.page-off__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Símbolo — estado: cortado y quieto desde el inicio
   Transmite cierre, no error */
.off-symbol {
  display: flex;
  align-items: center;
  font-family: var(--font);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  user-select: none;
  opacity: 0;
  animation: symbolAppear 0.7s var(--ease) 0.2s forwards;
}

.off-left  { display: inline-block; transform: translateX(-10px); }
.off-right { display: inline-block; transform: translateX(10px); }
.off-slash {
  display: inline-block;
  margin: 0 4px;
  color: var(--accent);
  opacity: 0.5;
}

@keyframes symbolAppear {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════
   COLUMNA DERECHA — contenido
════════════════════════════════════════ */
.page-off__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* Etiqueta superior */
.page-off__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s var(--ease) 0.08s forwards;
}

/* Título */
.page-off__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s var(--ease) 0.16s forwards;
}

/* Subtítulo — tono emocional, no técnico */
.page-off__sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s var(--ease) 0.24s forwards;
}

/* CTA secundario — menos prominente que el del 404
   El link ya no existe: el tono es de cierre, no urgencia */
.page-off__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  text-decoration: none;
  transition:
    background  0.18s ease,
    color       0.18s ease,
    transform   0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.18s ease;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease) 0.32s forwards;
}

.page-off__cta:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(107, 78, 255, 0.22);
}

.page-off__cta:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.page-off__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ════════════════════════════════════════
   RESPONSIVE — mobile
════════════════════════════════════════ */
@media (max-width: 680px) {
  .page-off {
    padding: 56px 0 72px;
    align-items: flex-start;
  }

  .page-off__grid {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }

  .page-off__visual {
    justify-content: flex-start;
  }
}

/* ════════════════════════════════════════
   REDUCCIÓN DE MOVIMIENTO
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .page-off__label,
  .page-off__title,
  .page-off__sub,
  .page-off__cta,
  .off-symbol {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
