/* ──────────────────────────────────────────────────────────────────────────
   Trial de Premium (48h) — CARD INLINE (montado em [data-trial-slot]).
   Estilo alinhado com os cartões de convite (.cv-card). Tema Dossiê
   (tokens --card / --ink / --ink-3 / --line-2 / --gold / --paper-2).
   Sem position:fixed — flui no conteúdo, nunca tapa botões do quiz.
   NOTA: os botões (.trial-cta / .trial-x) são escopados sob .trial-card para
   ganhar a um reset de `button` da app (ex.: `.page button`, especificidade 0,1,1).
   ────────────────────────────────────────────────────────────────────────── */

/* Slot vazio (não elegível / dispensado) não ocupa espaço. */
[data-trial-slot]:empty { display: none !important; }

.trial-card {
  position: relative; display: flex; gap: 13px; align-items: center;
  background: var(--card); border: 1px solid var(--line-2);
  border-radius: 16px; padding: 14px 15px;
}

/* Logo (tile dourado — sinal de Premium) */
.trial-logo {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, var(--gold, #C9962F), #a9781f);
  color: #1a1d22; display: flex; align-items: center; justify-content: center;
}
.trial-logo svg { width: 26px; height: 26px; }

.trial-body { flex: 1; min-width: 0; }
.trial-title { font-weight: 600; font-size: 14.5px; color: var(--ink); line-height: 1.25; padding-right: 18px; }
.trial-text { font-size: 12.5px; color: var(--ink-3); line-height: 1.4; margin-top: 3px; }
.trial-text b { color: var(--ink); font-weight: 600; }

.trial-card .trial-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; margin-top: 10px;
  font-size: 12.5px; font-weight: 700; text-decoration: none; cursor: pointer;
  padding: 8px 14px; border-radius: 10px; font-family: inherit;
  background: var(--gold, #C9962F); border: 1.5px solid var(--ink); color: var(--ink);
}
.trial-card .trial-cta:active { transform: translateY(1px); }
.trial-card .trial-cta:disabled { opacity: .6; cursor: default; }

.trial-card .trial-x {
  position: absolute; top: 8px; right: 9px; width: 26px; height: 26px;
  border: none; background: none; color: var(--ink-3); cursor: pointer;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.trial-card .trial-x:hover { background: var(--paper-2, #efe9da); color: var(--ink); }
