/* ═══════════════════════════════════════════════════════════════════════
   ESAV91 APP v4 — shell.css
   Extiende app-theme.css con el chrome de la app completa (status bar, tab bar,
   appbar, sheets, cards de pantallas). NO redefine tokens; los reusa.
   Colores fieles a los specs Flutter (dashboard + soporte + gastos).
   ═══════════════════════════════════════════════════════════════════════ */

/* ── status bar simulada ── */
.statusbar {
  flex: 0 0 auto; height: 30px; padding: 6px 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--text); background: var(--bg);
}
.statusbar__time { font-weight: 700; }
.statusbar__ico { font-size: 11px; letter-spacing: 1px; color: var(--muted); }

/* ── área de pantalla — ÚNICO scroll ── */
.appscreen {
  flex: 1 1 auto; overflow-y: auto; overflow-x: hidden;
  position: relative; background: var(--bg);
}
.appscreen::-webkit-scrollbar { width: 6px; }
.appscreen::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }

/* ── bottom tab bar (fiel: 66px, indicador dorado) ── */
.tabbar {
  flex: 0 0 auto; height: 66px; display: flex;
  border-top: 1px solid var(--line); background: var(--panel);
}
.tabbar__b {
  flex: 1; border: none; background: transparent; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  cursor: pointer; font-family: var(--font); position: relative; padding: 6px 0;
}
.tabbar__ic { font-size: 19px; line-height: 1; }
.tabbar__lbl { font-size: 10px; font-weight: 800; }
.tabbar__b.on { color: var(--warn); }
.tabbar__b.on::before {
  content: ''; position: absolute; top: 6px; width: 46px; height: 30px;
  background: rgba(245,158,11,.14); border-radius: 999px; z-index: -1;
}
.tabbar__more .tabbar__badge {
  position: absolute; top: 6px; right: 22%; min-width: 16px; height: 16px;
  background: var(--error); color: #fff; border: 1.5px solid var(--panel);
  border-radius: 999px; font-size: 9px; font-weight: 900; line-height: 13px; text-align: center; padding: 0 3px;
}

/* ── appbar de pantalla ── */
.ab { padding: 12px 14px 8px; border-bottom: 1px solid var(--line); background: var(--panel); flex: 0 0 auto; }
.ab__row { display: flex; align-items: center; gap: 8px; }
.ab__back { border: none; background: transparent; color: var(--text); font-size: 26px; line-height: 1;
  cursor: pointer; width: 30px; height: 30px; }
.ab__lead { width: 6px; }
.ab__titlewrap { flex: 1; min-width: 0; }
.ab__title { font-size: 16px; font-weight: 900; color: var(--text); }
.ab__sub { font-size: 11px; color: var(--muted); margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ab__acts { display: flex; gap: 4px; }
.ab__act { border: none; background: transparent; color: var(--muted); cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px; font-size: 13px; padding: 6px; border-radius: var(--r-sm); }
.ab__act:hover { background: var(--panel-2); }
.ab__ic { font-size: 18px; }
.ab__lbl { font-size: 12px; font-weight: 700; }

/* ── contenido de pantalla (padding + espacio para FAB) ── */
.pad { padding: 12px 16px 96px; }

/* ── section title ── */
.sec { margin: 6px 0 10px; }
.sec__t { font-size: 18px; font-weight: 900; color: var(--text); }
.sec__s { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }

/* ── chip info variant (no está en app-theme) ── */
.chip--info { color: var(--info); border-color: #17384a; background: #08222e; }

/* ── kpi strip (soporte) ── */
.kpistrip { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 10px; }
.kpistrip__it { flex: 0 0 auto; min-width: 74px; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 8px 10px; text-align: center; }
.kpistrip__v { font-size: 18px; font-weight: 900; }
.kpistrip__k { font-size: 10.5px; color: var(--muted); margin-top: 2px; }

/* ── kpi grid 3 ── */
.kpi3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.kpi3__it { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 12px; min-height: 72px; }
.kpi3__v { font-size: 24px; font-weight: 900; }
.kpi3__k { font-size: 9px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .3px; margin-top: 4px; }

/* ── ticket card ── */
.ticketcard { display: flex; background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; margin-bottom: 10px; cursor: pointer; }
.ticketcard--primary { border-radius: 18px; }
.ticketcard__accent { flex: 0 0 4px; }
.ticketcard__body { flex: 1; padding: 12px 14px; min-width: 0; }
.ticketcard__row1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ticketcard__atm { font-family: var(--mono); font-weight: 900; font-size: 18px; color: var(--warn); }
.ticketcard__atm--lg { font-size: 26px; }
.ticketcard__num { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 1px; }
.ticketcard__bank { font-size: 13px; font-weight: 800; color: var(--text); margin-top: 4px; }
.ticketcard__fail { font-size: 13px; font-weight: 700; color: var(--text); margin-top: 3px; line-height: 1.25; }
.ticketcard__info { margin-top: 8px; display: flex; flex-direction: column; gap: 3px; }
.ticketcard__badges { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.ticketcard__actions { margin-top: 10px; display: flex; gap: 8px; }
.ticketcard__actions .btn { flex: 1; }

/* ── info line ── */
.infoline { display: flex; align-items: center; gap: 6px; }
.infoline__ic { font-size: 13px; }
.infoline__t { font-size: 12px; color: var(--muted); }

/* ── list row ── */
.listrow { display: flex; align-items: center; gap: 10px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px; margin-bottom: 8px; cursor: pointer; }
.listrow__ic { font-size: 20px; }
.listrow__mid { flex: 1; min-width: 0; }
.listrow__t { font-size: 14px; font-weight: 800; color: var(--text); }
.listrow__s { font-size: 12px; color: var(--muted); margin-top: 2px; }
.listrow__tr { font-size: 12px; color: var(--muted); }
.listrow__chev { font-size: 20px; color: var(--muted); }

/* ── FAB ── */
.fab { position: absolute; right: 16px; bottom: 82px; z-index: 20;
  background: var(--gold); color: #080B10; border: none; border-radius: var(--r-pill);
  padding: 12px 18px; font-family: var(--font); font-weight: 800; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; box-shadow: var(--shadow); }
.fab__ic { font-size: 18px; }

/* ── notice ── */
.notice { display: flex; gap: 8px; align-items: flex-start; border-radius: 10px; padding: 10px 12px; margin-bottom: 10px; }
.notice__ic { font-size: 16px; }
.notice__t { font-size: 12px; line-height: 1.35; color: var(--text); }
.notice--info { background: rgba(56,189,248,.10); border: 1px solid rgba(56,189,248,.45); }
.notice--warn { background: rgba(245,158,11,.10); border: 1px solid rgba(245,158,11,.45); }
.notice--red  { background: rgba(239,68,68,.10);  border: 1px solid rgba(239,68,68,.45); }
.notice--ok   { background: rgba(34,197,94,.10);  border: 1px solid rgba(34,197,94,.45); }

/* ── empty state ── */
.empty { text-align: center; padding: 30px 22px; }
.empty__ic { font-size: 44px; color: var(--green); }
.empty__t { font-size: 18px; font-weight: 900; margin-top: 10px; }
.empty__m { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ── kv row ── */
.kvrow { display: flex; gap: 12px; padding: 6px 0; border-bottom: 1px solid rgba(41,50,65,.5); }
.kvrow__k { flex: 0 0 118px; font-size: 12.5px; color: var(--muted); }
.kvrow__v { flex: 1; font-size: 13.5px; color: var(--text); }

/* ── segmented bar ── */
.segbar { display: flex; gap: 8px; margin-bottom: 12px; }
.segbar__b { border: 1px solid var(--line); background: transparent; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r-pill); font-family: var(--font); font-weight: 700; font-size: 12.5px; cursor: pointer; }
.segbar__b.on { background: var(--panel-2); border-color: var(--gold); color: var(--text); }
.segbar__badge { background: rgba(56,189,248,.18); color: var(--info); border-radius: 999px; padding: 0 6px; font-size: 11px; font-weight: 800; }
.segbar__b.on .segbar__badge { background: rgba(228,185,104,.18); color: var(--gold); }

/* ── bottom sheet (LEGACY H.bottomSheet · scoped bajo .sheet-backdrop para no
      chocar con el .sheet del hub de Acción Cards §2, que es standalone) ── */
.sheet-backdrop { position: absolute; inset: 0; z-index: 55; background: rgba(5,7,11,.6);
  display: flex; align-items: flex-end; opacity: 0; transition: opacity .2s; }
.sheet-backdrop.open { opacity: 1; }
.sheet-backdrop .sheet { position: static; width: 100%; max-height: 82%; background: var(--panel);
  border-radius: 16px 16px 0 0; border-top: 1px solid var(--line); box-shadow: none;
  display: flex; flex-direction: column; transform: translateY(100%); transition: transform .22s; }
.sheet-backdrop.open .sheet { transform: translateY(0); }
.sheet-backdrop .sheet__grip { width: 40px; height: 4px; background: var(--line); border-radius: 2px; margin: 10px auto 4px; }
.sheet-backdrop .sheet__hd { padding: 6px 16px 8px; border-bottom: none; }
.sheet__t { font-size: 18px; font-weight: 900; color: var(--text); }
.sheet__s { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.35; }
.sheet-backdrop .sheet__body { padding: 6px 16px calc(18px + env(safe-area-inset-bottom)); overflow-y: auto; }

/* ── menú Más ── */
.more { display: flex; flex-direction: column; gap: 8px; }
.more__it { display: flex; align-items: center; gap: 12px; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 12px; padding: 12px; cursor: pointer; }
.more__ic { font-size: 22px; }
.more__mid { flex: 1; min-width: 0; }
.more__t { font-size: 14px; font-weight: 800; color: var(--text); }
.more__s { font-size: 12px; color: var(--muted); margin-top: 2px; }
.more__tr { background: var(--error); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 900; padding: 2px 7px; }

/* ── field header (dashboard _FieldHeader) ── */
.fhdr { background: var(--panel); border-bottom: 1px solid var(--line); padding: 12px 16px; }
.fhdr__row { display: flex; align-items: center; gap: 10px; }
.fhdr__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--warn);
  color: #141005; font-weight: 900; font-size: 14px; font-family: var(--mono);
  display: flex; align-items: center; justify-content: center; border: 1.5px solid rgba(245,158,11,.7); }
.fhdr__id { flex: 1; min-width: 0; }
.fhdr__name { font-size: 15px; font-weight: 800; color: var(--text); }
.fhdr__meta { font-size: 11px; color: var(--muted); font-family: var(--mono); margin-top: 1px; }
.fhdr__online { display: inline-flex; align-items: center; gap: 5px; background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.45); border-radius: 999px; padding: 3px 9px; font-size: 10px; font-weight: 800; color: var(--green); }
.fhdr__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.fhdr__ic { border: none; background: transparent; color: var(--muted); font-size: 18px; cursor: pointer; padding: 4px; position: relative; }
.fhdr__badge { position: absolute; top: 0; right: 0; min-width: 15px; height: 15px; background: var(--error);
  color: #fff; border-radius: 999px; font-size: 9px; font-weight: 900; line-height: 15px; text-align: center; }
.fhdr__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

/* ── day strip ── */
.daystrip { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 12px; }
.daystrip__mo { flex: 0 0 auto; width: 58px; height: 64px; border-radius: 12px; background: var(--panel);
  border: 1px solid rgba(56,189,248,.55); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; cursor: pointer; }
.daystrip__moic { font-size: 18px; color: var(--info); }
.daystrip__molbl { font-size: 10px; font-weight: 900; color: var(--info); }
.daystrip__d { flex: 0 0 auto; width: 54px; height: 64px; border-radius: 12px; background: var(--panel);
  border: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; cursor: pointer; position: relative; }
.daystrip__d.on { background: var(--warn); border-color: var(--warn); }
.daystrip__dow { font-size: 10px; color: var(--muted); font-weight: 700; }
.daystrip__d.on .daystrip__dow { color: #141005; }
.daystrip__dn { font-size: 17px; font-weight: 900; color: var(--text); }
.daystrip__d.on .daystrip__dn { color: #141005; }
.daystrip__cnt { position: absolute; top: 4px; right: 5px; background: var(--green); color: #041; border-radius: 999px;
  font-size: 9px; font-weight: 900; padding: 0 4px; }
.daystrip__d.on .daystrip__cnt { background: #141005; color: var(--warn); }

/* ── chat bubbles ── */
.chat { display: flex; flex-direction: column; gap: 10px; }
.bub { max-width: 82%; padding: 10px 12px; border-radius: 12px; font-size: 13.5px; line-height: 1.3; }
.bub--sys { align-self: center; background: var(--panel-2); color: var(--muted); font-size: 11.5px; border-radius: 20px; }
.bub--me { align-self: flex-end; background: rgba(47,191,113,.12); border: 1px solid rgba(47,191,113,.35); border-bottom-right-radius: 4px; }
.bub--them { align-self: flex-start; background: rgba(61,139,253,.12); border: 1px solid rgba(61,139,253,.35); border-bottom-left-radius: 4px; }
.bub__author { font-size: 10.5px; font-weight: 600; color: var(--muted); margin-bottom: 3px; }
.bub__time { font-size: 10px; color: var(--muted); margin-top: 4px; text-align: right; }

/* ── composer ── */
.composer { display: flex; gap: 6px; align-items: center; border-top: 1px solid var(--line); padding: 10px 12px; background: var(--panel); }
.composer .input { border-radius: 22px; }
.composer__ic { border: none; background: transparent; color: var(--gold); font-size: 20px; cursor: pointer; padding: 4px; }

/* ── quick chips row ── */
.quickrow { display: flex; gap: 8px; overflow-x: auto; padding: 8px 0; }
.quickchip { flex: 0 0 auto; background: var(--panel-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-size: 11px; color: var(--muted); cursor: pointer; }

/* ── canvas firma ── */
.sigpad { width: 100%; height: 200px; background: #fff; border: 1px solid var(--line); border-radius: 14px; touch-action: none; }

/* ── stub V2 ── */
.stub { text-align: center; padding: 40px 24px; color: var(--muted); }
.stub__ic { font-size: 46px; opacity: .8; }
.stub__t { font-size: 17px; font-weight: 900; color: var(--text); margin-top: 12px; }
.stub__m { font-size: 12.5px; margin-top: 6px; line-height: 1.4; }
.stub__tag { display: inline-block; margin-top: 12px; background: var(--panel-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 12px; font-size: 11px; color: var(--gold); font-weight: 700; }

/* ── entrada (portada / login / role / lock) ── */
.entry { min-height: 100%; display: flex; flex-direction: column; padding: 26px; }
.entry__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 400px at 50% -5%, rgba(212,175,55,.14), transparent 60%); }
.wordmark { font-family: var(--mono); font-weight: 700; color: var(--gold-deep); text-align: center; }
.wordmark--xl { font-size: 40px; letter-spacing: 3.2px; }
.wordmark--md { font-size: 30px; letter-spacing: 2.6px; }
.wordmark--sm { font-size: 28px; letter-spacing: 2.4px; }
.entry__sub { text-align: center; color: var(--muted); font-size: 11px; letter-spacing: 3px; margin-top: 8px; }
.entry__pill { display: inline-block; margin: 14px auto 0; font-family: var(--mono); font-weight: 700; font-size: 10px;
  letter-spacing: .6px; color: var(--gold-deep); background: rgba(212,175,55,.12); border: 1px solid #A8862A; border-radius: 999px; padding: 5px 12px; }
.entry__note { text-align: center; color: #5C6B80; font-size: 10.5px; line-height: 1.5; margin-top: 14px; }
.entry__note .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 6px; }

/* rol card */
.rolecard { display: flex; align-items: center; gap: 14px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px; margin-bottom: 12px; cursor: pointer; }
.rolecard__ic { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.rolecard__mid { flex: 1; }
.rolecard__t { font-size: 15px; font-weight: 800; color: var(--text); }
.rolecard__s { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.3; }
.rolecard__chev { color: var(--muted); font-size: 22px; }

/* identity badge (role selector) */
.idbadge { display: flex; align-items: center; gap: 12px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 12px; margin: 14px 0; }
.idbadge__av { width: 44px; height: 44px; border-radius: 10px; background: var(--panel-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: var(--gold-deep); }
.idbadge__mid { flex: 1; }
.idbadge__n { font-size: 16px; font-weight: 800; color: var(--text); }
.idbadge__r { font-size: 12px; color: var(--muted); }
.idbadge__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

/* PIN pad */
.pin { display: flex; flex-direction: column; align-items: center; padding: 20px; }
.pin__dots { display: flex; gap: 18px; margin: 18px 0; }
.pin__dot { width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid var(--gold-deep); }
.pin__dot.on { background: var(--gold-deep); }
.pin__err { color: var(--error); font-size: 13px; height: 18px; }
.pinkeys { display: grid; grid-template-columns: repeat(3, 72px); gap: 12px; margin-top: 14px; }
.pinkey { height: 62px; background: var(--panel-2); border: none; border-radius: 14px; color: var(--text);
  font-size: 22px; font-weight: 700; cursor: pointer; font-family: var(--font); }
.pinkey--bk { color: var(--muted); }

/* signature row */
.sigrow { display: flex; align-items: center; gap: 10px; margin: 8px 0; }
.sigrow__ic { font-size: 18px; }
.sigrow__t { flex: 1; font-size: 13px; color: var(--text); }

/* ═══════════════════════════════════════════════════════════════════════
   ACCIÓN CARDS — Centro del ticket (hub) · patrón REAL sin wizard.
   Fuente de verdad: ACCION_CARDS_DISENO.md §2 (hex/bordes EXACTOS del app real).
   El detalle del ticket = hub: Estado actual (.opstate) + Siguiente avance
   (.nextcard) + grid de acciones (.actgrid/.actbtn), cada acción abre un sheet
   descartable (.sheet + .sheetdim). Cero botón amarillo "Iniciar atención".
   ═══════════════════════════════════════════════════════════════════════ */

/* colores semánticos reales (dashboard L22-32) */
:root{
  --ac-bg-app:#0B111A; --ac-bg-card:#131C2A; --ac-bg-alt:#111827; --ac-line:#243244;
  --ac-success:#22C55E; --ac-warning:#F59E0B; --ac-danger:#EF4444; --ac-info:#38BDF8; --ac-intel:#A78BFA; --ac-gold:#E4B968;
}
/* tarjeta "Estado actual" */
.opstate{background:var(--ac-bg-alt);border:1px solid var(--ac-line);border-radius:12px;padding:12px}
.opstate__k{color:#94A3B8;font-size:11px;font-weight:700;letter-spacing:.3px}
/* tarjeta "Siguiente avance" (acento por --tone) */
.nextcard{background:color-mix(in srgb,var(--tone) 8%,transparent);border:1px solid color-mix(in srgb,var(--tone) 55%,transparent);border-radius:14px;padding:12px}
.nextcard__k{color:#94A3B8;font-size:11px;font-weight:800;letter-spacing:.3px;text-transform:none}
.nextcard__btn{width:100%;margin-top:8px;background:var(--tone);color:#08121f;border:none;border-radius:10px;padding:13px;font-weight:800;font-size:14px;display:flex;align-items:center;justify-content:center;gap:8px;cursor:pointer}
.nextcard__desc{color:#94A3B8;font-size:12px;line-height:1.35;margin-top:8px}
/* grid de acciones */
.actgrid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}
.actbtn{display:flex;align-items:center;gap:8px;justify-content:center;background:var(--ac-bg-card);color:#F8FAFC;border:1px solid color-mix(in srgb,var(--tone) 65%,transparent);border-radius:10px;padding:12px 10px;font-size:13px;font-weight:600;cursor:pointer;text-align:center;transition:opacity .2s}
.actbtn .ic{color:var(--tone)}
.actbtn[data-done="1"]{border-color:color-mix(in srgb,var(--ac-success) 65%,transparent)}
.actbtn[data-done="1"] .ic{color:var(--ac-success)}
.actbtn[data-locked="1"]{opacity:.38;cursor:not-allowed;border-color:var(--ac-line)}
.actbtn[data-locked="1"] .ic{color:#94A3B8}
/* inline notice (borde de color) */
.inotice{display:flex;gap:8px;align-items:flex-start;background:color-mix(in srgb,var(--tone) 12%,transparent);border:1px solid color-mix(in srgb,var(--tone) 50%,transparent);border-radius:10px;padding:10px;font-size:12px;line-height:1.35;color:#F8FAFC}
.inotice .ic{color:var(--tone)}
/* action sheet frame */
.sheet{position:absolute;left:0;right:0;bottom:0;max-height:92%;display:flex;flex-direction:column;background:var(--ac-bg-card);border-top-left-radius:18px;border-top-right-radius:18px;box-shadow:0 -12px 40px rgba(0,0,0,.5);transform:translateY(100%);transition:transform .28s}
.sheet.open{transform:translateY(0)}
.sheet__grip{width:36px;height:4px;border-radius:999px;background:#334155;margin:10px auto 4px}
.sheet__hd{padding:4px 16px 10px;border-bottom:1px solid var(--ac-line)}
.sheet__title{font-size:16px;font-weight:800}
.sheet__sub{font-size:12px;color:#94A3B8;margin-top:2px;line-height:1.35}
.sheet__body{overflow-y:auto;padding:14px 16px calc(14px + env(safe-area-inset-bottom))}
.sheet__x{position:absolute;top:10px;right:12px;background:none;border:none;color:#94A3B8;font-size:18px;cursor:pointer}
.sheetdim{position:absolute;inset:0;background:rgba(3,7,11,.55);opacity:0;transition:opacity .25s;pointer-events:none}
.sheetdim.open{opacity:1;pointer-events:auto}
/* footer del sheet: "Guardar y volver" */
.sheet__ft{flex:0 0 auto;border-top:1px solid var(--ac-line);padding:12px 16px calc(12px + env(safe-area-inset-bottom));background:var(--ac-bg-card)}
.sheet__save{width:100%;background:var(--ac-gold);color:#08121f;border:none;border-radius:10px;padding:13px;font-weight:800;font-size:14px;cursor:pointer}
