/* =============================================================
 *  components/banners.css
 *  Extraído automaticamente de index.php.
 *  NÃO editar manualmente até remover o script de split.
 * ============================================================= */

    /* ── BANNER: iOS install / notificações ── */
    #install-banner, #notif-banner {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--panel);
      border-top: 1px solid var(--border);
      padding: 16px 20px;
      padding-bottom: max(16px, var(--zori-safe-bottom));
      display: flex; align-items: flex-start; gap: 14px;
      box-shadow: 0 -4px 20px rgba(30,34,80,.1);
      z-index: 500;
      animation: slideUp .3s ease;
    }

    .banner-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
    .banner-text { flex: 1; }
    .banner-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
    .banner-sub   { font-size: 12px; color: var(--text-2); font-weight: 500; line-height: 1.5; }

    .banner-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }

    .btn-banner-yes {
      padding: 8px 16px; background: var(--accent); color: #fff;
      border: none; border-radius: 20px; font-size: 13px; font-weight: 800;
      cursor: pointer; white-space: nowrap;
      transition: background .15s;
    }
    .btn-banner-yes:hover { background: var(--accent-h); }

    .btn-banner-no {
      padding: 8px 16px; background: transparent; color: var(--text-3);
      border: none; font-size: 12px; font-weight: 700;
      cursor: pointer; text-align: center;
    }
    .btn-banner-no:hover { color: var(--text-2); }

