/* Painel do MuteRead (cliente e dono). Tema escuro, verde da marca, sem build. */
:root {
  --bg: #0A0F0D; --panel: #111815; --panel2: #16201C; --line: #22302B; --line2: #2C3D37;
  --text: #E8F0ED; --mut: #9AADA6; --mut2: #71847D;
  --g: #19B38F; --g2: #0E7C66; --g-soft: rgba(25, 179, 143, .12); --g-line: rgba(25, 179, 143, .35);
  --warn: #F5B544; --warn-soft: rgba(245, 181, 68, .12); --bad: #F2676A; --bad-soft: rgba(242, 103, 106, .12);
  --r: 12px; --r2: 16px; --side: 256px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; background: var(--bg); color: var(--text); font: 15px/1.5 var(--font); -webkit-font-smoothing: antialiased; }
html[lang="hi"] body { font-family: "Noto Sans Devanagari", "Nirmala UI", "Mangal", var(--font); line-height: 1.65; }
html[lang="ar"] body { font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, var(--font); }
a { color: var(--g); }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--g); outline-offset: 2px; border-radius: 6px; }
.num, table td.num { font-variant-numeric: tabular-nums; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.muted { color: var(--mut); } .small { font-size: 13px; }
svg.i { width: 18px; height: 18px; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---- layout ---- */
.shell { display: grid; grid-template-columns: var(--side) 1fr; min-height: 100dvh; }
.side { background: var(--panel); border-inline-end: 1px solid var(--line); display: flex; flex-direction: column; position: sticky; top: 0; height: 100dvh; }
.team-switch { display: flex; align-items: center; gap: 10px; padding: 16px; border-bottom: 1px solid var(--line); }
.avatar { width: 36px; height: 36px; border-radius: 10px; background: var(--panel2); border: 1px solid var(--line2); display: grid; place-items: center; font-weight: 700; font-size: 13px; color: var(--mut); flex: none; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-switch .ts { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.team-switch select { width: 100%; min-width: 0; background: transparent; border: 0; font-weight: 700; cursor: pointer; padding: 0; min-height: 28px; text-overflow: ellipsis; }
.team-switch select option { background: var(--panel); }
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 999px; background: var(--panel2); border: 1px solid var(--line2); color: var(--mut); white-space: nowrap; }
.badge.ok { background: var(--g-soft); border-color: var(--g-line); color: var(--g); }
.badge.warn { background: var(--warn-soft); border-color: rgba(245, 181, 68, .35); color: var(--warn); }
.badge.bad { background: var(--bad-soft); border-color: rgba(242, 103, 106, .35); color: var(--bad); }
.nav { padding: 12px 10px; display: flex; flex-direction: column; gap: 2px; flex: 1; overflow: auto; }
.nav a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: var(--mut); text-decoration: none; font-weight: 500; min-height: 44px; transition: background .15s, color .15s; }
.nav a:hover { background: var(--panel2); color: var(--text); }
.nav a[aria-current="page"] { background: var(--panel2); color: var(--text); box-shadow: inset 3px 0 0 var(--g); }
[dir="rtl"] .nav a[aria-current="page"] { box-shadow: inset -3px 0 0 var(--g); }
.nav .sep { height: 1px; background: var(--line); margin: 8px 6px; }
.me { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); }
.me .who { min-width: 0; flex: 1; } .me .who b, .me .who span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.me .who span { color: var(--mut); font-size: 12px; }
.main { min-width: 0; }
.top { display: flex; align-items: center; gap: 12px; padding: 14px 28px; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(10, 15, 13, .92); backdrop-filter: blur(8px); z-index: 10; }
.top .crumb { color: var(--mut); } .top .crumb b { color: var(--text); font-weight: 600; }
.top .grow { flex: 1; }
.top .menu-btn { display: none; }
.page { padding: 28px; max-width: 1180px; }
h1 { font-size: 26px; line-height: 1.25; margin: 0 0 20px; letter-spacing: -.01em; }
h2 { font-size: 17px; margin: 0 0 12px; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.page-head h1 { margin: 0; } .page-head p { margin: 4px 0 0; color: var(--mut); }

/* ---- componentes ---- */
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r2); padding: 20px; }
.card + .card { margin-top: 16px; }
.grid > .card + .card, .plans > .plan { margin-top: 0; }
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.kpis { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.kpi .label { color: var(--mut); font-size: 13px; } .kpi .value { font-size: 26px; font-weight: 700; margin-top: 4px; font-variant-numeric: tabular-nums; }
.kpi .hint { color: var(--mut2); font-size: 12px; margin-top: 2px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 40px; padding: 8px 16px; border-radius: 10px; border: 1px solid var(--g); background: var(--g); color: #04130E; font-weight: 700; cursor: pointer; text-decoration: none; transition: filter .15s, background .15s; white-space: nowrap; }
.btn:hover { filter: brightness(1.08); }
.btn:disabled, .btn[aria-busy="true"] { opacity: .55; cursor: default; }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line2); }
.btn.ghost:hover { background: var(--panel2); }
.btn.danger { background: transparent; color: var(--bad); border-color: rgba(242, 103, 106, .45); }
.btn.danger:hover { background: var(--bad-soft); }
.btn.sm { min-height: 34px; padding: 6px 12px; font-size: 13px; }
.icon-btn { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid transparent; background: transparent; color: var(--mut); cursor: pointer; }
.icon-btn:hover { background: var(--panel2); color: var(--text); }
.bar { height: 8px; border-radius: 999px; background: var(--panel2); overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--g); border-radius: 999px; transition: width .3s ease-out; }
.bar.warn > i { background: var(--warn); } .bar.bad > i { background: var(--bad); }
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.row.between { justify-content: space-between; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.banner { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: var(--r2); border: 1px solid var(--g-line); background: linear-gradient(180deg, rgba(25, 179, 143, .10), rgba(25, 179, 143, .04)); margin-bottom: 20px; }
.banner.warn { border-color: rgba(245, 181, 68, .35); background: var(--warn-soft); }
.banner.bad { border-color: rgba(242, 103, 106, .35); background: var(--bad-soft); }
.banner .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--g-soft); color: var(--g); flex: none; }
.banner.warn .ico { background: var(--warn-soft); color: var(--warn); } .banner.bad .ico { background: var(--bad-soft); color: var(--bad); }
.banner h3 { margin: 0 0 4px; font-size: 16px; } .banner p { margin: 0 0 10px; color: var(--mut); }
.banner p:last-child { margin-bottom: 0; }
.check { display: flex; gap: 10px; align-items: center; padding: 8px 0; }
.check .dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line2); display: grid; place-items: center; flex: none; }
.check.done .dot { background: var(--g); border-color: var(--g); color: #04130E; }
.check.done span { color: var(--mut); text-decoration: line-through; }
.empty { text-align: center; padding: 40px 16px; color: var(--mut); }
.empty b { display: block; color: var(--text); margin-bottom: 4px; }

/* ---- tabelas ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r2); background: var(--panel); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: start; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { color: var(--mut); font-weight: 600; font-size: 13px; white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, .015); }
td .sub { color: var(--mut); font-size: 13px; }
td.num, td .num { white-space: nowrap; }
.page-head select { width: auto; min-width: 180px; }
.pager { display: flex; align-items: center; justify-content: flex-end; gap: 8px; padding: 12px 0 0; color: var(--mut); font-size: 13px; }

/* ---- formulários ---- */
label.field { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; }
label.field .help { font-weight: 400; color: var(--mut); font-size: 13px; }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search], select, textarea {
  min-height: 44px; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line2); background: var(--panel2); color: var(--text); width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--g); outline-offset: 0; border-color: transparent; }
.switch { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.switch:last-child { border-bottom: 0; }
.switch .txt b { display: block; font-weight: 600; } .switch .txt span { color: var(--mut); font-size: 13px; }
.toggle { position: relative; width: 44px; height: 26px; flex: none; }
.toggle input { opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; position: absolute; inset: 0; z-index: 1; }
.toggle i { position: absolute; inset: 0; border-radius: 999px; background: var(--line2); transition: background .15s; }
.toggle i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .15s; }
.toggle input:checked + i { background: var(--g); } .toggle input:checked + i::after { transform: translateX(18px); }
.toggle input:disabled { cursor: not-allowed; } .toggle input:disabled + i { opacity: .55; }
.switch .txt a.small { display: inline-block; margin-top: 4px; font-weight: 600; }
[dir="rtl"] .toggle i::after { left: auto; right: 3px; } [dir="rtl"] .toggle input:checked + i::after { transform: translateX(-18px); }
.toggle input:focus-visible + i { outline: 2px solid var(--g); outline-offset: 2px; }
.seg { display: inline-flex; border: 1px solid var(--line2); border-radius: 10px; overflow: hidden; }
.seg button { border: 0; background: transparent; padding: 8px 14px; min-height: 40px; cursor: pointer; color: var(--mut); font-weight: 600; }
.seg button[aria-pressed="true"] { background: var(--g-soft); color: var(--g); }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 16px; overflow-x: auto; }
.tabs button { border: 0; background: transparent; padding: 10px 14px; min-height: 44px; color: var(--mut); font-weight: 600; cursor: pointer; border-bottom: 2px solid transparent; white-space: nowrap; }
.tabs button[aria-selected="true"] { color: var(--text); border-bottom-color: var(--g); }
.error { color: var(--bad); font-size: 13px; margin: 6px 0 0; }

/* ---- modal ---- */
.modal { position: fixed; inset: 0; background: rgba(0, 0, 0, .6); display: grid; place-items: center; padding: 16px; z-index: 50; animation: fade .15s ease-out; }
.modal-box { background: var(--panel); border: 1px solid var(--line2); border-radius: var(--r2); width: min(520px, 100%); max-height: calc(100dvh - 32px); overflow: auto; padding: 24px; animation: rise .2s ease-out; }
.modal-box h2 { font-size: 19px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; flex-wrap: wrap; }
@keyframes fade { from { opacity: 0; } } @keyframes rise { from { opacity: 0; transform: translateY(8px) scale(.98); } }
.qr { background: #fff; padding: 14px; border-radius: 12px; width: 260px; height: 260px; margin: 12px auto; display: grid; place-items: center; }
.qr svg, .qr img { width: 100%; height: 100%; }
.code { font-size: 32px; font-weight: 800; letter-spacing: .12em; text-align: center; padding: 14px; border-radius: 12px; background: var(--panel2); border: 1px dashed var(--line2); font-variant-numeric: tabular-nums; margin: 12px 0; }
.steps-list { margin: 8px 0 0; padding-inline-start: 20px; color: var(--mut); } .steps-list li { margin: 4px 0; }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--panel2); border: 1px solid var(--line2); padding: 12px 18px; border-radius: 12px; z-index: 60; box-shadow: 0 10px 30px rgba(0, 0, 0, .4); animation: rise .2s ease-out; }
.spinner { width: 18px; height: 18px; border: 2px solid var(--line2); border-top-color: var(--g); border-radius: 50%; animation: spin .8s linear infinite; display: inline-block; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton { background: linear-gradient(90deg, var(--panel) 25%, var(--panel2) 50%, var(--panel) 75%); background-size: 200% 100%; animation: shimmer 1.2s infinite; border-radius: var(--r); min-height: 90px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---- gráfico ---- */
.chart { width: 100%; height: 180px; }
.chart rect.b { fill: var(--g); } .chart rect.b:hover { fill: #2fd1aa; }
.chart text { fill: var(--mut2); font-size: 11px; } .chart line { stroke: var(--line); }

/* ---- planos ---- */
.plans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r2); padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.plan.featured { border-color: var(--g-line); box-shadow: 0 0 0 1px var(--g-line) inset; }
.plan.current { border-color: var(--g); }
.plan h3 { margin: 0; font-size: 17px; } .plan .price { font-size: 26px; font-weight: 800; font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 14px; color: var(--mut); font-weight: 500; }
.plan ul { margin: 0; padding-inline-start: 18px; color: var(--mut); font-size: 14px; flex: 1; } .plan li { margin: 3px 0; }

/* ---- login ---- */
.login { min-height: 100dvh; display: grid; place-items: center; gap: 48px; padding: 24px; background: radial-gradient(900px 500px at 30% -10%, rgba(25, 179, 143, .14), transparent), radial-gradient(700px 400px at 90% 110%, rgba(25, 179, 143, .08), transparent); }
.login:not([hidden]) { display: grid; }
.login-box { width: min(420px, 100%); background: var(--panel); border: 1px solid var(--line); border-radius: 20px; padding: 28px; text-align: center; box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .8); animation: rise .35s ease-out; }
.login-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.lang-pick select { min-height: 36px; padding: 6px 10px; width: auto; font-size: 13px; border-radius: 999px; }
.top .lang-pick select { max-width: 150px; }
.or { margin: 6px 0; display: flex; align-items: center; gap: 10px; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--line2); }
.login-art { display: none; max-width: 440px; }
.login-art h2 { font-size: 34px; line-height: 1.15; letter-spacing: -.02em; margin: 26px 0 18px; }
.la-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; color: var(--mut); }
.la-list li { display: flex; gap: 12px; align-items: center; }
.la-list svg.i { color: var(--g); width: 22px; height: 22px; }
.la-chat { background: #0B141A; border: 1px solid var(--line); border-radius: 18px; padding: 16px; display: grid; gap: 10px; }
.la-audio { display: flex; align-items: center; gap: 10px; background: #1F2C33; border-radius: 12px; padding: 10px 12px; max-width: 280px; }
.la-play { width: 30px; height: 30px; border-radius: 50%; background: var(--g); display: grid; place-items: center; flex: none; }
.la-play svg { width: 13px; height: 13px; fill: #04130E; }
.la-wave { display: flex; gap: 3px; align-items: center; height: 24px; flex: 1; }
.la-wave i { width: 3px; border-radius: 2px; background: var(--g); height: 40%; animation: wv 1.1s ease-in-out infinite; transform-origin: center; }
.la-wave i:nth-child(3n) { height: 90%; animation-delay: -.3s; } .la-wave i:nth-child(4n) { height: 65%; animation-delay: -.6s; } .la-wave i:nth-child(5n) { height: 30%; animation-delay: -.9s; }
@keyframes wv { 50% { transform: scaleY(.4); } }
.la-dur { font-size: 12px; color: var(--mut); }
.la-text { background: #005C4B; border-radius: 12px; padding: 10px 12px; margin-inline-start: 36px; animation: rise .6s .4s ease-out both; }
.la-text b { font-size: 12px; color: #9EE8D2; } .la-text p { margin: 4px 0 0; font-size: 14px; color: #E9EDEF; }
.la-sum { opacity: .8; font-size: 13px !important; }
.la-fine { color: var(--mut2); font-size: 13px; margin: 14px 0 0; }
@media (min-width: 980px) { .login { grid-template-columns: minmax(0, 440px) 420px; justify-content: center; } .login-art { display: block; } }
.login-box h1 { font-size: 22px; margin: 0 0 6px; } .login-box p { color: var(--mut); margin: 0 0 22px; }
.login-box .providers { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.provider { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; border-radius: 10px; border: 1px solid var(--line2); background: var(--panel2); color: var(--text); font-weight: 600; cursor: pointer; }
.provider:hover { border-color: var(--g-line); }
.provider.apple { background: #fff; color: #000; border-color: #fff; }
.provider.wa { background: #1DA851; border-color: #1DA851; color: #fff; }
.provider.google { background: #fff; color: #1f1f1f; border-color: #dadce0; }
.provider.google:hover { background: #f8faff; border-color: #c6d6f5; }
.provider.google svg.i { width: 20px; height: 20px; }
@media (max-width: 480px) { .login { padding: 16px; } .login-box { padding: 24px 18px; } }
.legal { margin-top: 18px; font-size: 12px; color: var(--mut2); }

/* ---- celular ---- */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .side { position: fixed; inset-block: 0; inset-inline-start: 0; width: min(86vw, 300px); transform: translateX(-100%); transition: transform .2s ease-out; z-index: 40; }
  [dir="rtl"] .side { transform: translateX(100%); }
  .shell.open .side { transform: none; box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5); }
  .top .menu-btn { display: inline-grid; }
  .top { padding: 12px 16px; } .page { padding: 20px 16px; }
  h1 { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ---- entrada das páginas ---- */
.page.in > * { animation: rise .3s ease-out both; }
.page.in > *:nth-child(2) { animation-delay: .04s; } .page.in > *:nth-child(3) { animation-delay: .08s; } .page.in > *:nth-child(4) { animation-delay: .12s; }
.chart rect.b { transform-box: fill-box; transform-origin: bottom; animation: grow .5s ease-out both; animation-delay: calc(var(--i, 0) * 12ms); }
@keyframes grow { from { transform: scaleY(0); } }
.card.feature { background: linear-gradient(160deg, rgba(25, 179, 143, .10), var(--panel) 60%); border-color: var(--g-line); }
.empty-art { width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 18px; display: grid; place-items: center; background: var(--g-soft); color: var(--g); }
.empty-art svg.i { width: 30px; height: 30px; }

/* ---- resumo dos grupos ---- */
.glist { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 2px; max-height: 520px; overflow: auto; }
.gitem { display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-radius: 10px; min-height: 52px; }
.gitem:hover { background: var(--panel2); }
.gopt { display: flex; flex-direction: column; align-items: center; gap: 3px; flex: none; min-width: 56px; cursor: pointer; } .gopt small { color: var(--mut); font-size: 11px; white-space: nowrap; }
.gname { min-width: 0; flex: 1; } .gname b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .gname span { color: var(--mut); font-size: 13px; }
.packs .plan .price { font-size: 24px; }
.digest { padding: 0; overflow: hidden; }
.dg-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; background: transparent; border: 0; cursor: pointer; text-align: start; min-height: 52px; }
.dg-head::after { content: ""; width: 10px; height: 10px; border-inline-end: 2px solid var(--mut); border-bottom: 2px solid var(--mut); transform: rotate(45deg); transition: transform .2s; flex: none; }
.digest.open .dg-head::after { transform: rotate(-135deg); }
.dg-body { display: none; padding: 0 20px 16px; }
.digest.open .dg-body { display: block; animation: rise .25s ease-out; }
.dg { border-top: 1px solid var(--line); padding: 12px 0; } .dg ul { margin: 6px 0; padding-inline-start: 18px; color: var(--mut); } .dg li { margin: 4px 0; }
.dg .t { display: inline-block; font-size: 12px; font-weight: 700; background: var(--panel2); border: 1px solid var(--line2); border-radius: 6px; padding: 0 6px; margin-inline-end: 4px; color: var(--g); font-variant-numeric: tabular-nums; }
.dg p { margin: 4px 0; }
.slots { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 12px; }
.slots i { width: 14px; height: 14px; border-radius: 4px; background: var(--panel2); border: 1px solid var(--line2); transition: background .2s, transform .2s; }
.slots i.on { background: var(--g); border-color: var(--g); transform: scale(1.05); }

/* ---- cadastro ---- */
.seg.full { display: flex; width: 100%; } .seg.full button { flex: 1; }
.pw { position: relative; display: block; }
.pw input { padding-inline-end: 48px; }
.pw .icon-btn { position: absolute; inset-inline-end: 2px; top: 2px; }
.linkish { background: none; border: 0; color: var(--g); cursor: pointer; font-weight: 600; padding: 6px; min-height: 36px; align-self: center; }
.linkish:hover { text-decoration: underline; }
.me .who[role="button"] { cursor: pointer; border-radius: 8px; padding: 2px 4px; }
.me .who[role="button"]:hover { background: var(--panel2); }
.login-box h3 { font-size: 17px; }

h1, h2, h3, .login-art h2 { text-wrap: balance; }
p, li, .help, .muted { text-wrap: pretty; }

/* Assinatura: caixinha do resumo dos grupos e plano vindo da página de vendas */
.addon { margin-bottom: 16px; border-color: var(--g-line); }
.addon-check { display: flex; align-items: center; gap: 10px; cursor: pointer; min-height: 32px; }
.addon-check input { width: 20px; height: 20px; accent-color: var(--g); }
.seg.full button { min-width: 0; white-space: normal; }
.plan.picked { border-color: var(--g); box-shadow: 0 0 0 2px var(--g-line); }
