/* ═══════════════════════════════════════════════
   PWA v4 — Full Native App Experience
   Ordem dos Navegadores
   ═══════════════════════════════════════════════ */

/* ── Splash Screen ───────────────────────────── */
.pwa-splash {
  position: fixed; inset: 0; z-index: 99999;
  background: #030609;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}
.pwa-splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pwa-splash-logo {
  width: 88px; height: 88px; border-radius: 22px;
  background: url('/img/icon-192.png') center/cover;
  animation: _breath 2s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(201,168,76,.1), 0 20px 60px rgba(0,0,0,.5);
}
.pwa-splash-name {
  margin-top: 20px; font-family: 'Cinzel', serif;
  font-size: 10.5px; font-weight: 600;
  color: rgba(201,168,76,.35); letter-spacing: .22em;
}
.pwa-splash-bar {
  margin-top: 32px; width: 64px; height: 1.5px;
  background: rgba(255,255,255,.03); border-radius: 1px; overflow: hidden;
}
.pwa-splash-bar::after {
  content: ''; display: block; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
  animation: _slide .9s ease infinite;
}
@keyframes _breath { 0%,100% { transform: scale(1); } 50% { transform: scale(1.02); } }
@keyframes _slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(350%); } }

/* ── Install Banner ──────────────────────────── */
.pwa-install-banner {
  display: none; position: fixed;
  bottom: 72px; left: 10px; right: 10px;
  background: rgba(8,12,22,.94);
  backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 20px; padding: 16px 18px;
  z-index: 9999;
  box-shadow: 0 24px 64px rgba(0,0,0,.65);
  animation: _up .4s cubic-bezier(.16,1,.3,1);
}
.pwa-install-banner.show { display: flex; align-items: center; gap: 14px; }
.pwa-install-banner-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: url('/img/icon-192.png') center/cover; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
.pwa-install-banner-text { flex: 1; }
.pwa-install-banner-title { font-size: 14px; font-weight: 700; color: #dde4f0; }
.pwa-install-banner-desc { font-size: 11px; color: #4a5e7a; margin-top: 3px; }
.pwa-install-btn {
  background: #c9a84c; color: #080d18; border: none; border-radius: 12px;
  padding: 10px 20px; font-size: 13px; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer;
  transition: transform .1s;
}
.pwa-install-btn:active { transform: scale(.92); }
.pwa-install-close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; color: #1e2a3c;
  font-size: 20px; cursor: pointer; padding: 8px; line-height: 1;
}
@keyframes _up { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ── Bottom Tab Bar ──────────────────────────── */
.bottom-tabs {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(4,6,12,.97);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  border-top: 1px solid rgba(255,255,255,.025);
  z-index: 9998;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-tabs-inner {
  display: flex; height: 56px;
  align-items: stretch; justify-content: space-around;
  max-width: 420px; margin: 0 auto;
}
.bottom-tab {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; text-decoration: none;
  color: #1e2d42; font-size: 10px; font-weight: 600;
  flex: 1; position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none; transition: color .2s;
}
.bottom-tab svg {
  width: 23px; height: 23px; stroke-width: 1.5;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), filter .3s;
}
.bottom-tab:active { transform: scale(.82); }
.bottom-tab.active { color: #c9a84c; }
.bottom-tab.active svg {
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 2px 6px rgba(201,168,76,.3));
}
.bottom-tab.active::after {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 20px; height: 2px;
  background: #c9a84c; border-radius: 0 0 2px 2px;
  box-shadow: 0 3px 10px rgba(201,168,76,.35);
}
.bottom-tab .tab-badge {
  position: absolute; top: 3px; right: calc(50% - 19px);
  background: #ef4444; color: #fff;
  font-size: 8px; font-weight: 800;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: none; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid rgba(4,6,12,.97);
}
.bottom-tab .tab-badge.show { display: flex; animation: _pop .3s cubic-bezier(.34,1.56,.64,1); }
@keyframes _pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ── Pull to Refresh ─────────────────────────── */
.ptr-indicator {
  position: fixed; top: -44px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(8,12,22,.95); border: 1px solid rgba(201,168,76,.08);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: top .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.ptr-indicator.pulling { top: 56px; }
.ptr-indicator.refreshing { top: 56px; }
.ptr-indicator svg { width: 15px; height: 15px; stroke: #c9a84c; stroke-width: 2; fill: none; stroke-linecap: round; }
.ptr-indicator.refreshing svg { animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════
   FULL MOBILE REDESIGN
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .bottom-tabs { display: block; }

  /* ── Reset & Foundation ────────────────────── */
  html { scroll-behavior: smooth; }
  body {
    overflow-x: hidden !important;
    overscroll-behavior-y: contain;
    -webkit-text-size-adjust: 100%;
    background: #050810 !important;
  }
  * { -webkit-overflow-scrolling: touch; }
  ::-webkit-scrollbar { width: 0 !important; height: 0 !important; }
  ::selection { background: rgba(201,168,76,.15); }
  .bottom-tabs, .topbar, .sidebar, .btn, button, a { user-select: none; -webkit-user-select: none; }
  body::before, body::after { opacity: .4 !important; }

  /* ── Content Area ──────────────────────────── */
  .main-content, .main-wrapper { padding-bottom: 68px !important; }
  .main-content {
    padding: 14px 16px !important;
    max-width: 100% !important;
  }

  /* ── Stagger reveal animation ──────────────── */
  .main-content > * {
    animation: _reveal .4s cubic-bezier(.4,0,.2,1) both;
  }
  .main-content > *:nth-child(1) { animation-delay: 0s; }
  .main-content > *:nth-child(2) { animation-delay: .05s; }
  .main-content > *:nth-child(3) { animation-delay: .1s; }
  .main-content > *:nth-child(4) { animation-delay: .15s; }
  .main-content > *:nth-child(5) { animation-delay: .2s; }
  .main-content > *:nth-child(6) { animation-delay: .25s; }
  .main-content > *:nth-child(7) { animation-delay: .3s; }
  @keyframes _reveal {
    from { opacity: 0; transform: translateY(16px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* ── Sidebar — completely hidden ───────────── */
  .sidebar { transform: translateX(-100%) !important; }
  .sidebar.open { transform: translateX(0) !important; z-index: 10000; }

  /* ════════════════════════════════════════════
     TOPBAR — App Header
     ════════════════════════════════════════════ */
  .topbar {
    padding: 10px 16px !important;
    min-height: 48px !important;
    background: rgba(5,8,16,.92) !important;
    backdrop-filter: blur(28px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.6) !important;
    border-bottom: none !important;
    position: sticky !important; top: 0 !important;
    z-index: 100 !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.02) !important;
  }
  .topbar-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #e8ecf4 !important;
    letter-spacing: -.01em !important;
  }
  .topbar-left .menu-toggle { display: none !important; }
  .topbar-right .search-wrapper,
  .topbar-right .search-box { display: none !important; }
  .topbar .user-avatar { width: 30px !important; height: 30px !important; font-size: 11px !important; }
  .notif-bell-btn { width: 32px !important; height: 32px !important; border-radius: 10px !important; }
  .notif-badge {
    top: -4px !important; right: -4px !important;
    min-width: 16px !important; height: 16px !important;
    font-size: 9px !important;
  }

  /* ════════════════════════════════════════════
     PORTAL / DASHBOARD
     ════════════════════════════════════════════ */

  /* Welcome — big hero greeting */
  .welcome-banner {
    border-radius: 20px !important;
    padding: 22px 20px !important;
    margin-bottom: 14px !important;
    background: linear-gradient(145deg, rgba(201,168,76,.05) 0%, rgba(6,10,20,.6) 100%) !important;
    border: 1px solid rgba(201,168,76,.06) !important;
  }
  .welcome-avatar, .welcome-banner .user-avatar {
    width: 48px !important; height: 48px !important;
    border-radius: 16px !important;
    font-size: 18px !important;
  }
  .welcome-name { font-size: 22px !important; font-weight: 700 !important; }
  .welcome-subtitle { font-size: 12px !important; color: #3d5070 !important; }

  /* Subscription — clean card */
  .subscription-card {
    border-radius: 20px !important;
    padding: 20px !important;
    margin-bottom: 14px !important;
    border: 1px solid rgba(255,255,255,.03) !important;
  }
  .sub-plan-name { font-size: 17px !important; }
  .sub-price { font-size: 26px !important; }
  .sub-dates {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .sub-date-label { font-size: 9px !important; letter-spacing: .08em !important; }
  .sub-date-value { font-size: 13px !important; }

  /* Quick Actions — app-icon grid */
  .portal-actions-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .portal-action-card {
    border-radius: 16px !important;
    padding: 14px 6px !important;
    min-height: auto !important;
    background: rgba(255,255,255,.02) !important;
    border: 1px solid rgba(255,255,255,.02) !important;
    text-align: center !important;
    transition: transform .1s !important;
  }
  .portal-action-card:active { transform: scale(.9) !important; }
  .portal-action-card .action-icon {
    width: 32px !important; height: 32px !important;
    font-size: 20px !important;
    margin: 0 auto 6px !important;
  }
  .portal-action-card .action-label {
    font-size: 9.5px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    color: #6b7f9e !important;
  }

  /* Recommendations — smooth horizontal scroll */
  .recomendacoes-section {
    margin: 0 -16px 16px !important;
    padding: 0 16px !important;
  }
  .recomendacoes-scroll {
    gap: 10px !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .recomendacoes-scroll::-webkit-scrollbar { display: none; }
  .rec-card {
    scroll-snap-align: start;
    border-radius: 12px !important;
    flex: 0 0 120px !important;
  }
  .rec-card img { border-radius: 12px 12px 0 0 !important; }

  /* Section labels */
  .section-label, .portal-section-label, [class*="section-label"] {
    font-size: 11px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: #2d3f58 !important;
    margin-bottom: 10px !important;
    font-weight: 700 !important;
  }

  /* Info Cards */
  .info-card {
    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,.025) !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
    background: rgba(6,10,20,.7) !important;
  }
  .info-card-header {
    padding: 14px 16px !important;
    background: rgba(255,255,255,.01) !important;
    border-bottom: 1px solid rgba(255,255,255,.025) !important;
  }
  .info-card-icon { width: 28px !important; height: 28px !important; border-radius: 8px !important; }
  .info-card-title { font-size: 12px !important; }
  .info-card-body { padding: 12px 16px !important; }
  .info-row { padding: 7px 0 !important; }
  .info-label { font-size: 10px !important; color: #2d3f58 !important; }
  .info-value { font-size: 13px !important; font-weight: 500 !important; }

  /* Portal grid */
  .portal-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Metric cards */
  .metric-grid, .metrics-row, .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .metric-card, .stat-card {
    border-radius: 16px !important;
    padding: 14px !important;
    background: rgba(6,10,20,.7) !important;
    border: 1px solid rgba(255,255,255,.025) !important;
  }
  .metric-card:active, .stat-card:active { transform: scale(.96); }
  .metric-value { font-size: 22px !important; }
  .metric-label { font-size: 9px !important; letter-spacing: .05em !important; color: #2d3f58 !important; }
  .metric-icon-box { width: 36px !important; height: 36px !important; border-radius: 10px !important; }

  /* ════════════════════════════════════════════
     TIPS PAGE
     ════════════════════════════════════════════ */
  .tp-header, [class*="tp-header"] {
    border-radius: 0 0 24px 24px !important;
    margin: -14px -16px 14px !important;
    padding: 14px 16px 16px !important;
  }
  .tp-hero-title { font-size: 18px !important; }
  .tp-hero-eyebrow { font-size: 8px !important; }
  .tp-sport-selector { gap: 4px !important; }
  .tp-sport-tab {
    border-radius: 10px !important;
    padding: 7px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
  }
  .tp-pedir-trigger {
    border-radius: 12px !important;
    padding: 8px 14px !important;
    font-size: 11px !important;
  }
  .tp-stats { gap: 0 !important; }
  .tp-stat {
    padding: 8px 4px !important;
    font-size: 10px !important;
  }
  .tp-stat-value { font-size: 16px !important; }
  .tp-filters { padding: 8px 16px !important; gap: 6px !important; }
  .tp-filter-pill {
    border-radius: 10px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
  }
  .tip-card, [class*="tip-card"] {
    border-radius: 16px !important;
    margin-bottom: 8px !important;
  }

  /* ════════════════════════════════════════════
     JORNAIS / CATÁLOGO
     ════════════════════════════════════════════ */
  .jornais-split {
    display: flex !important;
    flex-direction: column !important;
  }
  .jornais-list-panel { width: 100% !important; }
  .jornais-reader-panel {
    position: fixed !important; inset: 0 !important;
    z-index: 9990 !important;
    background: #050810 !important;
  }
  .jornais-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .journal-card {
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .journal-card:active { transform: scale(.95); }
  .jornais-pills { gap: 6px !important; }
  .jornais-pill {
    border-radius: 10px !important;
    padding: 6px 12px !important;
    font-size: 11px !important;
  }
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .catalog-item-card {
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .catalog-item-card:active { transform: scale(.95); }

  /* ════════════════════════════════════════════
     CHAT / SUPORTE
     ════════════════════════════════════════════ */
  .suporte-layout, .suporte-layout.client-chat {
    border-radius: 0 !important;
    border: none !important;
    margin: -14px -16px 0 !important;
    height: calc(100dvh - 48px - 56px) !important;
    background: #050810 !important;
  }
  .ticket-detail-header {
    padding: 10px 16px !important;
    min-height: 44px !important;
  }
  .ticket-thread {
    padding: 12px 14px !important;
  }
  .msg-bubble {
    max-width: 82% !important;
    border-radius: 18px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
  .msg-row--right .msg-bubble { border-bottom-right-radius: 4px !important; }
  .msg-row--left .msg-bubble { border-bottom-left-radius: 4px !important; }
  .msg-avatar { width: 28px !important; height: 28px !important; }
  .msg-name { font-size: 11px !important; }
  .msg-time { font-size: 9px !important; }
  .reply-box {
    padding: 8px 12px !important;
    background: rgba(5,8,16,.95) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 1px solid rgba(255,255,255,.03) !important;
  }
  .reply-textarea {
    font-size: 16px !important;
    border-radius: 20px !important;
    padding: 10px 16px !important;
    min-height: 40px !important;
    max-height: 100px !important;
    background: rgba(255,255,255,.04) !important;
    border: none !important;
  }
  .reply-send-btn {
    border-radius: 50% !important;
    width: 40px !important; height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important; justify-content: center !important;
  }
  .reply-toolbar { padding: 4px 4px !important; }

  /* ════════════════════════════════════════════
     CONFIGURAÇÕES / SETTINGS
     ════════════════════════════════════════════ */
  .cfg-card, [class*="cfg-card"] {
    border-radius: 16px !important;
    margin-bottom: 12px !important;
    border: 1px solid rgba(255,255,255,.025) !important;
    overflow: hidden !important;
    background: rgba(6,10,20,.7) !important;
  }
  .cfg-card-title {
    font-size: 13px !important;
    padding: 14px 16px !important;
  }
  .cfg-field { padding: 0 16px 14px !important; }
  .cfg-row { grid-template-columns: 1fr !important; gap: 12px !important; }
  .cfg-label {
    font-size: 10px !important;
    color: #2d3f58 !important;
    margin-bottom: 4px !important;
  }

  /* ════════════════════════════════════════════
     FORMS & INPUTS
     ════════════════════════════════════════════ */
  .modal-input, .modal-select, .modal-textarea,
  input[type="text"], input[type="email"], input[type="password"],
  input[type="search"], input[type="number"], input[type="tel"],
  textarea, select {
    min-height: 46px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    padding: 12px 16px !important;
    background: rgba(255,255,255,.03) !important;
    border: 1px solid rgba(255,255,255,.05) !important;
    color: #dce6f5 !important;
    transition: border-color .2s, box-shadow .2s !important;
  }
  input:focus, textarea:focus, select:focus {
    border-color: rgba(201,168,76,.25) !important;
    box-shadow: 0 0 0 3px rgba(201,168,76,.05) !important;
    outline: none !important;
  }

  /* ════════════════════════════════════════════
     BUTTONS
     ════════════════════════════════════════════ */
  .btn, .action-btn {
    border-radius: 14px !important;
    min-height: 46px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: transform .1s !important;
  }
  .btn:active, .action-btn:active { transform: scale(.95) !important; }
  .btn-primary, .action-btn--primary {
    box-shadow: 0 4px 16px rgba(201,168,76,.1) !important;
  }
  .btn-sm { min-height: 36px !important; font-size: 12px !important; }

  /* ════════════════════════════════════════════
     MODALS — iOS Bottom Sheet
     ════════════════════════════════════════════ */
  .modal-overlay { align-items: flex-end !important; padding: 0 !important; }
  .modal-overlay.open {
    background: rgba(0,0,0,.55) !important;
    backdrop-filter: blur(3px) !important;
  }
  .modal-card {
    border-radius: 24px 24px 0 0 !important;
    max-height: 92vh !important;
    width: 100% !important; max-width: 100% !important;
    animation: _sheet .35s cubic-bezier(.16,1,.3,1) !important;
    background: rgba(8,12,22,.98) !important;
    border: none !important;
    border-top: 1px solid rgba(255,255,255,.03) !important;
    box-shadow: 0 -8px 40px rgba(0,0,0,.5) !important;
  }
  @keyframes _sheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .modal-header {
    border-radius: 24px 24px 0 0 !important;
    padding: 10px 20px 14px !important;
  }
  .modal-header::before {
    content: ''; display: block;
    width: 36px; height: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
    margin: 0 auto 12px;
  }
  .modal-title { font-size: 16px !important; }
  .modal-form { padding: 0 20px 20px !important; }
  .modal-footer { padding: 16px 0 0 !important; gap: 10px !important; }
  .modal-footer .btn { flex: 1 !important; }

  /* ════════════════════════════════════════════
     TABLES → CARD ROWS
     ════════════════════════════════════════════ */
  .data-table thead { display: none !important; }
  .data-table { border-collapse: separate !important; border-spacing: 0 6px !important; }
  .data-table tbody tr {
    display: flex; flex-wrap: wrap;
    padding: 12px 14px !important;
    background: rgba(6,10,20,.7) !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.025) !important;
    gap: 4px;
  }
  .data-table tbody td { padding: 2px 6px !important; border: none !important; font-size: 12px !important; }

  /* ════════════════════════════════════════════
     BADGES & STATUS
     ════════════════════════════════════════════ */
  .status-badge, .plan-badge, .nav-badge {
    border-radius: 20px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
  }

  /* ════════════════════════════════════════════
     TOAST
     ════════════════════════════════════════════ */
  .toast {
    bottom: 76px !important;
    left: 16px !important; right: 16px !important;
    border-radius: 16px !important;
    backdrop-filter: blur(24px) !important;
  }

  /* ════════════════════════════════════════════
     NOTIFICATIONS PAGE
     ════════════════════════════════════════════ */
  .notif-card, [class*="notif-item"] {
    border-radius: 14px !important;
    padding: 14px !important;
    margin-bottom: 6px !important;
  }

  /* ════════════════════════════════════════════
     LOGIN PAGE
     ════════════════════════════════════════════ */
  .login-wrapper {
    padding: 20px !important;
    min-height: 100dvh !important;
  }
  .login-card {
    border-radius: 24px !important;
    padding: 32px 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid rgba(201,168,76,.06) !important;
    backdrop-filter: blur(40px) !important;
  }
  .login-emblem {
    width: 64px !important; height: 64px !important;
    border-radius: 18px !important;
  }
  .login-title { font-size: 22px !important; }
  .login-form .btn-primary {
    min-height: 50px !important;
    font-size: 15px !important;
    border-radius: 14px !important;
    margin-top: 8px !important;
  }

  /* ════════════════════════════════════════════
     STANDALONE (installed PWA)
     ════════════════════════════════════════════ */
  @media (display-mode: standalone) {
    .topbar { padding-top: max(env(safe-area-inset-top, 10px), 10px) !important; }
    .pwa-install-banner { display: none !important; }
    body::before, body::after { opacity: .25 !important; }
  }
}

/* ── Extra small phones ──────────────────────── */
@media (max-width: 380px) {
  .portal-actions-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .jornais-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bottom-tab svg { width: 21px !important; height: 21px !important; }
  .bottom-tab span { font-size: 9px !important; }
  .bottom-tabs-inner { height: 52px; }
}

/* ── Desktop: hide all mobile UI ─────────────── */
@media (min-width: 769px) {
  .bottom-tabs, .pwa-install-banner, .pwa-splash, .ptr-indicator { display: none !important; }
}
