/* ============================================================
   Procedure detail page styles
   ============================================================ */

.pd-hero {
  background: var(--cream-warm);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.pd-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  min-height: 520px;
}
.pd-hero__copy { padding: 40px 0 80px; max-width: 520px; }
.pd-hero h1 {
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.04;
  margin: 20px 0 22px;
}
.pd-hero__sub { font-size: 17px; line-height: 1.55; opacity: 0.82; margin-bottom: 22px; max-width: 460px; }
.pd-hero__support { font-size: 14.5px; line-height: 1.65; opacity: 0.7; margin-bottom: 34px; max-width: 460px; }
.pd-hero__media {
  position: relative;
  align-self: center;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pd-crumbs {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.pd-crumbs a { color: inherit; text-decoration: none; }
.pd-crumbs a:hover { color: var(--burgundy); }
.pd-crumbs .sep { margin: 0 8px; opacity: 0.4; }

.pd-section {
  padding: 100px 0;
}
.pd-section--cream { background: var(--cream); }
.pd-section--warm { background: var(--cream-warm); }
.pd-section--green { background: var(--green); color: var(--cream); }
.pd-section--green h2, .pd-section--green h3 { color: var(--cream); }

.pd-section__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pd-section__inner--single {
  display: block;
  text-align: center;
  max-width: 720px;
}
.pd-section h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.1; margin-bottom: 18px; max-width: 480px; }
.pd-section .sub { font-style: italic; font-family: var(--serif); font-size: 18px; line-height: 1.5; opacity: 0.88; margin-bottom: 18px; max-width: 460px; }
.pd-section p { font-size: 15px; line-height: 1.7; opacity: 0.82; max-width: 480px; }
.pd-section p + p { margin-top: 16px; }
.pd-section__inner--single h2, .pd-section__inner--single .sub, .pd-section__inner--single p { max-width: 720px; margin-left: auto; margin-right: auto; }

.pd-section--green p { color: var(--cream); opacity: 0.85; }
.pd-section--green .eyebrow { color: var(--cream); opacity: 0.75; }
.pd-section--green .btn { background: var(--cream); color: var(--green); }
.pd-section--green .btn:hover { background: var(--cream-warm); }

.pd-section__media {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.pd-section__media--portrait { height: 480px; }

.pd-section .order-2 { order: 2; }

/* Related procedures strip */
.pd-related {
  padding: 90px 0;
  background: var(--cream);
}
.pd-related__head { text-align: center; max-width: 600px; margin: 0 auto 50px; padding: 0 32px; }
.pd-related__head h2 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 14px; }
.pd-related__head p { font-size: 14.5px; opacity: 0.75; max-width: 480px; margin: 0 auto; }
.pd-related__grid {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pd-related__card {
  background: var(--cream-warm);
  padding: 16px 16px 24px;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.pd-related__card:hover { transform: translateY(-3px); }
.pd-related__card__media { height: 160px; border-radius: 4px; overflow: hidden; }
.pd-related__card h3 { font-size: 18px; line-height: 1.25; }
.pd-related__card p { font-size: 12.5px; opacity: 0.72; line-height: 1.55; }

@media (max-width: 880px) {
  .pd-hero__inner { grid-template-columns: 1fr; padding-top: 12px; }
  .pd-hero__copy { padding: 12px 0 24px; }
  .pd-hero__media { height: 380px; }
  .pd-section__inner { grid-template-columns: 1fr; gap: 30px; }
  .pd-section .order-2 { order: 0; }
  .pd-section__media { height: 320px; }
  .pd-related__grid { grid-template-columns: 1fr; }
}

/* Marca F&R em títulos — fonte Alike */
.fr-mark { font-family: "Alike", "Playfair Display", Georgia, serif; font-weight: 400; }
