/* ===========================================================================
   Pricepoint — Mockups de telas do app (componentes scoped .mock-*)
   --------------------------------------------------------------------------
   Recria, em HTML/CSS, telas reais do app dentro de uma moldura de celular
   realista para uso no site institucional. Fiel aos screenshots reais
   (Home claro/escuro) e ao codigo em mobile/src/screens/*.tsx.

   Como usar: copie um bloco #mock-* de _mockups.html para dentro da pagina.
   Todo o CSS daqui e scoped sob .mock-frame / .mock-* — nao vaza estilo
   global do site. Albert Sans (mesma fonte do app) e importada abaixo.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   Tokens (escopo .mock-frame). Tema claro por padrao; .mock-frame--dark
   sobrescreve para o navy escuro da identidade Pricepoint (#0a1124).
   --------------------------------------------------------------------------- */
.mock-frame {
  /* Marca */
  --m-blue: #0B42FF;          /* acao / botoes / links (azul vibrante) */
  --m-blue-deep: #001EBA;     /* primaria profunda (avatar, splash) */
  --m-blue-soft: #e7edff;     /* fundo de pill/badge azul */
  --m-blue-ink: #0B42FF;      /* texto azul sobre fundo claro */

  /* Superficies */
  --m-bg: #f4f6fb;            /* fundo da tela (cinza-claro) */
  --m-card: #ffffff;          /* cards brancos */
  --m-card-2: #f1f5ff;        /* card secundario (light blue) */
  --m-line: #eceef5;          /* divisores / bordas suaves */
  --m-input: #f1f4fb;         /* fundo de inputs/chips */

  /* Texto */
  --m-ink: #0e1530;           /* texto forte */
  --m-ink-2: #46506e;         /* texto secundario */
  --m-muted: #8a93ac;         /* texto apagado */

  /* Status / acentos */
  --m-green: #16A34A;         /* IA validada / sucesso */
  --m-green-bg: #e6f7ee;
  --m-gold: #FFC400;          /* oferta exclusiva */
  --m-gold-ink: #7a5b00;
  --m-gold-bg: #fff7da;
  --m-amber: #F59E0B;
  --m-red: #DC2626;

  /* Moldura */
  --m-radius: 16px;
  --m-shadow: 0 1px 2px rgba(14,21,48,.05), 0 6px 18px rgba(14,21,48,.06);
  --m-shadow-card: 0 1px 3px rgba(14,21,48,.06), 0 4px 14px rgba(14,21,48,.05);

  font-family: 'Albert Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mock-frame--dark {
  --m-blue: #2E7BFF;          /* botoes azuis no app dark sao um pouco mais claros */
  --m-blue-deep: #1565C0;
  --m-blue-soft: rgba(46,123,255,.16);
  --m-blue-ink: #5fa0ff;

  --m-bg: #0a1124;            /* navy escuro da identidade */
  --m-card: #111c39;
  --m-card-2: #122247;
  --m-line: #1b2950;
  --m-input: #0e1b38;

  --m-ink: #ffffff;
  --m-ink-2: #c2cce0;
  --m-muted: #8093b4;

  --m-green: #34d27b;
  --m-green-bg: rgba(52,210,123,.14);
  --m-gold: #FFD700;
  --m-gold-ink: #ffd86b;
  --m-gold-bg: rgba(255,215,0,.10);
  --m-amber: #FFB300;
}

/* ---------------------------------------------------------------------------
   Moldura do celular
   --------------------------------------------------------------------------- */
.mock-frame {
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 11px;
  background: #0b0b12;
  border-radius: 46px;
  border: 1px solid #23232e;
  box-shadow:
    0 0 0 2px #050509,
    0 30px 60px rgba(8,12,30,.34),
    0 12px 24px rgba(8,12,30,.22);
  box-sizing: border-box;
}
.mock-frame * { box-sizing: border-box; }

/* botoes fisicos laterais */
.mock-frame::before,
.mock-frame::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: #16161e;
}
.mock-frame::before { top: 132px; height: 56px; }
.mock-frame::after  { top: 200px; height: 56px; }

.mock-screen {
  position: relative;
  width: 100%;
  height: 600px;
  background: var(--m-bg);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--m-ink);
  font-size: 13px;
  line-height: 1.35;
}

/* Dynamic island / notch */
.mock-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  background: #050509;
  border-radius: 999px;
  z-index: 40;
}

/* Status bar (hora + icones) */
.mock-statusbar {
  height: 40px;
  flex: 0 0 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--m-ink);
}
.mock-statusbar__time { letter-spacing: .2px; }
.mock-statusbar__icons {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--m-ink);
}
.mock-statusbar__icons svg { width: 15px; height: 15px; display: block; }
.mock-bat {
  width: 22px; height: 11px; border: 1.4px solid currentColor;
  border-radius: 3px; position: relative; opacity: .9;
}
.mock-bat::before {
  content: ""; position: absolute; right: -3px; top: 3px;
  width: 2px; height: 5px; background: currentColor; border-radius: 0 1px 1px 0;
}
.mock-bat::after {
  content: ""; position: absolute; left: 1.4px; top: 1.4px; bottom: 1.4px;
  width: 72%; background: currentColor; border-radius: 1px;
}

/* badge de versao/build (canto sup. direito do app) */
.mock-buildbadge {
  position: absolute;
  top: 48px;
  right: 16px;
  z-index: 30;
  background: rgba(20,28,52,.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: .2px;
}
.mock-frame--dark .mock-buildbadge { background: rgba(0,0,0,.55); }

/* area de conteudo rolavel */
.mock-body {
  flex: 1 1 auto;
  overflow: hidden;
  padding: 6px 16px 0;
}
.mock-body--flush { padding: 0; }

/* ---------------------------------------------------------------------------
   App bar (header com titulo + botoes) — usado em telas internas
   --------------------------------------------------------------------------- */
.mock-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 10px;
  gap: 10px;
}
.mock-appbar__title { font-size: 16px; font-weight: 800; color: var(--m-ink); }
.mock-iconbtn {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--m-input); color: var(--m-ink);
  flex: 0 0 auto;
}
.mock-iconbtn svg { width: 18px; height: 18px; }
.mock-iconbtn--ghost { background: transparent; }

/* ---------------------------------------------------------------------------
   Home — header de boas-vindas
   --------------------------------------------------------------------------- */
.mock-hello {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 0 2px;
}
.mock-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--m-blue-deep);
  color: #fff; font-weight: 800; font-size: 19px;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.mock-hello__txt { flex: 1 1 auto; min-width: 0; }
.mock-hello__title { font-size: 18px; font-weight: 800; color: var(--m-ink); }
.mock-hello__sub { font-size: 13px; color: var(--m-muted); }
.mock-pill-online {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--m-blue-soft); color: var(--m-blue-ink);
  font-size: 12.5px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
  flex: 0 0 auto;
}
.mock-pill-online .mock-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--m-blue);
}
.mock-date {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--m-muted);
  margin: 8px 0 12px;
}

/* ---------------------------------------------------------------------------
   Cards genericos
   --------------------------------------------------------------------------- */
.mock-card {
  background: var(--m-card);
  border-radius: var(--m-radius);
  box-shadow: var(--m-shadow-card);
  padding: 15px;
  margin-bottom: 12px;
}
.mock-frame--dark .mock-card {
  border: 1px solid var(--m-line);
  box-shadow: none;
}

/* card "Meus Ganhos" (Home) */
.mock-earn__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 13px;
}
.mock-earn__title { font-size: 16px; font-weight: 800; color: var(--m-ink); }
.mock-gps {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid var(--m-blue);
  color: var(--m-blue-ink);
  font-size: 11.5px; font-weight: 700;
  padding: 4px 9px; border-radius: 999px;
}
.mock-gps svg { width: 12px; height: 12px; }
.mock-chev { color: var(--m-muted); display: inline-flex; }
.mock-chev svg { width: 16px; height: 16px; }

.mock-earn__cols {
  display: flex; align-items: stretch;
  margin-bottom: 14px;
}
.mock-earn__col { flex: 1; display: flex; gap: 9px; align-items: flex-start; }
.mock-earn__col + .mock-earn__col { padding-left: 14px; }
.mock-earn__divider { width: 1px; background: var(--m-line); margin: 2px 0; }
.mock-mini-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--m-blue-soft); color: var(--m-blue);
  display: grid; place-items: center; flex: 0 0 auto;
}
.mock-mini-icon svg { width: 15px; height: 15px; }
.mock-earn__label { font-size: 12px; color: var(--m-muted); }
.mock-earn__value { font-size: 18px; font-weight: 800; color: var(--m-blue-ink); line-height: 1.2; }

/* botao principal azul */
.mock-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 13px;
  background: var(--m-blue);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 6px 16px rgba(11,66,255,.28);
}
.mock-btn svg { width: 18px; height: 18px; }
.mock-btn--green { background: var(--m-green); box-shadow: 0 6px 16px rgba(22,163,74,.26); }
.mock-btn--sm { height: 44px; font-size: 14px; }

/* ---------------------------------------------------------------------------
   Mapa "fake" (estilo Google Maps) — claro e escuro
   --------------------------------------------------------------------------- */
.mock-map {
  position: relative;
  height: 168px;
  border-radius: var(--m-radius);
  overflow: hidden;
  margin-bottom: 12px;
  background:
    radial-gradient(120px 90px at 22% 78%, #d7e9d2 0%, rgba(215,233,210,0) 70%),
    radial-gradient(150px 120px at 12% 24%, #d3e7cf 0%, rgba(211,231,207,0) 72%),
    linear-gradient(90deg, #e9eef3 0%, #e9eef3 72%, #bcd8ef 72%, #aed1ec 100%);
}
.mock-frame--dark .mock-map {
  background:
    radial-gradient(120px 90px at 22% 78%, #0f2236 0%, rgba(15,34,54,0) 70%),
    radial-gradient(150px 120px at 12% 24%, #102338 0%, rgba(16,35,56,0) 72%),
    linear-gradient(90deg, #0c1830 0%, #0c1830 72%, #0d2238 72%, #0e2a44 100%);
}
/* ruas */
.mock-map__road {
  position: absolute; background: rgba(255,255,255,.85);
}
.mock-frame--dark .mock-map__road { background: rgba(120,150,190,.20); }
.mock-map__road--1 { top: -10%; left: 64%; width: 5px; height: 130%; transform: rotate(12deg); border-radius: 4px; }
.mock-map__road--2 { top: 56%; left: -10%; width: 130%; height: 4px; transform: rotate(-7deg); border-radius: 4px; }
.mock-map__road--3 { top: 20%; left: 8%; width: 60%; height: 3px; transform: rotate(18deg); border-radius: 4px; opacity: .7; }

.mock-map__label {
  position: absolute;
  font-size: 9.5px; font-weight: 700; letter-spacing: .04em;
  color: #6b7a8c; text-transform: uppercase;
}
.mock-frame--dark .mock-map__label { color: #6f87a8; }
.mock-map__label--a { top: 28%; left: 38%; }
.mock-map__label--b { top: 52%; left: 26%; }
.mock-map__label--c { top: 60%; left: 56%; }
.mock-map__label--d { bottom: 8%; right: 8%; }

.mock-map__google {
  position: absolute; left: 8px; bottom: 6px;
  font-size: 12px; font-weight: 700; color: #5f6b7a;
  text-shadow: 0 1px 2px rgba(255,255,255,.6);
}
.mock-frame--dark .mock-map__google { color: #cdd6e6; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.mock-map__locate {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #16213a; color: #fff;
  display: grid; place-items: center;
}
.mock-map__locate svg { width: 16px; height: 16px; }

/* pin numerado (teardrop) */
.mock-pin {
  position: absolute;
  width: 30px; height: 30px;
  background: var(--m-blue); color: #fff;
  font-size: 13px; font-weight: 800;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid; place-items: center;
  box-shadow: 0 3px 8px rgba(8,12,30,.35);
  border: 2px solid #fff;
}
.mock-frame--dark .mock-pin { border-color: rgba(255,255,255,.85); }
.mock-pin span { transform: rotate(45deg); }
.mock-pin--round { border-radius: 50%; transform: none; }
.mock-pin--round span { transform: none; }
/* marcador "voce" (dot azul com halo) */
.mock-userdot {
  position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--m-blue); border: 3px solid #fff;
  box-shadow: 0 0 0 8px rgba(11,66,255,.18);
}

/* card secundario tipo "pesquisas concluidas" */
.mock-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--m-card-2);
  border-radius: var(--m-radius);
  padding: 14px;
  margin-bottom: 11px;
}
.mock-row--white { background: var(--m-card); box-shadow: var(--m-shadow-card); }
.mock-frame--dark .mock-row--white { border: 1px solid var(--m-line); box-shadow: none; }
.mock-row__icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; flex: 0 0 auto;
  background: var(--m-blue-soft); color: var(--m-blue);
}
.mock-row__icon svg { width: 19px; height: 19px; }
.mock-row__icon--check { border-radius: 50%; }
.mock-row__txt { flex: 1 1 auto; min-width: 0; }
.mock-row__title { font-size: 14px; font-weight: 800; color: var(--m-ink); }
.mock-row__title--blue { color: var(--m-blue-ink); }
.mock-row__sub { font-size: 12px; color: var(--m-muted); }
.mock-row__link { font-size: 12.5px; font-weight: 700; color: var(--m-blue-ink); white-space: nowrap; }
.mock-badge-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--m-blue); color: #fff;
  font-size: 12px; font-weight: 800;
  display: grid; place-items: center; flex: 0 0 auto;
}
.mock-frame--dark .mock-badge-num { background: #16213a; color: var(--m-blue-ink); }

/* card oferta exclusiva (borda dourada) */
.mock-row--exclusive {
  background: var(--m-gold-bg);
  border: 1.5px solid var(--m-gold);
}
.mock-row--exclusive .mock-row__icon { background: rgba(255,196,0,.18); color: var(--m-gold-ink); }
.mock-frame--dark .mock-row--exclusive .mock-row__icon { color: var(--m-gold); }
.mock-row--exclusive .mock-row__title { color: var(--m-gold-ink); }
.mock-frame--dark .mock-row--exclusive .mock-row__title { color: var(--m-gold); }
.mock-row--exclusive .mock-badge-num { background: rgba(255,196,0,.22); color: var(--m-gold-ink); }
.mock-frame--dark .mock-row--exclusive .mock-badge-num { color: var(--m-gold); }

/* ---------------------------------------------------------------------------
   Bottom nav (4 itens)
   --------------------------------------------------------------------------- */
.mock-bottomnav {
  flex: 0 0 auto;
  display: flex;
  background: var(--m-card);
  border-top: 1px solid var(--m-line);
  padding: 8px 4px 14px;
}
.mock-bottomnav__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 10.5px; font-weight: 600;
  color: var(--m-muted);
}
.mock-bottomnav__item svg { width: 22px; height: 22px; }
.mock-bottomnav__item--active { color: var(--m-blue); font-weight: 800; }

/* ---------------------------------------------------------------------------
   PriceCollection — tela-chave (preco + foto + IA + barcode)
   --------------------------------------------------------------------------- */
.mock-pc__product {
  display: flex; align-items: center; gap: 12px; margin: 4px 0 14px;
}
.mock-pc__thumb {
  width: 54px; height: 54px; border-radius: 13px; flex: 0 0 auto;
  background: var(--m-input); color: var(--m-muted);
  display: grid; place-items: center; font-weight: 800; font-size: 20px;
  overflow: hidden;
}
.mock-pc__thumb svg { width: 26px; height: 26px; }
.mock-pc__label { font-size: 12px; color: var(--m-muted); }
.mock-pc__name { font-size: 17px; font-weight: 800; color: var(--m-ink); line-height: 1.2; }

/* display de preco grande */
.mock-pc__price {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  padding: 6px 0 4px;
}
.mock-pc__cur { font-size: 22px; font-weight: 800; color: var(--m-blue-ink); }
.mock-pc__val { font-size: 46px; font-weight: 800; color: var(--m-ink); letter-spacing: -1px; }

/* miniatura da foto da etiqueta + badge IA */
.mock-pc__photo {
  display: flex; align-items: center; gap: 12px;
  background: var(--m-green-bg);
  border: 1px solid rgba(22,163,74,.30);
  border-radius: 13px;
  padding: 10px;
  margin: 10px 0;
}
.mock-pc__shot {
  width: 52px; height: 52px; border-radius: 9px; flex: 0 0 auto;
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, #fdfdf6 0%, #f1f1e6 100%);
  border: 1px solid rgba(0,0,0,.08);
}
/* "etiqueta" desenhada: faixas representando preco/codigo */
.mock-pc__shot::before {
  content: "R$ 12,90";
  position: absolute; top: 7px; left: 6px; right: 6px;
  font-size: 11px; font-weight: 800; color: #c0392b; letter-spacing: -.3px;
}
.mock-pc__shot::after {
  content: ""; position: absolute; bottom: 7px; left: 6px; right: 6px; height: 14px;
  background: repeating-linear-gradient(90deg, #1a1a1a 0 2px, transparent 2px 4px,
              #1a1a1a 4px 5px, transparent 5px 8px);
}
.mock-pc__photo-txt { flex: 1 1 auto; min-width: 0; }
.mock-ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--m-green); font-size: 13px; font-weight: 800;
}
.mock-ai-badge svg { width: 15px; height: 15px; }
.mock-pc__photo-sub { font-size: 11.5px; color: var(--m-ink-2); margin-top: 2px; }

/* botao scanner de codigo de barras */
.mock-scan {
  display: flex; align-items: center; gap: 11px;
  background: var(--m-input);
  border: 1px dashed var(--m-blue);
  border-radius: 13px;
  padding: 11px 13px;
  margin-bottom: 10px;
}
.mock-scan__icon {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto;
  background: var(--m-blue-soft); color: var(--m-blue);
  display: grid; place-items: center;
}
.mock-scan__icon svg { width: 19px; height: 19px; }
.mock-scan__txt { flex: 1 1 auto; }
.mock-scan__title { font-size: 13px; font-weight: 700; color: var(--m-ink); }
.mock-scan__hint { font-size: 11px; color: var(--m-muted); }
.mock-scan__chev { color: var(--m-muted); }
.mock-scan__chev svg { width: 16px; height: 16px; }

/* teclado numerico */
.mock-keypad {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 7px; margin: 4px 0 12px;
}
.mock-key {
  height: 38px; border-radius: 10px;
  background: var(--m-input); color: var(--m-ink);
  font-size: 18px; font-weight: 700;
  display: grid; place-items: center;
}
.mock-key--muted { background: transparent; color: var(--m-muted); }

/* ---------------------------------------------------------------------------
   Earnings — saldo / saque / extrato
   --------------------------------------------------------------------------- */
.mock-screen-title { font-size: 20px; font-weight: 800; color: var(--m-ink); margin: 4px 0 14px; }

.mock-withdraw {
  background: var(--m-blue-soft);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 13px;
}
.mock-withdraw__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.mock-withdraw__icon {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  background: var(--m-card); color: var(--m-blue);
  display: grid; place-items: center;
}
.mock-withdraw__icon svg { width: 21px; height: 21px; }
.mock-withdraw__amt { font-size: 26px; font-weight: 800; color: var(--m-blue-ink); line-height: 1.1; }
.mock-withdraw__label { font-size: 12px; color: var(--m-ink-2); }
.mock-withdraw__sub { font-size: 12px; color: var(--m-ink-2); margin: 4px 0 13px; }

.mock-summary { display: flex; gap: 11px; margin-bottom: 13px; }
.mock-summary__card { flex: 1; border-radius: 15px; padding: 13px; }
.mock-summary__card--paid { background: var(--m-green-bg); }
.mock-summary__card--pending { background: var(--m-blue-soft); }
.mock-summary__ico {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 9px;
}
.mock-summary__ico svg { width: 17px; height: 17px; }
.mock-summary__card--paid .mock-summary__ico { background: rgba(22,163,74,.18); color: var(--m-green); }
.mock-summary__card--pending .mock-summary__ico { background: rgba(11,66,255,.14); color: var(--m-blue); }
.mock-summary__label { font-size: 12px; color: var(--m-ink-2); }
.mock-summary__val { font-size: 21px; font-weight: 800; margin: 2px 0; }
.mock-summary__card--paid .mock-summary__val { color: var(--m-green); }
.mock-summary__card--pending .mock-summary__val { color: var(--m-blue-ink); }
.mock-summary__hint { font-size: 10.5px; color: var(--m-muted); }

.mock-stats {
  display: flex; align-items: center;
  background: var(--m-card); border: 1px solid var(--m-line);
  border-radius: 14px; padding: 13px; margin-bottom: 14px;
}
.mock-stats__item { flex: 1; text-align: center; }
.mock-stats__v { font-size: 15px; font-weight: 800; color: var(--m-ink); }
.mock-stats__l { font-size: 11px; color: var(--m-ink-2); }
.mock-stats__div { width: 1px; height: 26px; background: var(--m-line); }

.mock-hist__title { font-size: 16px; font-weight: 800; color: var(--m-ink); margin-bottom: 9px; }
.mock-hist__item {
  display: flex; align-items: center; gap: 10px;
  background: var(--m-card); border: 1px solid var(--m-line);
  border-radius: 12px; padding: 11px 13px; margin-bottom: 8px;
}
.mock-hist__txt { flex: 1 1 auto; min-width: 0; }
.mock-hist__name { font-size: 13px; font-weight: 700; color: var(--m-ink); }
.mock-hist__pill {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 3px;
  font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 7px;
}
.mock-hist__pill--paid { background: var(--m-green-bg); color: var(--m-green); }
.mock-hist__pill--rev { background: rgba(245,158,11,.16); color: var(--m-amber); }
.mock-hist__amt { font-size: 16px; font-weight: 800; color: var(--m-green); white-space: nowrap; }
.mock-hist__amt--rev { color: var(--m-amber); }

/* ---------------------------------------------------------------------------
   RouteMap — mapa cheio + check-in GPS
   --------------------------------------------------------------------------- */
.mock-rm__map {
  position: relative;
  flex: 1 1 auto;
  background:
    radial-gradient(150px 120px at 78% 30%, #d7e9d2 0%, rgba(215,233,210,0) 72%),
    radial-gradient(160px 130px at 18% 70%, #d3e7cf 0%, rgba(211,231,207,0) 72%),
    linear-gradient(120deg, #e9eef3 0%, #e4ebf1 60%, #bcd8ef 100%);
  overflow: hidden;
}
.mock-frame--dark .mock-rm__map {
  background:
    radial-gradient(150px 120px at 78% 30%, #0f2236 0%, rgba(15,34,54,0) 72%),
    radial-gradient(160px 130px at 18% 70%, #102338 0%, rgba(16,35,56,0) 72%),
    linear-gradient(120deg, #0c1830 0%, #0b1730 60%, #0e2a44 100%);
}
/* raio do local (geofence) ao redor do destino */
.mock-geofence {
  position: absolute;
  width: 150px; height: 150px; border-radius: 50%;
  border: 2px dashed var(--m-blue);
  background: rgba(11,66,255,.10);
  top: 30%; left: 56%; transform: translate(-50%, -50%);
}
.mock-frame--dark .mock-geofence { background: rgba(46,123,255,.12); }
.mock-geofence__label {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 700; color: var(--m-blue-ink);
  background: var(--m-card); padding: 1px 6px; border-radius: 6px; white-space: nowrap;
}
/* rota tracejada */
.mock-route {
  position: absolute; left: 22%; top: 70%; width: 40%; height: 3px;
  background: var(--m-blue); transform: rotate(-34deg); transform-origin: left center;
  border-radius: 3px;
}
.mock-route::before {
  content: ""; position: absolute; left: 38%; top: -22px; width: 30%; height: 3px;
  background: var(--m-blue); transform: rotate(40deg); border-radius: 3px;
}
.mock-rm__summary {
  position: absolute; top: 14px; left: 12px; right: 12px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--m-line);
  border-radius: 13px; padding: 8px 10px;
  font-size: 11.5px; font-weight: 700; color: var(--m-ink);
}
.mock-frame--dark .mock-rm__summary { background: rgba(10,17,36,.88); }
.mock-rm__summary svg { width: 13px; height: 13px; vertical-align: -2px; }
.mock-rm__sdiv { width: 1px; height: 14px; background: var(--m-line); }
.mock-rm__rtype {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--m-blue-soft); color: var(--m-blue-ink);
  padding: 2px 7px; border-radius: 7px; font-size: 10px;
}

/* bottom sheet com check-in */
.mock-rm__sheet {
  flex: 0 0 auto;
  background: var(--m-card);
  border-top: 1px solid var(--m-line);
  border-radius: 22px 22px 0 0;
  padding: 10px 16px 16px;
  margin-top: -16px;
  position: relative;
  z-index: 5;
}
.mock-handle {
  width: 38px; height: 4px; border-radius: 2px;
  background: var(--m-muted); opacity: .4;
  margin: 0 auto 12px;
}
.mock-rm__stop {
  display: flex; align-items: center; gap: 11px; margin-bottom: 12px;
}
.mock-rm__num {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background: var(--m-blue); color: #fff;
  font-size: 13px; font-weight: 800; display: grid; place-items: center;
}
.mock-rm__sname { font-size: 13px; font-weight: 700; color: var(--m-ink); }
.mock-rm__saddr { font-size: 11px; color: var(--m-muted); }
.mock-checkin-hint {
  display: flex; align-items: center; gap: 7px;
  background: var(--m-green-bg); color: var(--m-green);
  border-radius: 10px; padding: 8px 11px; margin-bottom: 10px;
  font-size: 11.5px; font-weight: 700;
}
.mock-checkin-hint svg { width: 15px; height: 15px; flex: 0 0 auto; }

/* ---------------------------------------------------------------------------
   AcceptResearch — detalhe da pesquisa antes de aceitar
   --------------------------------------------------------------------------- */
.mock-countbadge {
  background: var(--m-blue-soft); color: var(--m-blue-ink);
  border-radius: 10px; padding: 9px 14px; margin: 0 0 12px;
  font-size: 12.5px; font-weight: 700; text-align: center;
}
.mock-offer {
  background: var(--m-card);
  border: 1px solid var(--m-line);
  border-radius: 20px;
  padding: 18px 16px;
}
.mock-frame--dark .mock-offer { box-shadow: none; }
.mock-offer__price {
  font-size: 34px; font-weight: 800; color: var(--m-blue-ink);
  text-align: center; line-height: 1.1;
}
.mock-offer__store {
  font-size: 16px; font-weight: 800; color: var(--m-ink);
  text-align: center; margin: 6px 0 14px;
}
.mock-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-bottom: 12px; }
.mock-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--m-input); border-radius: 10px; padding: 6px 10px;
  font-size: 11px; font-weight: 600; color: var(--m-ink-2);
}
.mock-chip__b {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 6px;
  background: var(--m-blue); color: #fff; font-weight: 800; font-size: 10px;
  display: inline-grid; place-items: center;
}
.mock-chip svg { width: 13px; height: 13px; color: var(--m-blue); }
.mock-offer__line {
  display: flex; align-items: center; gap: 8px;
  background: var(--m-input); border-radius: 10px;
  padding: 9px 12px; margin-bottom: 8px;
  font-size: 12px; color: var(--m-ink-2);
}
.mock-offer__line svg { width: 14px; height: 14px; flex: 0 0 auto; }
.mock-offer__line--addr svg { color: var(--m-red); }
.mock-offer__see {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--m-blue-ink); font-size: 12.5px; font-weight: 700;
  padding: 10px 0 4px;
}
.mock-offer__see svg { width: 14px; height: 14px; }
.mock-deadline {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--m-blue-soft); color: var(--m-blue-ink);
  border-radius: 8px; padding: 5px 10px; margin: 2px auto 12px;
  font-size: 11.5px; font-weight: 700;
}
.mock-deadline svg { width: 13px; height: 13px; }
.mock-offer__center { display: flex; justify-content: center; }
