/* ═══════════ UAU CAIXA shared theme ═══════════ */
:root {
  --blue: #181887;
  --blue-dark: #10105e;
  --blue-light: #f0f4ff;
  --comprar: #251EEC;
  --cyan: #35E0FC;
  --cyan-dark: #14B5D0;
  --coral: #FF5F4E;
  --red: #E53935;
  --orange: #F57C00;
  --yellow: #FFD700;
  --pink: #FF69B4;
  --salmon: #FA8072;
  --text: #181887;
  --muted: #6c6c6c;
  --light: #f5f5f5;
  --white: #fff;
  --bg: #ffffff;
  --radius: 6px;
  --font: 'Open Sans', 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-width: 0; font-size: 16px; line-height: 1.5; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; }
input, textarea, select { font-family: var(--font); }

/* ─── A11Y utilities ──────────────────────────────────── */
.sr-only {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}
.skip-link {
  position: absolute; top: -40px; left: 8px; z-index: 9999;
  background: var(--blue); color: var(--white); padding: 10px 16px;
  border-radius: 0 0 6px 6px; font-weight: 700; font-size: 14px;
  transition: top .2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--cyan); outline-offset: 2px; }

/* ─── Focus visible global ─── */
:focus-visible {
  outline: 2px solid var(--cyan); outline-offset: 2px;
}
button:focus-visible, a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--cyan); outline-offset: 2px;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--cyan); outline-offset: 1px;
}

/* ─── HEADER ─────────────────────────────────── */
.hdr {
  background: var(--white);
  position: sticky; top: 0; z-index: 200;
}
.hdr-top {
  display: flex; align-items: center; gap: 14px;
  max-width: 1280px; margin: 0 auto;
  padding: 18px 20px 14px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { width: 146px; height: 40px; object-fit: contain; display: block; }
.search-wrap {
  flex: 1; display: flex; align-items: stretch;
  background: var(--white); position: relative; max-width: 740px;
  min-width: 0;
}
.search-wrap input {
  flex: 1; min-width: 0; border: 1px solid var(--blue); border-right: none; outline: none;
  padding: 11.2px 32px 11.2px 10px; font-size: 16px; font-weight: 400;
  line-height: 24px;
  border-radius: 5px 0 0 5px; background: var(--white); color: var(--text);
  height: 46px;
}
.search-wrap input::placeholder { color: var(--muted); }
.search-wrap .btn-search {
  background: var(--white); border: 1px solid var(--blue); border-left: none;
  border-radius: 0 5px 5px 0; padding: 8px 6px 11.2px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--comprar); width: 40px; flex-shrink: 0;
}
.search-wrap .btn-search img, .search-wrap .btn-search svg { width: 22px; height: 22px; }
.search-wrap .btn-search-l { display: none; }
/* Greeting mobile só aparece em mobile */
.hdr-greet-mob { display: none; }
.btn-criar {
  background: var(--coral); color: var(--white); border: none;
  border-radius: 6px; padding: 10px 22px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: opacity .2s;
}
.btn-criar:hover { opacity: .88; }
.btn-acessar {
  background: transparent; color: var(--blue);
  border: 1px solid var(--blue); border-radius: 6px;
  padding: 9px 20px; font-size: 14px; font-weight: 600;
  white-space: nowrap; transition: all .2s;
}
.btn-acessar:hover { background: var(--blue); color: var(--white); }
.hdr-icons { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hdr-icon {
  position: relative; color: var(--blue); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 10px;
}
.hdr-icon img, .hdr-icon svg { width: 24px; height: 24px; }
.hdr-badge {
  position: absolute; top: -5px; right: -6px;
  background: var(--coral); color: var(--white);
  font-size: 10px; font-weight: 700; border-radius: 50%;
  width: 17px; height: 17px; display: flex; align-items: center; justify-content: center;
}

/* ─── NAV ────────────────────────────────────── */
.nav {
  background: var(--white);
  border-bottom: 1px solid #e6e6f0;
  overflow-x: auto; scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav-inner {
  display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
}
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 56px; font-size: 16px; font-weight: 600;
  color: var(--comprar); white-space: nowrap;
  border-radius: 10px 10px 0 0;
  border-bottom: 3px solid transparent;
  transition: border-color .15s, background .15s;
  line-height: 24px;
}
.nav-link:hover, .nav-link.active { border-bottom-color: var(--cyan); background: rgba(53,224,252,.08); }

/* ─── FOOTER ─────────────────────────────────── */
.footer { background: var(--blue); color: var(--white); padding: 48px 20px 24px; margin-top: 40px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-bottom: 36px;
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  /* logo grande no topo do footer mobile */
  .footer-inner > div:last-child { order: -1; align-items: center !important; flex-direction: column !important; gap: 8px !important; }
  .footer-logo img { width: 200px; }
  .footer-social { justify-content: center; }
  .footer-links { align-items: center; }
  .footer-col-title { text-align: center; }
}
/* Ícones sociais com fundo cyan quadrado (igual oficial) */
.footer-social a {
  width: 40px; height: 40px;
  background: var(--cyan); border-radius: 8px;
  border: 1px solid var(--cyan);
}
.footer-social img { width: 22px; height: 22px; filter: brightness(0) saturate(100%) invert(11%) sepia(63%) saturate(5950%) hue-rotate(243deg) brightness(73%) contrast(99%); }
.footer-col-title { font-size: 14px; font-weight: 400; color: var(--cyan); margin-bottom: 14px; line-height: 25.6px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.footer-links a { font-size: 14px; color: var(--cyan); font-weight: 400; line-height: 25.6px; transition: opacity .2s; }
.footer-links a:hover { opacity: .8; text-decoration: underline; }
.footer-phone { font-size: 14px; font-weight: 400; color: var(--cyan); display: inline-block; }
.footer-phone-label { font-size: 14px; opacity: .85; margin-bottom: 4px; font-weight: 400; }
.footer-line { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; }
.footer-ic { color: var(--cyan); font-weight: 700; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity .2s;
}
.footer-social a:hover { opacity: .8; }
.footer-social img { width: 32px; height: 32px; object-fit: contain; }
.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { width: 180px; height: auto; filter: brightness(0) invert(1); object-fit: contain; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.15); padding: 8px;
  text-align: center; font-size: 16px; font-weight: 400; line-height: 25.6px; color: var(--white);
}

/* ─── BREADCRUMBS ────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 0; font-size: 13px; color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #aaa; }
.breadcrumb .cur { color: var(--blue); font-weight: 700; }

/* ─── PRODUCT CARD ───────────────────────────── */
.card {
  min-width: 290px; max-width: 290px;
  scroll-snap-align: start; flex-shrink: 0;
  background: var(--white); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  padding: 14px 10px 0;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 4px 18px rgba(24,24,135,.10); transform: translateY(-2px); }
.card-img-area {
  position: relative; background: var(--white);
  padding: 0 0 12px; aspect-ratio: 1; cursor: pointer;
}
.card-img-area img { width: 100%; height: 100%; object-fit: contain; }
.card-off {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 3px 8px;
  border-radius: 50px;
}
.card-store {
  position: absolute; top: 10px; right: 10px;
  max-height: 22px; max-width: 64px; object-fit: contain;
  background: var(--white); border-radius: 4px; padding: 2px;
}
.card-store-txt {
  position: absolute; top: 10px; right: 10px;
  background: var(--white); color: var(--muted);
  font-size: 9px; font-weight: 700; padding: 2px 5px;
  border-radius: 4px; border: 1px solid #eee;
  text-transform: uppercase;
}
.card-body { padding: 4px 6px 6px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-name-row { display: flex; align-items: flex-start; gap: 6px; }
.card-name {
  flex: 1; font-size: 16px; font-weight: 400; color: var(--blue);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 24px; cursor: pointer;
}
.card-heart {
  flex-shrink: 0; background: none; border: none;
  font-size: 18px; color: #bbb; padding: 0 2px;
  cursor: pointer; transition: color .15s;
}
.card-heart:hover, .card-heart.fav { color: var(--red); }
.card-old {
  font-size: 12px; color: var(--blue); text-decoration: line-through;
  display: flex; gap: 8px; line-height: 18px; font-weight: 400;
}
.card-old span { color: var(--blue); }
.card-from { font-size: 12px; color: var(--muted); margin-top: 4px; line-height: 1.3; }
.card-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.card-pts { font-size: 18px; font-weight: 800; color: var(--blue); line-height: 24px; }
.card-brl { font-size: 14px; font-weight: 600; color: var(--blue); line-height: 18px; }
.card-combo { font-size: 13px; font-weight: 600; color: var(--blue); line-height: 20px; margin-top: 2px; }
.card-ganhe-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #555; margin-top: 4px; flex-wrap: nowrap; white-space: nowrap; }
.card-ganhe-pill {
  background: #ffe4f0; color: #d63384;
  font-size: 12px; font-weight: 700; padding: 3px 10px;
  border-radius: 4px; border: 1px solid #ffc4dd;
  white-space: nowrap; flex-shrink: 0;
}
.card-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px 10px 12px; }
.btn-resgatar {
  background: var(--cyan); color: var(--blue);
  border: 1px solid var(--cyan); border-radius: 6px;
  padding: 6px 12px; font-size: 16px; font-weight: 600;
  height: 40px; line-height: 18px; transition: opacity .2s;
}
.btn-resgatar:hover { opacity: .9; }
.btn-comprar {
  background: var(--comprar); color: var(--white);
  border: 1px solid var(--comprar); border-radius: 6px;
  padding: 6px 12px; font-size: 16px; font-weight: 600;
  height: 40px; line-height: 18px; transition: opacity .2s;
}
.btn-comprar:hover { opacity: .9; }
.card-clube {
  background: var(--blue); color: var(--white);
  padding: 8px 12px; display: flex; align-items: center;
  justify-content: space-between; margin-top: 8px;
  border-radius: 0 0 8px 8px; margin-left: -10px; margin-right: -10px;
}
.card-clube-txt { font-size: 11px; font-weight: 600; line-height: 14.3px; }
.card-clube-saiba {
  background: var(--comprar); color: var(--white);
  border: none; border-radius: 8px; padding: 0 8px;
  height: 33px; font-size: 12px; font-weight: 600;
  white-space: nowrap; transition: opacity .2s;
}
.card-clube-saiba:hover { opacity: .9; }

/* ─── COMMON UI ──────────────────────────────── */
.btn {
  border: 1px solid transparent; border-radius: 6px; padding: 9px 20px;
  font-size: 16px; font-weight: 600; cursor: pointer;
  transition: opacity .2s, transform .1s;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 40px;
}
.btn:hover { opacity: .9; }
.btn:active { transform: scale(.98); }
.btn:disabled, .btn[disabled] {
  background: #e5e7f0 !important; color: #94a3b8 !important;
  border-color: #e5e7f0 !important; cursor: not-allowed; opacity: 1 !important;
}
.btn:disabled:hover, .btn[disabled]:hover { background: #e5e7f0 !important; }
.btn-primary { background: var(--comprar); color: var(--white); border-color: var(--comprar); }
.btn-cyan { background: var(--cyan); color: var(--blue); border-color: var(--cyan); }
.btn-coral { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-outline { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); opacity: 1; }
.btn-block { width: 100%; }

.field {
  width: 100%; padding: 12px 14px; border: 1.5px solid #ddd;
  border-radius: 10px; font-size: 14px; outline: none;
  transition: border-color .15s;
}
.field:focus { border-color: var(--blue); }
.label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }

.section-title, h2.section, .home-section-title {
  font-size: 24px; font-weight: 600; color: var(--comprar); line-height: 28.8px;
}

/* ─── USER MENU (header dropdown logged-in) ────── */
.user-menu { position: relative; flex-shrink: 0; }
.user-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: none; padding: 6px 10px;
  border-radius: 10px; color: var(--text);
}
.user-trigger:hover { background: var(--blue-light); }
.user-trigger svg { color: var(--coral); flex-shrink: 0; }
.user-greet { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; font-size: 13px; }
.user-greet b { font-weight: 700; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-greet span { color: var(--muted); font-size: 11px; }
.user-chev { color: var(--muted); font-size: 11px; }
.user-dropdown {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--white); min-width: 200px;
  border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,.12);
  padding: 8px 0; display: none; z-index: 300;
}
.user-menu.open .user-dropdown { display: block; }
.user-dropdown a, .user-dropdown button {
  display: block; width: 100%; text-align: left;
  padding: 10px 18px; background: transparent;
  border: none; font-size: 13px; color: var(--text);
  font-weight: 600; cursor: pointer;
}
.user-dropdown a:hover, .user-dropdown button:hover { background: var(--blue-light); color: var(--blue); }
.user-dropdown button { border-top: 1px solid #eee; margin-top: 4px; padding-top: 12px; color: var(--coral); }

/* ─── ACCOUNT PAGES (sidebar + content) ────────── */
.acc-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 16px 20px 60px;
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  align-items: flex-start;
}
.user-side { display: flex; flex-direction: column; gap: 10px; }
.user-side-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 6px;
  background: var(--white);
  border: 1.5px solid #e6e6f0;
  border-radius: 10px; padding: 16px 8px;
  font-size: 12px; font-weight: 700; color: var(--text);
  text-align: center; transition: all .15s;
}
.user-side-item:hover { border-color: var(--blue); color: var(--blue); }
.user-side-item.on {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(41,41,196,.25);
}
.user-side-item.on .user-side-ic svg, .user-side-item.on .user-side-ic img { filter: brightness(0) invert(1); }
.user-side-ic svg, .user-side-ic img { color: var(--blue); width: 28px; height: 28px; }

.acc-card {
  background: var(--white); border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  padding: 28px 32px; min-width: 0;
}
.acc-title { font-size: 22px; font-weight: 900; color: var(--text); margin-bottom: 18px; }
.acc-section-title {
  font-size: 13px; font-weight: 800; color: var(--text);
  letter-spacing: .8px; text-transform: uppercase;
  margin: 18px 0 12px; padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.acc-grid { display: grid; gap: 14px 18px; grid-template-columns: repeat(4, 1fr); }
.acc-grid .span-2 { grid-column: span 2; }
.acc-grid .span-3 { grid-column: span 3; }
.acc-grid .span-4 { grid-column: span 4; }
.acc-field { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.acc-field label { font-size: 11px; color: var(--muted); font-weight: 700; }
.acc-field input, .acc-field select {
  padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px;
  background: var(--light); font-size: 14px; color: var(--text);
}
.acc-field input:focus, .acc-field select:focus { border-color: var(--blue); outline: none; }
.acc-actions { display: flex; gap: 12px; margin-top: 22px; }

/* ─── BREADCRUMB ──────────────────────────────── */
.brc {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 20px 0;
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--muted);
}
.brc a { display: inline-flex; color: var(--muted); }
.brc-sep { color: var(--muted); }
.brc-cur { color: var(--blue); font-weight: 700; }

/* ─── ORDER TABLE ─────────────────────────────── */
.acc-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.acc-table thead { background: #f3f4f9; }
.acc-table th { padding: 14px 12px; font-weight: 700; color: var(--muted); text-align: left; }
.acc-table td { padding: 14px 12px; border-top: 1px solid #eee; color: var(--text); }
.acc-table tr:hover td { background: #fafbff; }
.acc-empty { text-align: center; color: var(--muted); padding: 30px; font-size: 13px; }

.acc-pager { display: flex; justify-content: center; gap: 4px; margin-top: 18px; }
.acc-pager button {
  width: 32px; height: 32px; border: 1px solid #ddd; background: var(--white);
  border-radius: 6px; font-size: 13px; color: var(--text);
}
.acc-pager button.on { background: var(--blue); color: var(--white); border-color: var(--blue); }
.acc-pager button:disabled { opacity: .35; cursor: not-allowed; }

/* ─── EXTRATO FILTERS ─────────────────────────── */
.ext-saldo { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.ext-saldo b { color: var(--text); font-weight: 800; }
.ext-filter-row {
  display: flex; align-items: flex-end; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.ext-filter-row .lbl { font-size: 13px; color: var(--muted); margin-right: 4px; align-self: center; }
.ext-tab {
  padding: 9px 18px; border: 1.5px solid #ddd; background: var(--white);
  color: var(--text); font-weight: 700; font-size: 13px; border-radius: 8px;
}
.ext-tab.on { background: var(--blue); color: var(--white); border-color: var(--blue); }
.ext-date {
  padding: 9px 12px; border: 1.5px solid #ddd; border-radius: 8px;
  font-size: 13px; min-width: 130px;
}

/* ─── ADDRESS CARDS ──────────────────────────── */
.addr-saved {
  border-bottom: 1px solid #eee; padding-bottom: 18px; margin-bottom: 18px;
}
.addr-name { font-weight: 800; font-size: 15px; color: var(--blue); margin-bottom: 8px; }
.addr-body { font-size: 13px; line-height: 1.65; color: var(--text); }
.addr-body b { color: var(--muted); font-weight: 600; margin-right: 4px; }
.addr-edit { color: var(--blue); font-weight: 700; font-size: 13px; cursor: pointer; background: none; border: none; padding: 8px 0; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  /* Header mobile: logo centralizado em cima, greeting, search underline + ícones */
  .hdr-top {
    padding: 14px 16px 10px;
    gap: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
  }
  .logo { grid-column: 2; grid-row: 1; justify-self: center; }
  .logo img { width: 180px; height: 50px; }
  .hdr-greet-mob {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 27px;
    color: var(--blue);
    margin: 12px 0 16px;
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .hdr-greet-mob a { color: var(--blue); text-decoration: underline; }
  .hdr-greet-mob b { font-weight: 800; }
  .hdr-greet-mob .saldo-mob { display: block; color: var(--muted); font-size: 12px; font-weight: 600; margin-top: 2px; }
  /* Search em mobile: lupa interna à esquerda, sem botão direito, só border-bottom */
  .search-wrap {
    grid-column: 1 / -1; grid-row: 3; max-width: 100%;
    display: flex; align-items: center; gap: 4px;
    border: none; border-bottom: 1px solid #d4d4ec;
    background: transparent; height: 53px;
  }
  .search-wrap input {
    border: none; height: 53px; padding: 8px 8px;
    background: transparent; font-size: 16px; line-height: 24px;
    border-radius: 0;
  }
  .search-wrap .btn-search-l {
    display: flex; align-items: center; justify-content: center;
    background: transparent; border: none;
    width: 44px; height: 44px; padding: 0;
    color: var(--blue); flex-shrink: 0;
  }
  .search-wrap .btn-search-l svg { width: 22px; height: 22px; }
  .search-wrap .btn-search-r { display: none; }
  /* Ícones à direita do logo no mobile — linha 1, coluna 3 */
  .hdr-icons {
    gap: 4px;
    grid-column: 3; grid-row: 1;
    justify-self: end;
  }
  .hdr-icons .hdr-icon { color: #ec4899; padding: 8px; min-width: 44px; min-height: 44px; }
  .hdr-icons .hdr-icon[href="/carrinho.html"] { color: var(--comprar); }
  .btn-criar, .btn-acessar { display: none; }
  /* Cards de produto: 270px mobile (1 card por scroll, igual oficial) */
  .card { min-width: 270px; max-width: 270px; }
  .card-pts { font-size: 17px; }
  .btn-resgatar, .btn-comprar { font-size: 14px; padding: 6px 4px; }
  .user-greet { display: none; }
  .user-chev { display: none; }
  .user-menu { display: none; }  /* user-menu desktop escondido em mobile, usa greeting */
  .user-trigger { padding: 6px; }
  .nav-inner { padding: 0 12px; }
  .nav-link { padding: 0 12px; height: 46px; font-size: 14px; }
  .nav-link svg { display: none; }  /* sem ícone home no mobile */
  .acc-wrap { grid-template-columns: 1fr; padding: 12px; }
  .user-side {
    flex-direction: row; flex-wrap: wrap;
    overflow-x: auto; padding-bottom: 4px;
  }
  .user-side-item { flex: 0 0 auto; min-width: 88px; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .acc-grid .span-2, .acc-grid .span-3, .acc-grid .span-4 { grid-column: span 2; }
  .acc-card { padding: 18px 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .acc-table { font-size: 12px; }
  .acc-table th, .acc-table td { padding: 10px 6px; white-space: nowrap; }
}
@media (max-width: 480px) {
  .card { min-width: 250px; max-width: 250px; }
  .card-pts { font-size: 17px; }
  .card-brl { font-size: 13px; }
}
