:root {
  --ink: #131923;
  --ink-soft: #5d6470;
  --navy: #09294b;
  --navy-deep: #051e37;
  --ice: #eaf1f7;
  --paper: #f8f8f6;
  --white: #fff;
  --line: rgba(19, 25, 35, .13);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #78b9e8;
  outline-offset: 4px;
}
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
}

.site-header {
  width: min(1280px, calc(100% - 64px));
  height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}
.brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--navy);
  text-decoration: none;
}
.brand::after {
  content: "";
  position: absolute;
  left: 70px;
  right: -38px;
  bottom: -13px;
  height: 1px;
  background: linear-gradient(90deg, rgba(9, 41, 75, .35), transparent);
}
.brand-symbol,
.footer-symbol {
  position: relative;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(9, 41, 75, .12);
}
.brand-symbol img,
.footer-symbol img {
  position: absolute;
  left: 0;
  top: 0;
  width: 145px;
  height: 58px;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.02em;
}
.brand-name small {
  margin-top: 7px;
  color: #7b8490;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
nav a {
  color: var(--ink-soft);
  font-size: .9rem;
  text-decoration: none;
}
nav a:hover { color: var(--ink); }
nav a.active {
  color: var(--navy);
  font-weight: 600;
}
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); }
.button-primary:hover { background: var(--navy-deep); }
.button-outline { border-color: var(--line); }
.button-light { color: var(--navy); background: var(--white); }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: .92rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
}
.hero-copy {
  position: relative;
  align-self: center;
  padding: 72px 68px 72px 36px;
}
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  left: -92px;
  top: 50%;
  border: 1px solid rgba(9, 41, 75, .06);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 42px rgba(9, 41, 75, .018);
}
.eyebrow {
  margin: 0 0 20px;
  color: #778392;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 620px;
  margin: 0 0 26px;
  font-size: clamp(3rem, 4.7vw, 5.15rem);
  line-height: .99;
  letter-spacing: -.045em;
}
h1 em { color: var(--navy); font-weight: 400; }
.hero-lead {
  max-width: 500px;
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.credentials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
  color: #6d7580;
  font-size: .76rem;
  letter-spacing: .06em;
}
.credentials span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #9199a3;
}
.formation-copy {
  max-width: 570px;
  margin: 0 0 34px;
  padding-left: 18px;
  color: var(--ink-soft);
  border-left: 1px solid rgba(9, 41, 75, .2);
  font-size: .92rem;
  line-height: 1.65;
}
.actions { display: flex; align-items: center; gap: 26px; }
.hero-visual {
  position: relative;
  min-height: 700px;
  padding: 36px 0 54px 26px;
}
.image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--white);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-portrait {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(145deg, #e7edf1 0%, #f8f9f8 68%);
}
.portrait-stage {
  position: absolute;
  inset: 34px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.portrait-stage::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -90px;
  top: 42px;
  border: 1px solid rgba(9, 41, 75, .11);
  border-radius: 50%;
}
.portrait-line {
  position: absolute;
  inset: 52px 44px 0 72px;
  border-left: 1px solid rgba(9, 41, 75, .2);
  border-top: 1px solid rgba(9, 41, 75, .2);
}
.portrait-line::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 118px;
  border-top: 3px solid #0b8fb5;
}
.portrait-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
  filter: drop-shadow(0 26px 34px rgba(8, 28, 48, .13));
}
.image-note {
  position: absolute;
  right: 24px;
  bottom: 25px;
  margin: 0;
  padding: 16px 20px;
  color: var(--white);
  background: rgba(5, 30, 55, .92);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.2;
}
.image-note span { color: #afc4d8; font-family: var(--sans); font-size: .72rem; }

.trust-strip {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: var(--navy);
}
.trust-strip p {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}
.trust-strip p:last-child { border: 0; }
.trust-strip strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.trust-strip span { color: #b8c7d7; font-size: .75rem; }

.page-hero {
  width: min(1280px, calc(100% - 64px));
  min-height: 510px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.page-hero > div:first-child {
  align-self: center;
  padding: 72px 76px 72px 36px;
}
.page-hero h1,
.profile-page-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}
.page-hero > div:first-child > p:last-child {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.page-hero > img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
}
.profile-page-hero {
  width: min(1180px, calc(100% - 64px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 84px;
  align-items: center;
  padding: 76px 0 96px;
}
.profile-page-photo {
  height: 650px;
  overflow: hidden;
  background: #e8eef2;
}
.profile-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.profile-page-copy > p:not(.eyebrow):not(.credentials) {
  margin: 0 0 19px;
  color: var(--ink-soft);
}
.profile-page-copy .credentials { margin-top: 32px; }
.profile-social {
  width: min(100%, 470px);
  min-height: 112px;
  margin-top: 20px;
  padding: 14px 20px 14px 14px;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 18px;
  align-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(9, 41, 75, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.profile-social:hover {
  transform: translateY(-3px);
  border-color: rgba(9, 41, 75, .3);
  box-shadow: 0 24px 58px rgba(9, 41, 75, .13);
}
.profile-social img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.profile-social-copy { display: flex; flex-direction: column; line-height: 1.2; }
.profile-social-copy small {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.profile-social-copy strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}
.profile-social-arrow { color: var(--navy); font-size: 1.35rem; }
.surgery-experience {
  display: grid;
  grid-template-columns: .9fr 1.2fr .72fr;
  gap: 22px;
  align-items: stretch;
  border-top: 1px solid var(--line);
}
.surgery-experience-copy {
  align-self: center;
  padding-right: 34px;
}
.surgery-experience-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.surgery-experience-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.surgery-photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #dfe6eb;
}
.surgery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.surgery-photo:hover img { transform: scale(1.015); }
.surgery-photo-primary img { object-position: center 28%; }
.surgery-photo-secondary img { object-position: 8% center; }
.surgery-photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(5, 30, 55, .86);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-grid article {
  min-height: 255px;
  padding: 30px;
  background: var(--white);
}
.value-grid span { color: #8b95a0; font-size: .7rem; letter-spacing: .12em; }
.value-grid h3 { margin: 50px 0 12px; font-size: 1.55rem; }
.value-grid p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }
.locations-hero { background: linear-gradient(140deg, #f8f8f6, #edf2f5); }
.location-monogram {
  display: grid;
  place-items: center;
  min-height: 510px;
}
.location-monogram span {
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(9, 41, 75, .16);
  border-radius: 50%;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 5.5rem;
  box-shadow: 0 0 0 34px rgba(9, 41, 75, .025);
}
.location-portrait {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: linear-gradient(145deg, #dfe8ee, #f5f7f8);
}
.location-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(9, 41, 75, .08));
  pointer-events: none;
}
.location-portrait img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center 24%;
}
.locations-main { padding-top: 88px; }
.reviews-hero {
  width: min(1180px, calc(100% - 64px));
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.reviews-intro h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
}
.reviews-intro > p:last-child {
  max-width: 570px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.rating-panel {
  min-height: 360px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
}
.rating-source {
  margin-bottom: 26px;
  color: #afc2d2;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.rating-panel strong {
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  line-height: .9;
}
.stars {
  color: #cda95a;
  letter-spacing: .16em;
}
.rating-panel .stars { margin: 24px 0 8px; font-size: 1.25rem; }
.rating-panel p { margin: 0; color: #bbc9d5; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card {
  min-height: 190px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--white);
}
.review-card .stars { margin-bottom: auto; font-size: .86rem; }
.review-card p { margin: 28px 0 2px; font-family: var(--serif); font-size: 1.25rem; }
.review-card span { color: #858d96; font-size: .72rem; }
.review-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-cta-copy { max-width: 690px; }
.review-cta-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.review-cta-copy > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
}
.review-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.review-cta-actions .button { min-width: 190px; }

.section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 120px 0;
}
.section-intro { max-width: 720px; margin-bottom: 58px; }
.section-intro h2, .about-copy h2, .closing h2 {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.section-intro > p:last-child {
  max-width: 570px;
  color: var(--ink-soft);
}
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.treatment-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--white);
}
.treatment-card.featured {
  color: var(--white);
  background: var(--navy);
}
.card-number {
  color: #8893a0;
  font-size: .7rem;
  letter-spacing: .12em;
}
.treatment-card div { align-self: end; max-width: 410px; }
.treatment-card h3 { margin: 0 0 10px; font-size: 1.75rem; }
.treatment-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.treatment-card.featured p { color: #b9c8d6; }
.card-arrow { position: absolute; top: 26px; right: 28px; font-size: 1.25rem; }

.about {
  display: block;
  border-top: 1px solid var(--line);
}
.about-copy { max-width: 760px; }
.about-copy p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.about-copy .text-link { margin-top: 14px; }

.locations { border-top: 1px solid var(--line); }
.section-intro.compact { margin-bottom: 42px; }
.anatomy-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 22px;
}
.anatomy-grid-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  background: #fff;
}
.anatomy-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}
.anatomy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.marble-anatomy {
  object-fit: cover;
  background: #fff;
}
.marble-anatomy.shoulder-focus { object-position: 34% 16%; }
.marble-anatomy.shoulder-page-focus { object-position: 30% 0; }
.marble-anatomy.elbow-focus { object-position: 46% 55%; }
.marble-anatomy.elbow-page-focus { object-position: 43% 56%; }
.marble-anatomy.elbow-corrected-focus { object-position: 50% 50%; }
.marble-anatomy.full-figure-focus { object-position: 42% 36%; }
.marble-figure-card { min-height: 680px; }
.anatomy-card:hover img { transform: scale(1.015); }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.location-card {
  min-height: 330px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location-card.proortho { color: var(--white); background: #153a59; }
.location-card.ortofis { background: var(--white); border: 1px solid var(--line); }
.clinic-logo {
  width: 210px;
  height: 72px;
  margin-bottom: auto;
  overflow: hidden;
  background: var(--white);
}
.clinic-logo img { width: 100%; height: 100%; object-fit: contain; }
.location-card p { margin: 28px 0 2px; font-family: var(--serif); font-size: 1.35rem; }
.location-card span { margin-bottom: 24px; color: #7d8791; font-size: .82rem; }
.proortho span { color: #b6c6d3; }
.location-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.location-actions .button { flex: 1 1 190px; }
.button-waze {
  color: var(--navy);
  border-color: rgba(9, 41, 75, .22);
  background: transparent;
}
.button-waze:hover { background: var(--ice); }
.button-waze.button-on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .38);
}
.button-waze.button-on-dark:hover { background: rgba(255, 255, 255, .1); }
.prototype-note { margin: 18px 0 0; color: #818791; font-size: .75rem; }

.closing {
  padding: 120px 32px;
  text-align: center;
  background: #edf2f5;
}
.closing h2 { max-width: 820px; margin-inline: auto; }
.closing > p:not(.eyebrow) { margin: 0 auto 30px; color: var(--ink-soft); }
.closing .button { margin-top: 4px; }
footer {
  padding: 46px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  color: #79808a;
  background: var(--white);
  font-size: .75rem;
}
footer .footer-symbol {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
}
footer .footer-symbol img {
  width: 120px;
  height: 48px;
}

/* Conteúdo clínico */
.specialty-choices,
.condition-grid,
.signal-grid,
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.specialty-choice,
.condition-card,
.signal-card,
.credential-card,
.faq-item,
.notice-panel {
  border: 1px solid var(--line);
  background: var(--white);
}
.specialty-choice {
  min-height: 340px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.specialty-choice:first-child { background: var(--navy); color: var(--white); }
.specialty-choice p { max-width: 42ch; opacity: .78; }
.condition-card, .signal-card, .credential-card { padding: 30px; }
.condition-card h3, .signal-card h3, .credential-card h3 { margin: 0 0 12px; font-size: 1.45rem; }
.condition-card p, .signal-card p, .credential-card p { margin: 0; color: var(--ink-soft); }
.clinical-intro { max-width: 780px; }
.clinical-intro > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.12rem; }
.clinical-note { margin-top: 28px; padding: 22px 24px; border-left: 3px solid var(--ice); color: var(--ink-soft); background: #f5f8fa; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0 28px; }
.faq-item summary { padding: 24px 0; cursor: pointer; font-family: "Fraunces", serif; font-size: 1.3rem; }
.faq-item p { margin: 0; padding: 0 0 24px; color: var(--ink-soft); max-width: 78ch; }
.notice-panel { padding: 34px; max-width: 880px; }
.notice-panel h2 { margin-top: 0; }
.page-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: inherit; }

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto;
  }
  .header-cta { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    border: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
  }
  .menu-button span:not(.sr-only) { width: 22px; height: 1px; background: var(--ink); }
  nav {
    position: absolute;
    z-index: 20;
    top: 82px;
    left: 16px;
    right: 16px;
    padding: 24px;
    display: none;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
  }
  nav.open { display: flex; }
  .hero {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
  .page-hero,
  .profile-page-hero,
  .reviews-hero {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
  .reviews-hero { gap: 40px; padding: 70px 0; }
  .rating-panel { min-height: 300px; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cta { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  .review-cta-actions { justify-content: flex-start; }
  .page-hero > div:first-child { padding: 72px 4px 46px; }
  .page-hero > img { min-height: 460px; }
  .profile-page-hero { gap: 46px; padding: 64px 0 78px; }
  .profile-page-photo { height: 570px; }
  .surgery-experience { grid-template-columns: 1fr 1fr; }
  .surgery-experience-copy { grid-column: 1 / -1; max-width: 760px; padding: 0 0 20px; }
  .surgery-photo { min-height: 460px; }
  .value-grid { grid-template-columns: 1fr; }
  .location-monogram { min-height: 360px; }
  .location-portrait, .location-portrait img { min-height: 440px; }
  .hero-copy { padding: 74px 4px 44px; }
  .hero-visual { min-height: auto; padding: 0 0 48px; }
  .hero-portrait { min-height: 650px; padding: 0; }
  .portrait-stage { inset: 20px 0 0; }
  .image-frame { aspect-ratio: 1 / 1; }
  .trust-strip {
    width: calc(100% - 32px);
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-strip p { border: 0; }
  .section { width: calc(100% - 32px); padding: 82px 0; }
  .anatomy-grid { grid-template-columns: 1fr 1fr; }
  .condition-grid, .signal-grid, .credentials-grid { grid-template-columns: 1fr 1fr; }
  .anatomy-card { min-height: 420px; }
}

@media (max-width: 620px) {
  .brand-symbol { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-symbol img { width: 120px; height: 48px; }
  .brand-name strong { font-size: 1.12rem; }
  .brand-name small { font-size: .55rem; }
  h1 { font-size: 2.85rem; }
  .actions { align-items: flex-start; flex-direction: column; }
  .credentials { flex-wrap: wrap; }
  .image-note { right: 10px; bottom: 34px; }
  .treatment-grid, .location-grid, .anatomy-grid, .review-grid { grid-template-columns: 1fr; }
  .specialty-choices, .condition-grid, .signal-grid, .credentials-grid { grid-template-columns: 1fr; }
  .specialty-choice { min-height: 290px; padding: 30px; }
  .treatment-card { min-height: 250px; }
  .profile-page-photo { height: 480px; }
  .surgery-experience { grid-template-columns: 1fr; }
  .surgery-experience-copy { grid-column: auto; }
  .surgery-photo { min-height: 420px; }
  .profile-social { grid-template-columns: 68px 1fr auto; gap: 14px; padding: 12px 16px 12px 12px; }
  .profile-social img { width: 68px; height: 68px; }
  .profile-social-copy strong { font-size: 1.3rem; }
  .location-monogram span { width: 200px; height: 200px; font-size: 4.2rem; }
  .location-portrait, .location-portrait img { min-height: 400px; }
  .hero-portrait { min-height: 530px; }
  .portrait-line { inset: 38px 18px 0 38px; }
  .anatomy-card { min-height: 400px; }
  .review-cta-actions { flex-direction: column; }
  .review-cta-actions .button { width: 100%; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
/*
Theme Name: Dr. Diogo Premium
Theme URI: https://drdiogomartins.com.br/
Author: Dr. Diogo Martins
Description: Tema institucional leve e responsivo para o site do Dr. Diogo Martins.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: dr-diogo-premium
*/
