/* CSS específico — Ortopedia em São Paulo */
/* Treatments grid */
  .body-map {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-top: 64px;
  }
  .body-card {
    padding: 28px;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    border-radius: var(--r-md);
    display: flex; flex-direction: column; gap: 18px;
    min-height: 240px;
    transition: all .25s;
    cursor: pointer;
  }
  .body-card:hover { border-color: var(--gold); transform: translateY(-3px); }
  .body-card .icon-circle {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--font-display); font-size: 24px;
  }
  .body-card h4 { font-family: var(--font-display); font-size: 24px; color: var(--cream); }
  .body-card ul { list-style: none; font-size: 13px; color: var(--muted-on-dark); display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
  .body-card li::before { content: '— '; color: var(--gold); }
  @media (max-width: 920px) { .body-map { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .body-map { grid-template-columns: 1fr; } }

  /* Hybrid section */
  .hybrid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 80px; align-items: center;
  }
  .hybrid .ph { aspect-ratio: 4/5; }
  @media (max-width: 920px) { .hybrid { grid-template-columns: 1fr; gap: 48px; } }

  /* Treatment ladder */
  .ladder {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
  }
  .ladder-step {
    padding: 32px 24px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(201,163,92,0.02), transparent);
    position: relative;
  }
  .ladder-step:last-child { border-right: 0; }
  .ladder-step .l-num {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--gold); letter-spacing: 0.16em; margin-bottom: 16px;
  }
  .ladder-step h4 { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin-bottom: 8px; }
  .ladder-step p { font-size: 13px; color: var(--muted-on-dark); }
  @media (max-width: 920px) {
    .ladder { grid-template-columns: 1fr 1fr; }
    .ladder-step:nth-child(2n) { border-right: 0; }
    .ladder-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }

  /* Stats panel */
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(46,40,28,0.1);
    border-radius: var(--r-md);
    overflow: hidden;
    background: white;
  }
  .stat {
    padding: 40px 32px;
    border-right: 1px solid rgba(46,40,28,0.08);
    text-align: center;
  }
  .stat:last-child { border-right: 0; }
  .stat .n { font-family: var(--font-display); font-size: 56px; color: var(--gold-lo); line-height: 1; font-weight: 400; }
  .stat .lbl { font-size: 13px; color: var(--muted); margin-top: 10px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
  @media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; } .stat:nth-child(2n) { border-right: 0; } .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(46,40,28,0.08); } }

  /* Diff table */
  .diff {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-top: 56px;
  }
  .diff-row {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    border-top: 1px solid var(--line);
  }
  .diff-row:first-child {
    border-top: 0;
    background: rgba(201,163,92,0.05);
  }
  .diff-row > div { padding: 20px 24px; font-size: 14px; }
  .diff-row > div:not(:last-child) { border-right: 1px solid var(--line); }
  .diff-row .lbl-col { color: var(--cream); font-weight: 500; }
  .diff-row .head { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
  .diff-row .val { color: var(--muted-on-dark); }
  .diff-row .val.good { color: var(--gold-hi); }
  @media (max-width: 720px) {
    .diff-row { grid-template-columns: 1fr; }
    .diff-row > div { border-right: 0; border-top: 1px solid var(--line); }
    .diff-row > div:first-child { border-top: 0; }
    .diff-row:first-child { display: none; }
    .diff-row .lbl-col { font-weight: 700; font-size: 15px; }
    .diff-row > div.val::before {
      display: block;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px;
      content: "Modelo tradicional";
      color: var(--muted-on-dark);
    }
    .diff-row > div.val.good::before {
      content: "MedEsport";
      color: var(--gold);
    }
  }

  /* CTA strip */
  .o-cta {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 64px;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center;
  }
  .o-cta h2 { color: var(--ink); }
  .o-cta .lead { color: var(--muted); }
  @media (max-width: 820px) { .o-cta { padding: 40px 32px; grid-template-columns: 1fr; gap: 32px; } }
