/* ============================================================
   Treatment detail pages (linfedema, lipedema, etc)
   ============================================================ */

.t-hero {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0 clamp(40px, 5vw, 80px);
  background: var(--cream);
  overflow: hidden;
}
.t-hero .blob-a {
  position: absolute; top: -100px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(closest-side, rgba(107,122,82,0.20), transparent 70%);
  filter: blur(20px); z-index: 0;
}

.t-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.t-hero h1 {
  font-size: clamp(48px, 6.6vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-weight: 400;
}
.t-hero h1 em { font-style: italic; font-weight: 300; color: var(--green-deep); }
.t-hero .lead { max-width: 50ch; margin-bottom: 36px; }
.t-hero .key-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 14px;
}
.t-hero .key-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.t-hero .key-list li::before {
  content: ""; width: 18px; height: 18px;
  border: 1.5px solid var(--sage); border-radius: 50%;
  flex-shrink: 0; margin-top: 3px;
  background: radial-gradient(circle, var(--sage) 30%, transparent 35%);
}

.t-hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 460px;
}
.t-hero-visual .main {
  position: absolute; inset: 0;
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.t-hero-visual .tag-float {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--green-deep);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 14px;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.2;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  z-index: 2;
}
.t-hero-visual .tag-float small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
  margin-bottom: 8px;
}
@media (max-width: 920px) {
  .t-hero-grid { grid-template-columns: 1fr; }
  .t-hero-visual { min-height: 380px; max-width: 460px; margin: 0 auto; }
}

/* QUICK FACTS */
.t-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.t-fact {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.t-fact:last-child { border-right: 0; }
.t-fact .num {
  font-family: var(--display);
  font-size: 44px;
  color: var(--green-deep);
  line-height: 1;
}
.t-fact .num sup { font-size: 20px; line-height: 1; vertical-align: top; }
.t-fact .lbl {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
  max-width: 22ch;
  line-height: 1.5;
}
@media (max-width: 880px) { .t-facts { grid-template-columns: 1fr 1fr; } .t-fact:nth-child(2) { border-right: 0; } .t-fact:nth-child(1), .t-fact:nth-child(2) { border-bottom: 1px solid var(--line); } }
@media (max-width: 520px) { .t-facts { grid-template-columns: 1fr; } .t-fact { border-right: 0; border-bottom: 1px solid var(--line); } .t-fact:last-child { border-bottom: 0; } }

/* SECTION GRID */
.t-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.t-two.reverse { direction: rtl; }
.t-two.reverse > * { direction: ltr; }
.t-two .visual {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
}
@media (max-width: 880px) {
  .t-two { grid-template-columns: 1fr; }
  .t-two.reverse { direction: ltr; }
  .t-two .visual { max-width: 500px; }
}

/* SYMPTOMS */
.symptoms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sym {
  padding: 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.sym:hover { transform: translateY(-3px); border-color: var(--sage); }
.sym .ico {
  width: 40px; height: 40px;
  background: var(--cream-warm);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.sym .ico svg { width: 18px; height: 18px; }
.sym h4 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.2;
}
.sym p { margin: 0; font-size: 14px; color: var(--ink-3); line-height: 1.55; }
@media (max-width: 880px) { .symptoms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .symptoms { grid-template-columns: 1fr; } }

/* TECHNIQUES (numbered list with image) */
.techniques {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
}
.techniques .visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
}
.tech-list { list-style: none; padding: 0; margin: 0; }
.tech-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
}
.tech-list li:last-child { border-bottom: 0; }
.tech-list .num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--sage);
  line-height: 1;
  padding-top: 4px;
}
.tech-list h4 {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  margin: 0 0 8px;
  line-height: 1.2;
}
.tech-list p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 50ch; }
@media (max-width: 880px) {
  .techniques { grid-template-columns: 1fr; }
  .techniques .visual { position: relative; top: 0; max-width: 500px; }
}

/* QUOTE PULL */
.t-pull {
  background: var(--cream-soft);
}
.t-pull-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 0;
  align-items: flex-start;
}
.t-pull .mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 100px;
  line-height: 0.8;
  color: var(--olive);
}
.t-pull blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
}
.t-pull .cite {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
@media (max-width: 640px) { .t-pull-inner { grid-template-columns: 1fr; gap: 16px; } }

/* Comparison card (replaces visual in t-two) */
.t-two .visual-content { align-self: center; }
.compare-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 2.2vw, 34px);
}
.compare-card .cc-eyebrow {
  display: inline-flex;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding-bottom: 18px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.compare-card .cc-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.compare-card .cc-row:last-child { border-bottom: 0; padding-bottom: 0; }
.compare-card .cc-trait {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  margin-bottom: 12px;
}
.compare-card .cc-vals {
  display: grid;
  gap: 8px;
}
.compare-card .cc-vals span {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.compare-card .cc-vals em {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  min-width: 78px;
  margin-right: 8px;
}
.compare-card .cc-vals span:first-child em { color: var(--green-deep); }

/* Outros tratamentos — cross-link cards */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.treat {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 18px);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.treat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.treat .img { aspect-ratio: 4 / 5; }
.treat .body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.treat .body h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
}
.treat .body p { margin: 0 0 22px; font-size: 14.5px; color: var(--ink-3); line-height: 1.55; flex: 1; }
.treat .body .btn-link { font-size: 11px; padding-bottom: 4px; }
@media (max-width: 880px) { .treat-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
