/* PAES Ultra · Muro de registro suave (app/registro.js)
   Vive dentro de la vista "resultados", justo bajo la cabecera. Lleva el color del módulo de planes
   (--m-pase) porque es una tarjeta comercial, pero sin fondo saturado: el puntaje recién ganado tiene
   que seguir siendo lo más llamativo de la pantalla. */

.reg-muro {
  position: relative;
  margin: 16px 0 20px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--m-pase);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  animation: reg-entra var(--dur-3) var(--ease-out) both;
}
.reg-muro .plan-etq {
  color: var(--m-pase);
  background: var(--m-pase-soft);
}
.reg-titulo {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 22px;
  font-stretch: 92%;
  font-weight: 750;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: var(--ink);
}
.reg-cuerpo {
  margin: 0 0 16px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
}
.reg-acciones { display: flex; flex-wrap: wrap; gap: 10px; }
.reg-acciones .btn-primario { background: var(--m-pase); color: var(--m-ink); border-color: var(--m-pase); }

/* Proveedores: fila secundaria, deliberadamente más discreta que el botón principal */
.reg-proveedores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.reg-o {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin-right: 2px;
}
.reg-proveedores .btn-proveedor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}
.reg-proveedores .btn-proveedor:hover { background: var(--surface-2); }
.reg-proveedores .prov-icono { display: inline-flex; }

.reg-nota {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-3);
}

/* Cerrar: discreto, arriba a la derecha, con área táctil de 44 px */
.reg-x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--pill);
  background: transparent;
  color: var(--ink-3);
  font-size: 15px;
  cursor: pointer;
}
.reg-x:hover { background: var(--surface-2); color: var(--ink); }

@keyframes reg-entra {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .reg-muro { padding: 18px 16px; margin: 14px 0 18px; }
  .reg-titulo { font-size: 20px; }
  .reg-acciones .btn { width: 100%; justify-content: center; }
  .reg-proveedores .btn-proveedor { flex: 1 1 100%; justify-content: center; }
}

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

/* ---------- Prueba de 7 días, en la vista de planes (app/planes.js) ---------- */
.plan-prueba {
  border-left: 4px solid var(--m-pase);
  background: linear-gradient(180deg, var(--m-pase-soft), var(--surface) 70%);
}
.plan-prueba .plan-etq { color: var(--m-pase); background: var(--surface); }
.plan-prueba h3 {
  margin: 8px 0 6px;
  font-family: var(--display);
  font-size: 24px;
  font-stretch: 92%;
  font-weight: 800;
  color: var(--m-pase);
}
.nota-prueba-fin { border-left: 4px solid var(--m-pase); }
