  html { overflow-x: hidden; }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --red:      #E5281A;
    --red-bg:   #FFF1F0;
    --red-dark: #B71C1C;
    --fg:       #111111;
    --fg2:      #555555;
    --fg3:      #999999;
    --bg:       #F5F5F5;
    --white:    #FFFFFF;
    --border:   #E8E8E8;
    --pill-bg:  #F0F0F0;
    --pill-act: #111111;
    --radius:   14px;
    --radius-sm:8px;
  }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--fg);
    font-size: 15px;
    overflow-x: hidden;
    line-height: 1.5;
    min-height: 100vh;
  }

  /* ── HERO BANNER ─────────────────────────────────── */
  .hero-banner {
    position: relative;
    width: 100%;
    height: 200px;
    background: #2a2a2a;
    overflow: hidden;
  }
  .hero-banner-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .55;
  }
  /* gradient overlay bottom */
  .hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45) 100%);
  }

  /* ── PROFILE CARD ─────────────────────────────────── */
  .profile-card {
    background: var(--white);
    position: relative;
    margin-top: -24px;
    padding: 0 20px 16px;
    z-index: 10;
  }

  .profile-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: -42px;
    margin-bottom: 10px;
  }
  .profile-logo {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .profile-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .profile-logo-placeholder {
    width: 100%; height: 100%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
  }

  .profile-info {
    text-align: center;
    padding-bottom: 16px;
  }
  .profile-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
  }
  .profile-address {
    font-size: 12px;
    color: var(--fg3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
  }
  .profile-address svg { width: 12px; height: 12px; fill: var(--red); flex-shrink: 0; }

  .profile-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .profile-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: var(--fg2);
    background: var(--white);
    text-decoration: none;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
  }
  .profile-pill:hover { border-color: var(--fg3); color: var(--fg); }
  .profile-pill.red { background: var(--red); border-color: var(--red); color: #fff; }
  .profile-pill.red:hover { background: var(--red-dark); border-color: var(--red-dark); }
  .profile-pill svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

  /* ── STICKY NAV (below profile card) ─────────────── */
  .header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;

    display: flex;
    justify-content: center;
  }

  .header-container {
  width: 100%;
  max-width: 780px;
  }

  .header-top {
    max-width: 780px;
    margin: 0 auto;
    padding: 10px 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-name-compact {
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
  }

  .dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; flex-shrink: 0; }

  /* ── INLINE SEARCH BAR ──────────────────────────── */
  .search-bar-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 10px 16px 6px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-h);
    z-index: 90;
  }

  .search-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pill-bg);
    border-radius: 12px;
    padding: 10px 14px;
    border: 1.5px solid transparent;
    transition: border-color .2s, box-shadow .2s;
  }
  .search-bar-inner:focus-within {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(229,40,26,0.08);
    background: #fff;
  }
  .search-bar-inner svg {
    width: 18px; height: 18px;
    fill: var(--fg3);
    flex-shrink: 0;
    transition: fill .2s;
  }
  .search-bar-inner:focus-within svg { fill: var(--red); }

  .search-bar-inner input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--fg);
    background: transparent;
  }
  .search-bar-inner input::placeholder { color: var(--fg3); }

  .search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    color: var(--fg3);
    border-radius: 50%;
    transition: background .15s, color .15s;
  }
  .search-clear:hover { background: rgba(0,0,0,0.06); color: var(--fg); }
  .search-clear svg { width: 16px; height: 16px; fill: currentColor; }

  .search-no-results {
    text-align: center;
    padding: 10px 0 4px;
    font-size: 13px;
    color: var(--fg3);
  }

  /* ── SEARCH HIGHLIGHT ────────────────────────────── */
  mark {
    background: #FFF3CD;
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
  }

  /* Items/sections hidden by search */
  .item.search-hidden { display: none; }
  .section.search-section-hidden { display: none; }

  /* ── OLD OVERLAY (kept hidden) ────────────────────── */
  .search-overlay { display: none !important; }

  /* ── NAV PILLS ──────────────────────────────────── */

  /* Wrapper que contém setas + scroll lado a lado */
  .nav-wrap {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
  }

  .nav-scroll {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-scroll::-webkit-scrollbar { display: none; }

  .nav-inner {
    display: inline-flex;
    gap: 6px;
    padding: 10px 4px;
    white-space: nowrap;
  }

  .page-wrap {
    background: var(--bg);
    padding-bottom: 40px;
  }

  /* Setas ficam fora do scroll, não se movem */
  .nav-arrow {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fg2);
    transition: background .15s, opacity .15s;
    line-height: 1;
  }
  .nav-arrow:hover { background: #f0f0f0; }
  .nav-arrow:disabled { opacity: 0.25; cursor: default; }

  .pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    transition: background .15s, color .15s;
    background: var(--pill-bg);
    color: var(--fg2);
    text-decoration: none;
    border: none;
    outline: none;
    white-space: nowrap;
  }
  .pill:hover { background: #E2E2E2; color: var(--fg); }
  .pill.active {
    background: var(--pill-act);
    color: #fff;
  }

  /* ── MAIN ───────────────────────────────────────── */
  .main {
    max-width: 780px;
    margin: 0 auto;
    padding: 24px 20px 60px;
  }

  /* ── SECTION ────────────────────────────────────── */
  .section { margin-bottom: 40px; }

  .section-label {
    font-size: 19px;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.4px;
    margin-bottom: 4px;
  }
  .section-sub {
    font-size: 12px;
    color: var(--fg3);
    margin-bottom: 14px;
    font-weight: 400;
  }

  /* ── ITEM CARD ──────────────────────────────────── */
  .item-list { display: flex; flex-direction: column; gap: 1px; }

  .item {
    background: var(--white);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
    cursor: default;
    transition: background .1s;
  }
  .item:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .item:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
  .item:only-child  { border-radius: var(--radius); }
  .item:hover       { background: #FAFAFA; }
  .item + .item     { border-top: 1px solid var(--border); }

  /* Lado esquerdo: cresce, mas nunca vaza */
  .item-body {
    flex: 1 1 0;
    min-width: 0;
  }
  .item-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .item-desc {
    display: block;
    font-size: 12px;
    color: var(--fg3);
    margin-top: 3px;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  /* Lado direito: preço fixo, nunca encolhe */
  .item-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    padding-top: 1px;
  }
  .item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.3px;
    white-space: nowrap;
    text-align: right;
  }
  .item-price-note {
    font-size: 10px;
    color: var(--fg3);
    font-weight: 400;
    white-space: nowrap;
    text-align: right;
  }

  /* ── BADGE ──────────────────────────────────────── */
  .badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 2px 7px;
    border-radius: 99px;
    background: var(--red-bg);
    color: var(--red-dark);
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }

  /* ── DIVIDER INSIDE LIST ────────────────────────── */
  .item + .item { border-top: 1px solid var(--border); }

  /* ── GROUP LABEL (within a section) ─────────────── */
  .group-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg3);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 16px 6px;
    background: var(--white);
    border-top: 1px solid var(--border);
  }
  .group-label:first-child {
    border-top: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  /* ── CONTACT FOOTER ─────────────────────────────── */
  .site-footer {
    background: #1a1a1a;
    margin-top: 48px;
  }

  .site-footer-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Logo + nome centralizados */
  .footer-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-logo {
    width: 60px; height: 60px;
    border-radius: 16px;
    overflow: hidden;
    background: #2e2e2e;
    flex-shrink: 0;
  }
  .footer-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
  .footer-brand-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
  }

  /* Botões lado a lado, com wrap em telas menores */
  .footer-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 99px;
    background: #2a2a2a;
    color: #d0d0d0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
    border: 1px solid #333;
  }
  .footer-btn:hover { background: #333; color: #fff; }
  .footer-btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .footer-btn--green { background: #1a3d26; border-color: #25D366; color: #25D366; }
  .footer-btn--green:hover { background: #25D366; color: #fff; }

  /* Barra inferior */
  .footer-bottom {
    max-width: 780px;
    margin: 0 auto;
    padding: 14px 24px;
    border-top: 1px solid #2a2a2a;
    font-size: 11px;
    color: #555;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
  }
  .footer-sep { color: #333; }
  .footer-dev {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color .15s;
  }
  .footer-dev:hover { color: #25D366; }

  @media (max-width: 520px) {
    .site-footer-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 500px) {
    .item-name { font-size: 13px; }
    .section-label { font-size: 17px; }
    .main { padding: 16px 12px 60px; }
    .profile-pills { gap: 6px; }
    .profile-pill { padding: 6px 10px; font-size: 11px; }
    .profile-pill svg { width: 12px; height: 12px; }
    .footer-btns { gap: 6px; }
    .footer-btn { padding: 8px 12px; font-size: 12px; }
  }

  @media print {
    .header { position: static; }
    .nav-scroll { display: none; }
  }
  /* ── CATEGORIAS OVERLAY ─────────────────────────── */
  .cat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 60px 16px 24px;
    overflow-y: auto;
  }
  .cat-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

  .cat-modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    overflow: hidden;
    animation: catSlideIn .2s ease;
  }
  @keyframes catSlideIn {
    from { opacity: 0; transform: translateY(-12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .cat-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border);
  }
  .cat-modal-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.2px;
  }
  .cat-close {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--pill-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
  }
  .cat-close:hover { background: #e0e0e0; }
  .cat-close svg { width: 18px; height: 18px; fill: var(--fg2); }

  .cat-grid {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
  }

  .cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    text-decoration: none;
    transition: background .12s;
    cursor: pointer;
  }
  .cat-card:hover { background: #fafafa; }
  .cat-card + .cat-card { border-top: 1px solid var(--border); }

  .cat-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--red-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .cat-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .cat-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--fg);
  }
  .cat-card-sub {
    font-size: 12px;
    color: var(--fg3);
  }

  .cat-arrow {
    width: 18px; height: 18px;
    fill: var(--fg3);
    flex-shrink: 0;
  }
