  /* ============================================================
     LANDING — Zeca Gestão
     ============================================================ */
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--zg-paper); color: var(--zg-ink); font-family: var(--zg-font-body); }
  html { scroll-behavior: smooth; }
  a { color: inherit; }
  img, svg { display: block; max-width: 100%; }

  .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
  .container--wide { max-width: 1320px; }

  /* ---------- TYPE PRIMITIVES (cópia local p/ não depender só do colors_and_type) ---------- */
  .eye { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--zg-orange); display: inline-flex; align-items: center; gap: 10px; font-weight: 500; }
  .eye::before { content: ""; width: 22px; height: 2px; background: currentColor; }
  .eye--ink { color: var(--zg-ink-3); }
  .eye--paper { color: rgba(246,243,236,.7); }
  .eye--paper::before { background: var(--zg-orange); }

  .h-display { font-family: var(--zg-font-display); letter-spacing: -0.035em; line-height: 0.95; color: var(--zg-indigo); margin: 0; }
  .h-section { font-family: var(--zg-font-heading); font-weight: 700; font-size: 48px; line-height: 1.05; letter-spacing: -0.025em; color: var(--zg-indigo); margin: 0; max-width: 760px; }
  .h-section .orange { color: var(--zg-orange); }
  .h-section--paper { color: var(--zg-paper); }
  .lead { font-family: var(--zg-font-body); font-size: 18px; line-height: 1.55; color: var(--zg-ink-2); max-width: 560px; margin: 0; }
  .lead--paper { color: rgba(246,243,236,.75); }
  .mono { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); }

  /* ---------- BUTTONS ---------- */
  .btn { display:inline-flex; align-items:center; gap:8px; font-family:var(--zg-font-heading); font-weight:600; font-size:14px; letter-spacing:0.02em; padding:12px 22px; border-radius:9999px; border:1px solid transparent; cursor:pointer; transition: background 120ms var(--zg-ease), transform 120ms var(--zg-ease); text-decoration: none; color: inherit; white-space: nowrap; }
  .btn:active { transform: scale(0.98); }
  .btn-primary { background: var(--zg-orange); color:#fff; }
  .btn-primary:hover { background: var(--zg-orange-600); }
  .btn-primary:active { background: var(--zg-orange-700); }
  .btn-ghost   { background: transparent; color: var(--zg-indigo); border-color: var(--zg-border-strong); }
  .btn-ghost:hover { background: var(--zg-paper-2); }
  .btn-indigo  { background: var(--zg-indigo); color: var(--zg-paper); }
  .btn-indigo:hover { background: var(--zg-indigo-700); }
  .btn-on-dark { background: transparent; color: var(--zg-paper); border-color: rgba(246,243,236,.3); }
  .btn-on-dark:hover { background: rgba(246,243,236,.08); }
  .ic { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .ic-lg { width: 22px; height: 22px; }

  /* ============================================================
     HEADER
     ============================================================ */
  header { padding: 22px 0; border-bottom: 1px solid var(--zg-border); background: var(--zg-paper); position: sticky; top: 0; z-index: 50; }
  .hd { display: flex; align-items: center; justify-content: space-between; }
  .hd-nav { display: flex; gap: 28px; }
  .hd-nav a { font-family: var(--zg-font-body); font-weight: 500; font-size: 14px; color: var(--zg-ink-2); text-decoration: none; position: relative; padding: 4px 0; }
  .hd-nav a:hover { color: var(--zg-indigo); }
  .hd-nav a:hover::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--zg-orange); }
  .hd-cta { display: flex; gap: 12px; align-items: center; }
  .hd-mono { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); text-decoration: none; }
  .hd-mono:hover { color: var(--zg-indigo); }
  .logo { display: inline-flex; align-items: center; text-decoration: none; }
  .logo .wm { font-family: var(--zg-font-display); color: var(--zg-indigo); font-size: 28px; letter-spacing: -0.035em; line-height: 0.9; }
  .logo .bg { font-family: var(--zg-font-display); color: #fff; background: var(--zg-orange); padding: 3px 11px 5px; border-radius: 6px; font-size: 14px; margin-left: 8px; letter-spacing: -0.02em; line-height: 1; }
  /* Logo + tagline (dual-mode via body[data-tagline-pos]) */
  .logo-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; }
  .logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
  .logo .bg { margin-left: 0; }
  .logo-left { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; }
  .tagline { font-family: var(--zg-font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); line-height: 1; white-space: nowrap; }
  .tagline em { font-style: normal; color: var(--zg-orange); font-weight: 700; }
  /* Visibility — only one tagline shows at a time */
  .tagline.mode-under, .tagline.mode-full { display: none; }
  body[data-tagline-pos="full"] .tagline.mode-full {
    display: block;
    width: 100%;
    text-align: justify;
    text-align-last: justify;
    white-space: normal;
    padding: 1px 2px 0;
  }
  body[data-tagline-pos="under"] .logo { align-items: flex-start; }
  body[data-tagline-pos="under"] .logo .bg { margin-top: 4px; }
  body[data-tagline-pos="under"] .tagline.mode-under {
    display: inline-block;
    width: 0;
    overflow: visible;
    white-space: nowrap;
    padding-left: 1px;
    margin-top: 1px;
  }

  /* ============================================================
     HERO
     ============================================================ */
  .hero { padding: 72px 0 96px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
  .h1 { font-family: var(--zg-font-display); font-size: 84px; line-height: 0.95; letter-spacing: -0.035em; color: var(--zg-indigo); margin: 22px 0 0; }
  .h1 .badge { font-family: var(--zg-font-display); font-size: 52px; color: #fff; background: var(--zg-orange); padding: 4px 22px 8px; border-radius: 9999px; letter-spacing: -0.02em; line-height: 0.95; display: inline-block; }
  .lead--hero { font-size: 19px; margin: 28px 0 0; max-width: 540px; }
  .ctas { display: flex; gap: 14px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
  .ctas .small { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); }

  /* ----- HERO mockup: Kanban tátil ----- */
  .kanban {
    background: var(--zg-paper-2);
    border: 1px solid var(--zg-border);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(26,26,46,0.12), 0 1px 2px rgba(26,26,46,0.06);
    padding: 18px 16px 16px;
    position: relative;
  }
  .kanban::before { content:""; position:absolute; left:-14px; top:54px; bottom:54px; width: 14px; background: var(--zg-orange); border-radius: 4px 0 0 4px; }

  /* Top bar (page header) */
  .kanban-h { display:flex; justify-content:space-between; align-items:start; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--zg-border); }
  .kanban-h .ttl { font-family: var(--zg-font-heading); font-weight: 700; font-size: 16px; color: var(--zg-indigo); letter-spacing: -0.015em; display: block; }
  .kanban-h .ttl small { display: block; font-family: var(--zg-font-body); font-weight: 400; font-size: 11px; color: var(--zg-ink-3); margin-top: 4px; letter-spacing: 0; }
  .kanban-h .toolbar { display:flex; gap:6px; }
  .kanban-h .chip { font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); padding: 5px 9px; border-radius: 4px; background: var(--zg-white); border: 1px solid var(--zg-border); }
  .kanban-h .chip.on { background: var(--zg-indigo); color: var(--zg-paper); border-color: var(--zg-indigo); }
  .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--zg-success); box-shadow: 0 0 0 0 rgba(31,138,91,.4); animation: pulse 1.8s ease-out infinite; display: inline-block; margin-right: 5px; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(31,138,91,.4);} 70%{box-shadow:0 0 0 6px rgba(31,138,91,0);} 100%{box-shadow:0 0 0 0 rgba(31,138,91,0);} }

  /* Columns */
  .k-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .k-col { background: transparent; }
  .k-col-h { display: flex; align-items: center; gap: 8px; padding: 0 0 8px; border-top: 3px solid; border-top-color: var(--col); margin-top: 2px; padding-top: 10px; }
  .k-col-h .lb { font-family: var(--zg-font-heading); font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); }
  .k-col-h .ct { font-family: var(--zg-font-mono); font-size: 10px; color: var(--zg-ink-2); background: var(--zg-white); border: 1px solid var(--zg-border); padding: 1px 7px; border-radius: 9999px; font-weight: 600; }
  .k-col-h .ping { margin-left: auto; font-family: var(--zg-font-mono); font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--col); display: inline-flex; align-items: center; gap: 5px; }
  .k-col-h .ping::before { content:""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .k-col.recebidos { --col: #2A6FDB; }
  .k-col.preparo   { --col: #C98A00; }
  .k-col.prontos   { --col: #1F8A5B; }

  /* Card */
  .k-card { background: var(--zg-white); border: 1px solid var(--zg-border); border-radius: 6px; padding: 10px 11px 11px; margin-bottom: 8px; transition: transform 120ms var(--zg-ease), box-shadow 120ms var(--zg-ease); position: relative; }
  .k-card:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,26,46,.08); }
  .k-card.late { border-left: 3px solid var(--zg-orange); padding-left: 9px; }
  .k-card .top { display:flex; justify-content:space-between; align-items:center; }
  .k-card .id { font-family: var(--zg-font-mono); font-size: 10px; color: var(--zg-ink-3); font-weight: 500; }
  .k-card .nm { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-indigo); margin-top: 4px; line-height: 1.15; letter-spacing: -0.005em; }
  .k-card .items { font-family: var(--zg-font-body); font-size: 10.5px; color: var(--zg-ink-3); margin-top: 5px; line-height: 1.35; display:flex; gap: 6px; align-items: baseline; }
  .k-card .items b { font-weight: 600; color: var(--zg-ink-2); flex-shrink: 0; }
  .k-card .items span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .k-card .row2 { display:flex; justify-content: space-between; align-items: baseline; margin-top: 7px; }
  .k-card .v  { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-indigo); }
  .k-card .tm { font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--zg-ink-3); }
  .k-card .tm.late { color: var(--zg-orange); font-weight: 700; }
  .k-card .tm.late::before { content: "⚠ "; }
  .k-card .act { display:block; text-align:center; font-family: var(--zg-font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.02em; padding: 7px 10px; border-radius: 4px; margin-top: 9px; background: var(--zg-orange); color: #fff; }
  .k-card .act.ghost { background: transparent; color: var(--zg-indigo); border: 1px solid var(--zg-border-strong); }
  .k-card .assignee { display:flex; align-items:center; gap: 6px; margin-top: 8px; padding-top: 8px; border-top: 1px dashed var(--zg-border-paper); font-size: 10.5px; color: var(--zg-ink-2); font-weight: 500; }
  .k-card .avt { width: 18px; height: 18px; background: var(--zg-indigo); color: var(--zg-paper); border-radius: 50%; display: grid; place-items: center; font-family: var(--zg-font-mono); font-size: 8px; font-weight: 700; }
  .k-card .assignee .online { margin-left: auto; width: 6px; height: 6px; background: var(--zg-success); border-radius: 50%; }

  /* Channel pills (matching real system colors) */
  .k-tag { display: inline-flex; align-items: center; gap: 4px; font-family: var(--zg-font-mono); font-size: 8.5px; font-weight: 600; letter-spacing: 0.08em; padding: 2px 7px 3px; border-radius: 9999px; white-space: nowrap; }
  .k-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .k-tag em { font-style: normal; opacity: 0.55; font-weight: 500; font-size: 7.5px; letter-spacing: 0.1em; margin-left: 2px; text-transform: uppercase; }
  .k-tag.zed { background: #FCE7F3; color: #BE185D; }                /* Zé Delivery — pink */
  .k-tag.ifd { background: #FEE2E2; color: #DC2626; }                /* iFood — red */
  .k-tag.dpr { background: #CCFBF1; color: #0F766E; }                /* Delivery próprio — teal */
  .k-tag.pdv { background: #E0E7FF; color: #4338CA; }                /* PDV+entrega — indigo */
  .k-tag.bal { background: #DBEAFE; color: #1D4ED8; }                /* PDV balcão — blue */

  /* Kanban "full" — 5 colunas para Pilar 01 (versão completa) */
  .kanban.full .k-cols { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; }
  .k-col.rota      { --col: var(--zg-orange); }
  .k-col.entregues { --col: #6A6A78; }
  .k-col-h .more { margin-left: auto; color: var(--col); display: inline-flex; }
  .k-col-h .more svg { width: 11px; height: 11px; }
  .k-card.entregue { background: var(--zg-paper); border-color: var(--zg-border-paper); }
  .k-card.entregue .nm { color: var(--zg-ink-2); }
  .k-card .pcard-foot { display: flex; align-items: center; gap: 7px; margin-top: 9px; padding-top: 8px; border-top: 1px dashed var(--zg-border-paper); font-family: var(--zg-font-body); font-size: 10.5px; color: var(--zg-ink-2); font-weight: 500; }
  .k-card .pcard-foot.delivered { color: #1F8A5B; font-weight: 600; }
  .k-card .pcard-foot.delivered svg { color: #1F8A5B; }
  .k-card .pcard-foot .avt { width: 18px; height: 18px; background: var(--zg-indigo); color: var(--zg-paper); border-radius: 50%; display: grid; place-items: center; font-family: var(--zg-font-mono); font-size: 8px; font-weight: 700; margin-left: auto; }
  .k-card .pcard-foot .online { margin-left: auto; width: 6px; height: 6px; background: var(--zg-success); border-radius: 50%; }

    /* ----- HERO mockup: Metrics variant (alternativa toggle) ----- */
  .metrics { display: none; }

  /* alternative hero modes */
  body[data-hero="metrics"] .kanban { display: none; }
  body[data-hero="metrics"] .metrics { display: block; }

  /* ============================================================
     SOCIAL PROOF STRIP
     ============================================================ */
  .strip { padding: 22px 0; border-top: 1px solid var(--zg-border); border-bottom: 1px solid var(--zg-border); background: var(--zg-paper-2); }
  .strip-grid { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
  .strip-grid .lb { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--zg-ink-3); }
  .clients { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
  .clients span { font-family: var(--zg-font-heading); font-weight: 700; font-size: 16px; color: var(--zg-ink-3); letter-spacing: -0.01em; }

  /* ============================================================
     PROBLEM (fundo indigo)
     ============================================================ */
  .problem { background: var(--zg-indigo); color: var(--zg-paper); padding: 96px 0 104px; }
  .problem-hd { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 56px; }
  .problem-hd p { font-family: var(--zg-font-body); font-size: 16px; color: rgba(246,243,236,.6); max-width: 360px; margin: 0; line-height: 1.55; }
  .problems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .pcard { background: rgba(246,243,236,.04); border: 1px solid rgba(246,243,236,.10); border-radius: 4px; padding: 28px 28px 32px; position: relative; }
  .pcard .nm { font-family: var(--zg-font-display); font-size: 56px; color: var(--zg-orange); line-height: 1; letter-spacing: -0.025em; margin-bottom: 18px; display: block; }
  .pcard h3 { font-family: var(--zg-font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--zg-paper); margin: 0 0 12px; line-height: 1.2; }
  .pcard p  { font-family: var(--zg-font-body); font-size: 14px; line-height: 1.55; color: rgba(246,243,236,.7); margin: 0; }
  .pcard .tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,243,236,.4); margin-top: 22px; padding-top: 16px; border-top: 1px dashed rgba(246,243,236,.15); width: 100%; }

  /* ============================================================
     SOLUTION (4 pilares)
     ============================================================ */
  .section { padding: 104px 0; }
  .section-hd { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; margin-bottom: 64px; }
  .section-hd p { font-family: var(--zg-font-body); font-size: 16px; color: var(--zg-ink-3); max-width: 380px; margin: 0; line-height: 1.55; }

  .pillar { display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center; padding: 64px 0; border-top: 1px solid var(--zg-border); }
  .pillar:first-of-type { border-top: none; padding-top: 0; }
  .pillar.reverse { direction: rtl; }
  .pillar.reverse > * { direction: ltr; }
  .pillar-no { font-family: var(--zg-font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--zg-orange); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
  .pillar-no::before { content: ""; width: 24px; height: 2px; background: currentColor; }
  .pillar h3 { font-family: var(--zg-font-heading); font-weight: 700; font-size: 38px; line-height: 1.05; letter-spacing: -0.02em; color: var(--zg-indigo); margin: 0 0 18px; max-width: 480px; }
  .pillar > div > p.lead { font-size: 17px; line-height: 1.55; color: var(--zg-ink-2); margin-bottom: 24px; }
  .pillar .feats { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .pillar .feats li { list-style: none; display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
  .pillar .feats li svg { color: var(--zg-orange); margin-top: 2px; }
  .pillar .feats strong { font-family: var(--zg-font-heading); font-weight: 700; color: var(--zg-indigo); font-size: 14px; letter-spacing: -0.005em; display: block; margin-bottom: 2px; }
  .pillar .feats span { font-family: var(--zg-font-body); font-size: 14px; color: var(--zg-ink-2); line-height: 1.5; }

  /* Pilar full-width (Pilar 01 — tabela precisa de espaço horizontal) */
  .pillar.full { grid-template-columns: 1fr; gap: 48px; }
  .pillar.full .pillar-head { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr); gap: 56px; align-items: end; }
  .pillar.full .pillar-head h3 { max-width: 540px; }
  .pillar.full .feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 0; }
  .pillar.full .feats li { align-items: start; }

  /* ----- PILLAR 1: view-stack (Painel Visual ↔ Tabela em crossfade) ----- */
  .view-stack { display: grid; position: relative; }
  .view-stack > .kanban,
  .view-stack > .mock-table { grid-area: 1 / 1; }
  .view-stack > .kanban   { animation: vsKanban 14s ease-in-out infinite; }
  .view-stack > .mock-table { animation: vsTable 14s ease-in-out infinite; }
  @keyframes vsKanban {
    0%, 42%   { opacity: 1; transform: translateY(0);    visibility: visible; }
    50%, 92%  { opacity: 0; transform: translateY(-8px); visibility: hidden; }
    100%      { opacity: 1; transform: translateY(0);    visibility: visible; }
  }
  @keyframes vsTable {
    0%, 42%   { opacity: 0; transform: translateY(8px);  visibility: hidden; }
    50%, 92%  { opacity: 1; transform: translateY(0);    visibility: visible; }
    100%      { opacity: 0; transform: translateY(8px);  visibility: hidden; }
  }
  .view-indicator { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); }
  .view-indicator .seg { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 9999px; background: var(--zg-paper-2); border: 1px solid var(--zg-border); color: var(--zg-ink-3); transition: none; }
  .view-indicator .seg .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
  .view-indicator .seg.k { animation: segKanban 14s ease-in-out infinite; }
  .view-indicator .seg.t { animation: segTable 14s ease-in-out infinite; }
  @keyframes segKanban {
    0%, 42%   { background: var(--zg-orange); border-color: var(--zg-orange); color: #fff; }
    50%, 92%  { background: var(--zg-paper-2); border-color: var(--zg-border); color: var(--zg-ink-3); }
    100%      { background: var(--zg-orange); border-color: var(--zg-orange); color: #fff; }
  }
  @keyframes segTable {
    0%, 42%   { background: var(--zg-paper-2); border-color: var(--zg-border); color: var(--zg-ink-3); }
    50%, 92%  { background: var(--zg-orange); border-color: var(--zg-orange); color: #fff; }
    100%      { background: var(--zg-paper-2); border-color: var(--zg-border); color: var(--zg-ink-3); }
  }
  .view-indicator .arrow { color: var(--zg-ink-3); }
  .view-indicator .note  { margin-left: 6px; color: var(--zg-ink-3); }
  @media (prefers-reduced-motion: reduce) {
    .view-stack > .kanban, .view-stack > .mock-table,
    .view-indicator .seg.k, .view-indicator .seg.t { animation: none !important; }
    .view-stack > .mock-table { opacity: 0; visibility: hidden; display: none; }
  }

  /* ----- PILLAR 1 mock: Tabela de pedidos (fiel ao produto) ----- */
  .mock-table { background: #fff; border: 1px solid var(--zg-border); border-radius: 6px; box-shadow: var(--zg-shadow-3); overflow: hidden; }
  .mt-toolbar { background: var(--zg-indigo); color: var(--zg-paper); padding: 10px 14px; display: flex; align-items: center; gap: 10px; border-radius: 6px 6px 0 0; }
  .mt-toolbar .ct { font-family: var(--zg-font-heading); font-weight: 700; font-size: 12.5px; padding-right: 10px; border-right: 1px solid rgba(246,243,236,.18); }
  .mt-toolbar .ct b { color: var(--zg-orange); font-weight: 700; margin-right: 4px; font-family: var(--zg-font-mono); }
  .mt-toolbar .ac { display: inline-flex; align-items: center; gap: 7px; font-family: var(--zg-font-body); font-size: 11.5px; font-weight: 500; color: var(--zg-paper); padding: 6px 11px; background: rgba(246,243,236,.06); border: 1px solid rgba(246,243,236,.08); border-radius: 4px; cursor: pointer; }
  .mt-toolbar .ac:hover { background: rgba(246,243,236,.12); }
  .mt-toolbar .ac svg { color: rgba(246,243,236,.6); width: 13px; height: 13px; }
  .mt-toolbar .x { margin-left: auto; width: 24px; height: 24px; display: grid; place-items: center; background: rgba(246,243,236,.08); border-radius: 4px; color: var(--zg-paper); font-size: 14px; line-height: 1; cursor: pointer; }
  .mt-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px 12px; }
  .mt-head .l { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-indigo); }
  .mt-head .l small { font-family: var(--zg-font-body); font-weight: 400; color: var(--zg-ink-3); margin-left: 8px; }
  .mt-head .live { font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--zg-success); display: inline-flex; align-items: center; gap: 6px; }
  .mt-head .live::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: pulse 1.8s ease-out infinite; box-shadow: 0 0 0 0 rgba(31,138,91,.4); }
  .mt-grid-cols { grid-template-columns: 22px 56px 116px minmax(0, 2.4fr) minmax(0, 1.1fr) 116px 140px 86px; }
  .mt-thead { display: grid; gap: 10px; padding: 11px 18px; background: var(--zg-paper-2); border-top: 1px solid var(--zg-border); border-bottom: 1px solid var(--zg-border); font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); font-weight: 500; align-items: center; }
  .mt-thead .sort { display: inline-flex; align-items: center; gap: 4px; color: var(--zg-ink-2); }
  .mt-thead .sort svg { width: 9px; height: 9px; opacity: .5; }
  .mt-row { display: grid; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--zg-border-paper); align-items: center; transition: background 120ms; }
  .mt-row:last-child { border-bottom: none; }
  .mt-row.selected { background: var(--zg-orange-100); }
  .mt-row .ck { width: 14px; height: 14px; border: 1.5px solid var(--zg-border-strong); border-radius: 3px; }
  .mt-row .ck.on { background: var(--zg-orange); border-color: var(--zg-orange); position: relative; }
  .mt-row .ck.on::after { content:""; position: absolute; left: 3px; top: 1px; width: 4px; height: 7px; border: solid #fff; border-width: 0 1.5px 1.5px 0; transform: rotate(45deg); }
  .mt-row .id { font-family: var(--zg-font-mono); font-size: 11.5px; color: var(--zg-ink-2); font-weight: 600; }
  .mt-row .who { font-family: var(--zg-font-body); font-size: 12px; min-width: 0; }
  .mt-row .who b { display: block; font-family: var(--zg-font-heading); font-weight: 700; color: var(--zg-indigo); font-size: 12.5px; letter-spacing: -0.005em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mt-row .who small { display: block; font-family: var(--zg-font-mono); font-size: 10px; color: var(--zg-ink-3); margin-top: 2px; }
  .mt-row .it { font-family: var(--zg-font-body); font-size: 11.5px; color: var(--zg-ink-3); line-height: 1.35; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mt-row .it b { font-family: var(--zg-font-mono); color: var(--zg-ink-2); font-weight: 600; margin-right: 8px; }
  .mt-row .vl { font-family: var(--zg-font-heading); font-weight: 700; font-size: 12.5px; color: var(--zg-indigo); }
  .mt-row .pg { font-family: var(--zg-font-body); font-size: 11px; color: var(--zg-ink-2); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
  .mt-row .pg::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--zg-success); flex-shrink: 0; }
  .mt-row .pg.pdng::before { background: var(--zg-warning); }
  .mt-row .pg.pdng { color: var(--zg-ink-2); }
  .mt-row .pg.pix::before { background: var(--zg-success); }
  .mt-row .crd { font-family: var(--zg-font-mono); font-size: 10.5px; color: var(--zg-ink-3); white-space: nowrap; }
  .mt-row .crd .late { color: #DC2626; font-weight: 700; display: block; margin-top: 2px; font-size: 9.5px; }
  .mt-row .crd .late b { color: #DC2626; font-weight: 700; }
  .mt-row .crd .late.inline { display: inline; margin-left: 4px; }
  .mt-row .ent { font-family: var(--zg-font-body); font-size: 11.5px; color: var(--zg-ink-2); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
  .mt-row .ent .avt { width: 22px; height: 22px; background: var(--zg-indigo); color: #fff; border-radius: 50%; display: grid; place-items: center; font-family: var(--zg-font-heading); font-size: 9px; font-weight: 700; flex-shrink: 0; }
  .mt-row .ent.empty { color: var(--zg-ink-3); font-style: italic; font-size: 10.5px; }
  .mt-row .acts { display: inline-flex; gap: 4px; justify-content: flex-end; }
  .mt-row .acts .a { width: 26px; height: 26px; border: 1px solid var(--zg-border); border-radius: 4px; display: grid; place-items: center; background: #fff; color: var(--zg-ink-2); cursor: pointer; }
  .mt-row .acts .a:hover { background: var(--zg-paper-2); border-color: var(--zg-border-strong); }
  .mt-row .acts .a.confirm { color: var(--zg-success); }
  .mt-row .acts .a.next { color: var(--zg-orange); }
  .mt-row .acts .a.assign { color: var(--zg-orange); }
  .mt-row .acts .a svg { width: 13px; height: 13px; }

  .pg-status { font-family: var(--zg-font-body); font-size: 11px; font-weight: 500; padding: 0; display: inline-flex; align-items: center; gap: 6px; color: var(--zg-ink-2); white-space: nowrap; }
  .pg-status::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
  .pg-status.r  { color: #2A6FDB; }   /* Recebido */
  .pg-status.c  { color: #1F8A5B; }   /* Confirmado */
  .pg-status.p  { color: #C98A00; }   /* Em preparo */
  .pg-status.pr { color: #1F8A5B; }   /* Pronto */
  .pg-status.er { color: var(--zg-orange); }   /* Em rota */
  .pg-status .lb { color: var(--zg-ink); font-weight: 500; }

  .pill-tag { display:inline-flex; align-items:center; gap:5px; font-family:var(--zg-font-body); font-size: 11px; font-weight: 500; padding: 3px 9px 4px; border-radius: 9999px; white-space: nowrap; color: var(--zg-ink); background: var(--zg-paper-2); border: 1px solid var(--zg-border); }
  .pill-tag .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .pill-tag.zd .dot { background: #DB2777; }    /* Zé Delivery */
  .pill-tag.if .dot { background: #DC2626; }    /* iFood */
  .pill-tag.tel .dot { background: var(--zg-orange); }  /* Telefone */
  .pill-tag.dpr .dot { background: #2A6FDB; }   /* Delivery próprio */
  .pill-tag.pdv .dot { background: #7C3AED; }   /* PDV + entrega */

  /* ----- PILLAR 2 mock: PDV offline ----- */
  .mock-pdv { background: var(--zg-indigo); color: var(--zg-paper); border-radius: 4px; padding: 24px; font-family: var(--zg-font-mono); position: relative; box-shadow: var(--zg-shadow-3); }
  .mock-pdv::after { content:""; position: absolute; left: 0; right: 0; bottom: -1px; height: 4px; background: var(--zg-orange); border-radius: 0 0 4px 4px; }
  .pdv-h { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(246,243,236,.12); margin-bottom: 16px; }
  .pdv-h .l { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; letter-spacing: -0.01em; color: var(--zg-paper); }
  .pdv-status { display:inline-flex; align-items:center; gap:8px; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; border-radius: 9999px; background: rgba(201,138,0,.18); color: #FFC845; }
  .pdv-status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
  .pdv-screen { background: rgba(246,243,236,.04); border: 1px solid rgba(246,243,236,.10); border-radius: 4px; padding: 18px; }
  .pdv-total-lb { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,243,236,.5); }
  .pdv-total { font-family: var(--zg-font-display); font-size: 56px; color: var(--zg-paper); letter-spacing: -0.025em; line-height: 1; margin-top: 4px; }
  .pdv-items { margin-top: 16px; }
  .pdv-items li { list-style: none; display: flex; justify-content: space-between; padding: 6px 0; font-size: 12px; color: rgba(246,243,236,.75); border-top: 1px dashed rgba(246,243,236,.10); }
  .pdv-items li:first-child { border-top: none; }
  .pdv-keys { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 16px; }
  .pdv-keys .k { background: rgba(246,243,236,.04); border: 1px solid rgba(246,243,236,.10); padding: 12px 8px; text-align: center; border-radius: 3px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--zg-paper); }
  .pdv-keys .k.primary { background: var(--zg-orange); color: #fff; border-color: var(--zg-orange); font-weight: 700; }
  .pdv-sync { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,243,236,.5); }
  .pdv-sync .bar { flex: 1; height: 4px; background: rgba(246,243,236,.10); border-radius: 9999px; overflow: hidden; position: relative; }
  .pdv-sync .bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 38%; background: var(--zg-orange); animation: sync 2.4s ease-in-out infinite; border-radius: 9999px; }
  @keyframes sync { 0%{left:-38%;} 100%{left:100%;} }

  /* ----- PILLAR 3 mock: rider app (PIN + GPS) ----- */
  .rider-stack { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: center; }
  .phone { background: var(--zg-indigo); border-radius: 28px; padding: 14px; box-shadow: 0 14px 40px rgba(26,26,46,.20), 0 1px 2px rgba(26,26,46,.10); position: relative; }
  .phone-screen { background: var(--zg-paper); border-radius: 18px; padding: 18px 14px; min-height: 360px; position: relative; overflow: hidden; }
  .phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 90px; height: 18px; background: var(--zg-indigo); border-radius: 12px; z-index: 2; }
  .phone .stbar { display: flex; justify-content: space-between; align-items: center; padding: 0 6px 14px; font-family: var(--zg-font-mono); font-size: 10px; color: var(--zg-ink-2); }
  .rider-card { background: #fff; border: 1px solid var(--zg-border); border-radius: 6px; padding: 14px; margin-top: 8px; }
  .rider-card .who { font-family: var(--zg-font-heading); font-weight: 700; font-size: 15px; color: var(--zg-indigo); letter-spacing: -0.01em; }
  .rider-card .ad { font-family: var(--zg-font-body); font-size: 12px; color: var(--zg-ink-3); margin-top: 4px; line-height: 1.4; }
  .rider-pin { background: var(--zg-indigo); color: var(--zg-paper); border-radius: 4px; padding: 18px 14px; margin-top: 12px; text-align: center; }
  .rider-pin .lb { font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,243,236,.5); }
  .rider-pin .pin { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
  .rider-pin .pin span { width: 32px; height: 40px; background: rgba(246,243,236,.06); border: 1px solid rgba(246,243,236,.18); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--zg-font-mono); font-size: 18px; font-weight: 700; color: var(--zg-paper); }
  .rider-pin .pin span.filled { background: var(--zg-orange); border-color: var(--zg-orange); color: #fff; }
  .rider-cta { background: var(--zg-orange); color: #fff; text-align: center; padding: 12px; border-radius: 9999px; font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; margin-top: 14px; letter-spacing: 0.02em; }

  .gps { background: #fff; border: 1px solid var(--zg-border); border-radius: 4px; padding: 16px; box-shadow: var(--zg-shadow-2); }
  .gps-h { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--zg-border-paper); margin-bottom: 12px; }
  .gps-h .l { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-indigo); letter-spacing: -0.01em; }
  .gps-h .r { font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-success); display: inline-flex; align-items: center; gap: 6px; }
  .gps-h .r .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
  .gps-map { aspect-ratio: 1 / 0.85; background: var(--zg-paper); border-radius: 3px; position: relative; overflow: hidden; }
  .gps-grid { position: absolute; inset: 0; background-image: linear-gradient(to right, var(--zg-border) 1px, transparent 1px), linear-gradient(to bottom, var(--zg-border) 1px, transparent 1px); background-size: 22px 22px; opacity: 0.7; }
  .gps-road { position: absolute; height: 3px; background: var(--zg-paper-3); border-radius: 9999px; }
  .gps-marker { position: absolute; width: 16px; height: 16px; border-radius: 50%; transform: translate(-50%,-50%); }
  .gps-marker.home { background: var(--zg-orange); border: 3px solid var(--zg-paper); box-shadow: 0 0 0 2px var(--zg-orange); }
  .gps-marker.rider { background: var(--zg-indigo); border: 3px solid var(--zg-paper); box-shadow: 0 0 0 2px var(--zg-indigo); animation: pulseInd 2s ease-out infinite; }
  @keyframes pulseInd { 0%,100%{box-shadow:0 0 0 2px var(--zg-indigo), 0 0 0 0 rgba(26,26,46,.5);} 50%{box-shadow:0 0 0 2px var(--zg-indigo), 0 0 0 10px rgba(26,26,46,0);} }
  .gps-line { position: absolute; left: 25%; right: 25%; top: 35%; bottom: 35%; border: 2px dashed var(--zg-indigo-300); opacity: 0.6; border-radius: 8px; border-left: none; border-bottom: none; }
  .gps-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
  .gps-info .b { background: var(--zg-paper); border-radius: 3px; padding: 10px 12px; }
  .gps-info .b .lb { font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); }
  .gps-info .b .v { font-family: var(--zg-font-mono); font-size: 14px; color: var(--zg-indigo); margin-top: 2px; font-weight: 700; }
  .gps-info .b.match .v { color: var(--zg-success); }

  /* ----- PILLAR 4 mock: DRE ----- */
  .mock-dre { background: #fff; border: 1px solid var(--zg-border); border-radius: 4px; padding: 22px; box-shadow: var(--zg-shadow-3); }
  .dre-h { display: flex; justify-content: space-between; align-items: end; padding-bottom: 16px; border-bottom: 1px solid var(--zg-border); margin-bottom: 12px; }
  .dre-h .l { font-family: var(--zg-font-heading); font-weight: 700; font-size: 14px; color: var(--zg-indigo); letter-spacing: -0.01em; }
  .dre-h .l small { display: block; font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); margin-top: 4px; }
  .dre-h .r { font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-success); display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: rgba(31,138,91,.08); border-radius: 9999px; }
  .dre-row { display: grid; grid-template-columns: 1fr auto; padding: 9px 0; border-bottom: 1px dashed var(--zg-border-paper); font-size: 13px; align-items: center; }
  .dre-row .lb { font-family: var(--zg-font-body); color: var(--zg-ink-2); }
  .dre-row .lb small { display: block; font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--zg-ink-3); margin-top: 2px; }
  .dre-row .v  { font-family: var(--zg-font-mono); color: var(--zg-indigo); font-size: 13px; text-align: right; }
  .dre-row.neg .v { color: var(--zg-danger); }
  .dre-row.total { border-bottom: none; padding-top: 18px; margin-top: 8px; border-top: 2px solid var(--zg-indigo); }
  .dre-row.total .lb { font-family: var(--zg-font-heading); font-weight: 700; color: var(--zg-indigo); font-size: 14px; }
  .dre-row.total .v { font-family: var(--zg-font-display); color: var(--zg-orange); font-size: 28px; letter-spacing: -0.02em; }

  /* ============================================================
     CONSUMER (cardápio WhatsApp)
     ============================================================ */
  .consumer { background: var(--zg-paper-2); padding: 104px 0; border-top: 1px solid var(--zg-border); border-bottom: 1px solid var(--zg-border); }
  .consumer-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
  .consumer h2 { max-width: 540px; }
  .consumer .lead { font-size: 17px; margin-top: 18px; max-width: 480px; }
  .consumer-feats { display: grid; gap: 18px; margin-top: 36px; }
  .consumer-feats li { list-style: none; background: #fff; border: 1px solid var(--zg-border); border-radius: 4px; padding: 18px 22px; display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; box-shadow: var(--zg-shadow-1); }
  .consumer-feats .ico { width: 36px; height: 36px; display: grid; place-items: center; background: var(--zg-orange-100); color: var(--zg-orange-700); border-radius: 4px; }
  .consumer-feats strong { font-family: var(--zg-font-heading); font-weight: 700; font-size: 15px; color: var(--zg-indigo); display: block; margin-bottom: 4px; letter-spacing: -0.005em; }
  .consumer-feats span { font-family: var(--zg-font-body); font-size: 13.5px; color: var(--zg-ink-2); line-height: 1.5; }

  /* ----- Phone com catálogo PWA (fiel ao app real) ----- */
  .menu-hd { display: flex; align-items: center; gap: 10px; padding: 4px 4px 12px; }
  .menu-hd .av { width: 32px; height: 32px; background: var(--zg-orange); border-radius: 9999px; display: grid; place-items: center; color: #fff; font-family: var(--zg-font-display); font-size: 13px; }
  .menu-hd .nm { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-indigo); }
  .menu-hd .nm small { display: block; font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-success); margin-top: 2px; }
  .phone-wide { max-width: 380px; margin: 0 auto; }
  .cat-hd { display: flex; align-items: center; gap: 10px; padding: 0 0 14px; border-bottom: 1px solid var(--zg-border); margin-bottom: 12px; }
  .cat-hd .av { width: 36px; height: 36px; background: var(--zg-orange); color: #fff; border-radius: 9999px; display: grid; place-items: center; font-family: var(--zg-font-heading); font-weight: 700; font-size: 12px; flex-shrink: 0; }
  .cat-hd .info { flex: 1; min-width: 0; }
  .cat-hd .info b { font-family: var(--zg-font-heading); font-weight: 700; font-size: 14px; color: var(--zg-indigo); display: block; line-height: 1; letter-spacing: -0.01em; }
  .cat-hd .info small { font-family: var(--zg-font-mono); font-size: 9px; letter-spacing: 0.06em; color: var(--zg-ink-3); display: block; margin-top: 4px; }
  .cat-hd .open { font-family: var(--zg-font-mono); font-size: 9px; font-weight: 600; letter-spacing: 0.06em; color: var(--zg-success); background: #D1FAE5; padding: 4px 8px; border-radius: 9999px; display: inline-flex; align-items: center; gap: 5px; }
  .cat-hd .open::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .cat-hd .cart { width: 32px; height: 32px; background: var(--zg-paper-2); border: 1px solid var(--zg-border); border-radius: 6px; display: grid; place-items: center; position: relative; color: var(--zg-indigo); }
  .cat-hd .cart .badge { position: absolute; top: -5px; right: -5px; background: var(--zg-orange); color: #fff; font-family: var(--zg-font-heading); font-weight: 700; font-size: 9px; min-width: 16px; height: 16px; border-radius: 9999px; display: grid; place-items: center; padding: 0 4px; }
  .cat-search { background: var(--zg-paper-2); border: 1px solid var(--zg-border); border-radius: 9999px; padding: 9px 14px; display: flex; align-items: center; gap: 9px; font-family: var(--zg-font-body); font-size: 12px; color: var(--zg-ink-3); margin-bottom: 14px; }
  .cat-search svg { color: var(--zg-ink-3); }
  .cat-chips { display: flex; gap: 7px; margin-bottom: 18px; overflow-x: hidden; }
  .cat-chip { font-family: var(--zg-font-heading); font-weight: 600; font-size: 11px; padding: 8px 14px; border-radius: 9999px; background: var(--zg-paper); border: 1px solid var(--zg-border); color: var(--zg-ink-2); white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
  .cat-chip.on { background: var(--zg-orange); border-color: var(--zg-orange); color: #fff; }
  .cat-chip svg { width: 12px; height: 12px; }
  .cat-section-h { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
  .cat-section-h b { font-family: var(--zg-font-heading); font-weight: 700; font-size: 16px; color: var(--zg-indigo); letter-spacing: -0.01em; }
  .cat-section-h small { font-family: var(--zg-font-mono); font-size: 10px; color: var(--zg-ink-3); }

  .prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .prod-card { background: #fff; border: 1px solid var(--zg-border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
  .prod-img { aspect-ratio: 1 / 0.85; display: grid; place-items: center; position: relative; }
  .prod-img.heineken { background: linear-gradient(155deg, #1B5A1B 0%, #0E3D0E 100%); }
  .prod-img.skol { background: linear-gradient(155deg, #F4C42C 0%, #D9A920 100%); }
  .prod-img.brahma { background: linear-gradient(155deg, #1A3D6E 0%, #0E2848 100%); }
  .prod-img.corona { background: linear-gradient(155deg, #E5D5A8 0%, #C8B584 100%); }
  .prod-img .label { font-family: var(--zg-font-display); font-size: 10px; color: #fff; letter-spacing: 0.06em; background: rgba(0,0,0,.16); padding: 3px 8px; border-radius: 3px; position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .prod-img.corona .label { color: #5a4a25; background: rgba(255,255,255,.4); }
  .prod-img .bottle { width: 28%; height: 75%; background: rgba(0,0,0,.32); border-radius: 8px 8px 4px 4px; position: relative; }
  .prod-img .bottle::before { content:""; position: absolute; top: -10%; left: 32%; width: 36%; height: 14%; background: rgba(0,0,0,.55); border-radius: 3px 3px 0 0; }
  .prod-img.skol .bottle { background: rgba(255,255,255,.18); width: 32%; height: 78%; border-radius: 4px; }
  .prod-img.skol .bottle::before { display: none; }
  .prod-img.corona .bottle { background: rgba(255,255,255,.55); }
  .prod-meta { padding: 10px 11px 11px; }
  .prod-meta .nm { font-family: var(--zg-font-heading); font-weight: 700; font-size: 12px; color: var(--zg-indigo); letter-spacing: -0.005em; line-height: 1.15; min-height: 28px; }
  .prod-meta .vol { font-family: var(--zg-font-body); font-size: 10.5px; color: var(--zg-ink-3); margin-top: 2px; }
  .prod-meta .row { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
  .prod-meta .pr { font-family: var(--zg-font-heading); font-weight: 700; font-size: 13px; color: var(--zg-orange); }
  .prod-meta .add { width: 24px; height: 24px; background: var(--zg-orange); color: #fff; border-radius: 9999px; display: grid; place-items: center; font-family: var(--zg-font-display); font-size: 13px; line-height: 1; }

  .cat-bar { background: var(--zg-orange); color: #fff; border-radius: 9999px; padding: 10px 14px 10px 16px; display: flex; justify-content: space-between; align-items: center; margin-top: 14px; box-shadow: 0 4px 12px rgba(255,107,0,.30); }
  .cat-bar .l { display: flex; align-items: center; gap: 9px; font-family: var(--zg-font-heading); font-weight: 700; font-size: 12px; }
  .cat-bar .l svg { background: rgba(255,255,255,.22); border-radius: 6px; padding: 4px; box-sizing: content-box; }
  .cat-bar .l b { font-weight: 700; }
  .cat-bar .l span { opacity: .85; font-weight: 500; }
  .cat-bar .r { font-family: var(--zg-font-heading); font-weight: 700; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }

  /* ============================================================
     TRUST / AUTHORITY
     ============================================================ */
  .trust { padding: 104px 0; }
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
  .trust-card { background: #fff; border: 1px solid var(--zg-border); border-radius: 6px; padding: 28px 24px 24px; box-shadow: var(--zg-shadow-1); position: relative; display: flex; flex-direction: column; }
  .trust-card .ic-wrap { width: 52px; height: 52px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 20px; }
  .trust-card.wa .ic-wrap   { background: #25D366; color: #fff; }
  .trust-card.zed .ic-wrap  { background: #FFCC00; color: #1A1A2E; }
  .trust-card.ifd .ic-wrap  { background: #EA1D2C; color: #fff; }
  .trust-card.pay .ic-wrap  { background: var(--zg-indigo); color: var(--zg-orange); }
  .trust-card h3 { font-family: var(--zg-font-heading); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--zg-indigo); margin: 0 0 10px; line-height: 1.2; }
  .trust-card p  { font-family: var(--zg-font-body); font-size: 13.5px; line-height: 1.55; color: var(--zg-ink-2); margin: 0 0 22px; flex: 1; }
  .trust-card .tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--zg-font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 10px; border-radius: 9999px; align-self: flex-start; }
  .trust-card .tag.available { background: rgba(31,138,91,.10); color: var(--zg-success); }
  .trust-card .tag.soon { background: var(--zg-paper-2); color: var(--zg-ink-3); border: 1px dashed var(--zg-border-strong); }
  .trust-card .tag.soon::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--zg-orange); }
  .trust-card.soon { opacity: 0.92; }
  .trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border: 1px solid var(--zg-border); border-radius: 4px; background: #fff; overflow: hidden; }
  .ts-cell { padding: 28px 24px; border-right: 1px solid var(--zg-border); }
  .ts-cell:last-child { border-right: none; }
  .ts-cell .v { font-family: var(--zg-font-display); font-size: 44px; color: var(--zg-indigo); letter-spacing: -0.03em; line-height: 1; }
  .ts-cell .v .orange { color: var(--zg-orange); }
  .ts-cell .lb { font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); margin-top: 14px; }

  /* ============================================================
     FINAL CTA
     ============================================================ */
  .cta-section { padding: 0 0 96px; }
  .cta-block { background: var(--zg-indigo); color: var(--zg-paper); border-radius: 6px; padding: 80px 72px; margin: 0 auto; position: relative; overflow: hidden; }
  .cta-block::before { content:""; position:absolute; left:0; top:0; bottom:0; width:14px; background: var(--zg-orange); }
  .cta-block::after { content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border: 2px solid rgba(255,107,0,.22); border-radius: 50%; pointer-events: none; }
  .cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: end; position: relative; z-index: 1; }
  .cta-grid h2 { font-family: var(--zg-font-display); font-size: 64px; letter-spacing: -0.03em; line-height: 1; color: var(--zg-paper); margin: 18px 0 0; }
  .cta-grid h2 .orange { color: var(--zg-orange); }
  .cta-grid p { color: rgba(246,243,236,.7); font-size: 17px; max-width: 520px; margin: 22px 0 0; line-height: 1.55; }
  .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
  .cta-actions .small { font-family: var(--zg-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(246,243,236,.5); }
  .cta-actions .btn { font-size: 15px; padding: 14px 26px; }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer { padding: 64px 0 40px; border-top: 1px solid var(--zg-border); }
  .ft-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
  .ft-col h4 { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--zg-ink-3); margin: 0 0 16px; font-weight: 500; }
  .ft-col a { display: block; font-family: var(--zg-font-body); font-size: 14px; color: var(--zg-ink-2); text-decoration: none; padding: 6px 0; }
  .ft-col a:hover { color: var(--zg-orange); }
  .ft-bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 48px; border-top: 1px solid var(--zg-border); flex-wrap: wrap; gap: 16px; }
  .ft-bottom .mn { font-family: var(--zg-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--zg-ink-3); }

  /* ============================================================
     RESPONSIVE (≤960)
     ============================================================ */
  @media (max-width: 960px) {
    .container { padding: 0 24px; }
    .hero { padding: 56px 0 72px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .h1 { font-size: 56px; } .h1 .badge { font-size: 36px; padding: 4px 16px 6px; }
    .h-section { font-size: 34px; }
    .problem { padding: 72px 0; }
    .problems { grid-template-columns: 1fr; }
    .problem-hd { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .section-hd { grid-template-columns: 1fr; }
    .pillar { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
    .pillar.reverse { direction: ltr; }
    .pillar h3 { font-size: 28px; }
    .consumer { padding: 72px 0; }
    .consumer-grid { grid-template-columns: 1fr; gap: 48px; }
    .trust { padding: 72px 0; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-stats { grid-template-columns: 1fr 1fr; }
    .ts-cell:nth-child(2n) { border-right: none; }
    .ts-cell:nth-child(1), .ts-cell:nth-child(2) { border-bottom: 1px solid var(--zg-border); }
    .cta-block { padding: 56px 32px; }
    .cta-grid { grid-template-columns: 1fr; gap: 32px; }
    .cta-grid h2 { font-size: 40px; }
    .ft-grid { grid-template-columns: 1fr 1fr; }
    .hd-nav { display: none; }
    .rider-stack { grid-template-columns: 1fr; }
  }

  /* ============================================================
     RESPONSIVE (≤640) — phones
     ============================================================ */
  @media (max-width: 640px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 18px; }

    /* Grid items default min-width:auto = min-content. Force them to
       shrink to their parent so wide mocks (kanban, tables) don't
       inflate the viewport. */
    .hero-grid > *,
    .pillar > *,
    .pillar.full > *,
    .pillar.full .pillar-head > *,
    .consumer-grid > *,
    .cta-grid > *,
    .problem-hd > *,
    .section-hd > *,
    .kanban-h > *,
    .kanban-h .ttl,
    .kanban-h .ttl small { min-width: 0; }
    .kanban { width: 100%; }

    /* ---------- HEADER ---------- */
    header { padding: 14px 0; }
    body[data-tagline-pos="full"] .tagline.mode-full,
    body[data-tagline-pos="under"] .tagline.mode-under { display: none; }
    .logo .wm { font-size: 22px; }
    .logo .bg { font-size: 11px; padding: 2px 8px 3px; }
    .hd-cta { gap: 6px; }
    .hd-mono { display: none; }
    .hd-cta .btn-primary { padding: 9px 14px; font-size: 12.5px; }
    /* tighter logo on mobile so the CTA fits */
    .logo-wrap { gap: 0; }

    /* ---------- HERO ---------- */
    .hero { padding: 36px 0 56px; }
    .hero-grid { gap: 32px; }
    .h1 { font-size: 44px; line-height: 1.0; margin-top: 14px; }
    .h1 br { display: none; }
    .h1 .badge { font-size: 26px; padding: 3px 13px 5px; }
    .eye { font-size: 10px; letter-spacing: 0.16em; gap: 8px; }
    .eye::before { width: 16px; }
    .lead { max-width: none; font-size: 16px; }
    .lead--hero { font-size: 16px; margin-top: 18px; max-width: none; }
    .ctas { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 24px; }
    .ctas .btn { justify-content: center; width: 100%; padding: 14px 18px; font-size: 14px; }
    .hero p.mono { font-size: 10px; letter-spacing: 0.14em; margin-top: 18px; }

    /* ---------- HERO KANBAN — scroll-snap horizontal ---------- */
    .kanban { padding: 14px 12px 12px; border-radius: 6px; }
    .kanban::before { left: -6px; width: 6px; top: 38px; bottom: 38px; }
    .kanban-h { flex-direction: column; gap: 10px; align-items: stretch; padding-bottom: 12px; margin-bottom: 12px; }
    .kanban-h .ttl { font-size: 14px; }
    .kanban-h .ttl small { font-size: 10px; }
    .kanban-h .toolbar { gap: 4px; }
    .k-cols {
      display: flex;
      grid-template-columns: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 10px;
      margin: 0 -12px;
      padding: 0 12px 6px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .k-cols::-webkit-scrollbar { display: none; }
    .k-col {
      flex: 0 0 calc(100% - 36px);
      min-width: 0;
      scroll-snap-align: start;
    }

    /* Kanban "full" (5 col no Pilar 01) — mesmo padrão */
    .kanban.full .k-cols { display: flex; grid-template-columns: none; }
    .kanban.full .k-col { flex: 0 0 calc(100% - 36px); }

    /* ---------- SECTIONS ---------- */
    .section { padding: 56px 0; }
    .section-hd { gap: 18px; margin-bottom: 36px; }
    .section-hd p { max-width: none; font-size: 14px; }
    .h-section { font-size: 28px; line-height: 1.1; }
    .problem { padding: 56px 0 64px; }
    .problem-hd { gap: 18px; margin-bottom: 36px; }
    .problem-hd p { max-width: none; }
    .pcard { padding: 22px 20px 24px; }
    .pcard .nm { font-size: 42px; margin-bottom: 12px; }
    .pcard h3 { font-size: 17px; }
    .pcard p { font-size: 13px; }

    /* PILARES */
    .pillar { padding: 36px 0; gap: 28px; }
    .pillar h3 { font-size: 24px; }
    .pillar > div > p.lead { font-size: 15px; }
    .pillar.full { gap: 28px; }
    .pillar.full .pillar-head { grid-template-columns: 1fr; gap: 16px; }
    .pillar.full .feats { grid-template-columns: 1fr; gap: 16px; }
    /* Pilar 1: tabela esconde, mantém só o kanban (sem crossfade) */
    .view-indicator { display: none; }
    .view-stack { display: block; }
    .view-stack > .mock-table { display: none; }
    .view-stack > .kanban { animation: none; opacity: 1; visibility: visible; }

    /* CONSUMER / cardápio digital */
    .consumer { padding: 56px 0; }
    .consumer-grid { gap: 32px; }
    .consumer h2 { max-width: none; }
    .consumer .lead { max-width: none; font-size: 15px; }
    .phone-wide { max-width: 100%; }

    /* TRUST */
    .trust { padding: 56px 0; }
    .trust-grid { grid-template-columns: 1fr; gap: 32px; }
    .trust-stats { grid-template-columns: 1fr 1fr; }

    /* CTA final */
    .cta-section { padding: 0 0 56px; }
    .cta-block { padding: 40px 22px; }
    .cta-block::before { width: 8px; }
    .cta-block::after { width: 160px; height: 160px; right: -50px; top: -50px; }
    .cta-grid { gap: 24px; }
    .cta-grid h2 { font-size: 30px; line-height: 1.05; }
    .cta-grid p { font-size: 14px; max-width: none; }
    .cta-actions .btn { width: 100%; justify-content: center; }

    /* FOOTER */
    footer { padding: 48px 0 32px; }
    .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
    .ft-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  }
