:root {
  /* Parametros principais de edicao */
  --bg: #f2ebfc;
  --surface: rgba(250, 246, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #2d2540;
  --muted: #665d78;
  --line: rgba(143, 121, 187, 0.28);
  --accent: #c9b8eb;
  --accent-strong: #8763c2;
  --highlight: #eee6fb;
  --shadow: 0 24px 80px rgba(123, 97, 168, 0.16);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --measure: 58ch;
  --measure-wide: 64ch;
  --measure-card: 34ch;
  --home-hero-stack-width: clamp(300px, 31vw, 360px);
  --hero-profile-width: var(--home-hero-stack-width);
  --copy-align: left;
  --copy-align-last: auto;
  --copy-justify: auto;
  --copy-hyphens: manual;
  --copy-size: 1.02rem;
  --copy-line-height: 1.72;
  --copy-flow-space: 1.15rem;
  --copy-section-gap: 1.55rem;
  --section-title-measure: 15ch;
  --hero-media-ratio: auto;
  --hero-media-fit: contain;
  --hero-media-position: center center;
  --hero-media-max-height: 780px;
  --hero-media-bg: rgba(252, 249, 255, 0.96);
  --spotlight-media-ratio: auto;
  --spotlight-media-fit: contain;
  --spotlight-media-position: center center;
  --spotlight-media-max-height: 720px;
  --spotlight-media-bg: rgba(252, 249, 255, 0.96);
  --portrait-media-ratio: 3 / 4;
  --portrait-media-fit: cover;
  --portrait-media-position: center top;
  --portrait-media-max-height: none;
  --portrait-media-bg: transparent;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(201, 184, 235, 0.92), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.78), transparent 18%),
    radial-gradient(circle at bottom right, rgba(221, 207, 246, 0.62), transparent 22%),
    linear-gradient(180deg, #fcfbff 0%, #f2ebfc 48%, #f8f4ff 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

main p {
  margin: 0;
  line-height: var(--copy-line-height);
  color: var(--muted);
  display: block;
  width: 100%;
  font-size: var(--copy-size);
  text-align: var(--copy-align) !important;
  text-align-last: var(--copy-align-last) !important;
  text-justify: var(--copy-justify) !important;
  -webkit-hyphens: var(--copy-hyphens) !important;
  -ms-hyphens: var(--copy-hyphens) !important;
  hyphens: var(--copy-hyphens) !important;
}

.credential-list span,
.editorial-stats span,
.detail-list p,
.hero-badge strong,
.contact-channel-card p,
.contact-spotlight-copy p,
.profile-summary p,
.bio-spotlight-copy p,
.editorial-copy p,
.service-card p,
.glass-item p,
.article-card p {
  display: block;
  width: 100%;
  text-align: var(--copy-align) !important;
  text-align-last: var(--copy-align-last) !important;
  text-justify: var(--copy-justify) !important;
  -webkit-hyphens: var(--copy-hyphens) !important;
  -ms-hyphens: var(--copy-hyphens) !important;
  hyphens: var(--copy-hyphens) !important;
}

.text-justify {
  --copy-align: justify;
  --copy-align-last: justify;
  --copy-justify: inter-word;
  --copy-hyphens: auto;
}

.text-left {
  --copy-align: left;
  --copy-align-last: left;
  --copy-justify: auto;
  --copy-hyphens: manual;
}

.copy-wide {
  --copy-block-measure: var(--measure-wide);
}

.copy-full {
  --copy-block-measure: none;
  --copy-card-measure: none;
  --section-title-measure: none;
}

.headings-wide {
  --section-title-measure: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-optical-sizing: auto;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h3 {
  font-size: 1.8rem;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(249, 244, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  inline-size: 46px;
  block-size: 46px;
  width: 46px;
  height: 46px;
  min-width: 46px;
  max-width: 46px;
  min-height: 46px;
  max-height: 46px;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  min-width: 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
  font-weight: 700;
}

.hero,
.feature-split,
.contact-layout,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 430px);
  gap: 54px;
  align-items: start;
}

.hero-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, var(--hero-profile-width));
  column-gap: clamp(34px, 5vw, 64px);
  row-gap: 28px;
  align-items: start;
  padding: 48px 42px 40px;
  border: 1px solid rgba(143, 121, 187, 0.2);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 237, 255, 0.86) 100%);
  box-shadow: 0 30px 90px rgba(123, 97, 168, 0.14);
  overflow: hidden;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, var(--home-hero-stack-width));
  gap: clamp(40px, 5vw, 68px);
  align-items: start;
  padding: 48px 42px 40px;
  border: 1px solid rgba(143, 121, 187, 0.2);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 237, 255, 0.86) 100%);
  box-shadow: 0 30px 90px rgba(123, 97, 168, 0.14);
  overflow: hidden;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::before {
  top: -140px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(170, 147, 216, 0.18), transparent 72%);
}

.home-hero::after {
  bottom: -120px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.76), transparent 68%);
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home::before {
  top: -140px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(170, 147, 216, 0.18), transparent 72%);
}

.hero-home::after {
  bottom: -120px;
  left: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.76), transparent 68%);
}

.hero-home > * {
  position: relative;
  z-index: 1;
}

.page-hero {
  display: grid;
  gap: 28px;
  padding: 34px 0 18px;
}

.page-hero p {
  max-width: var(--measure-wide);
}

.eyebrow {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(143, 121, 187, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(123, 97, 168, 0.08);
}

.hero-text {
  max-width: var(--measure);
  font-size: 1.06rem;
  margin-top: 8px;
}

.hero-copy {
  display: grid;
  gap: 26px;
  align-content: start;
  padding-top: 14px;
  justify-items: stretch;
}

.home-hero-copy {
  display: grid;
  gap: 26px;
  align-content: start;
  justify-items: stretch;
  padding-top: 14px;
}

.hero-home h1 {
  font-size: clamp(3.15rem, 5.9vw, 5.15rem);
  max-width: 10.5ch;
}

.home-hero h1 {
  font-size: clamp(3.15rem, 5.9vw, 5.15rem);
  max-width: 10.5ch;
}

.hero-home .hero-text,
.home-hero .hero-text {
  width: 100% !important;
  max-width: min(100%, var(--copy-block-measure, var(--measure))) !important;
  margin-top: 0;
}

.hero-manifesto {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(143, 121, 187, 0.18);
  border-left: 4px solid var(--accent-strong);
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 40px rgba(123, 97, 168, 0.08);
}

.hero-manifesto-label {
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  max-width: 100%;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 238, 255, 0.92);
  color: var(--text);
  font-size: 0.92rem;
}

.hero-home .hero-inline-facts span {
  padding: 12px 16px;
  border-color: rgba(143, 121, 187, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(123, 97, 168, 0.08);
}

.hero-actions--footer {
  width: 100%;
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 14px;
  justify-content: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  max-width: 100%;
  min-width: 0;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 14px 34px rgba(143, 121, 187, 0.28);
}

.button-secondary {
  background: rgba(247, 241, 255, 0.92);
  border-color: var(--line);
  color: var(--text);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.hero-card,
.service-card,
.article-card,
.glass-item,
.cta-panel,
.article-feature,
.editorial-copy,
.editorial-stats {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card {
  --media-ratio: 4 / 5;
  --media-fit: cover;
  --media-position: center center;
  --media-max-height: none;
  --media-bg: transparent;
  position: relative;
  padding: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: var(--media-ratio);
  object-fit: var(--media-fit);
  object-position: var(--media-position);
  max-height: var(--media-max-height);
  background: var(--media-bg);
  border-radius: calc(var(--radius-lg) - 10px);
}

.media-frame--hero {
  --media-ratio: var(--hero-media-ratio);
  --media-fit: var(--hero-media-fit);
  --media-position: var(--hero-media-position);
  --media-max-height: var(--hero-media-max-height);
  --media-bg: var(--hero-media-bg);
}

.media-frame--spotlight {
  --media-ratio: var(--spotlight-media-ratio);
  --media-fit: var(--spotlight-media-fit);
  --media-position: var(--spotlight-media-position);
  --media-max-height: var(--spotlight-media-max-height);
  --media-bg: var(--spotlight-media-bg);
}

.media-frame--portrait {
  --media-ratio: var(--portrait-media-ratio);
  --media-fit: var(--portrait-media-fit);
  --media-position: var(--portrait-media-position);
  --media-max-height: var(--portrait-media-max-height);
  --media-bg: var(--portrait-media-bg);
}

.media-fit-contain {
  --media-ratio: auto;
  --media-fit: contain;
}

.media-fit-cover {
  --media-fit: cover;
}

.media-fit-natural {
  --media-ratio: auto;
  --media-fit: contain;
  --media-position: center center;
}

.hero-home .hero-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 236, 255, 0.94) 100%);
}

.hero-home .hero-card--open {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-card--open::before {
  content: none;
}

.hero-home .hero-card--open img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  max-height: none;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(65, 49, 96, 0.1);
  background: transparent;
}

.hero-portrait {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 24px 70px rgba(65, 49, 96, 0.1);
}

.home-hero-aside {
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 22px;
  width: min(100%, var(--home-hero-stack-width));
  justify-self: end;
}

.home-hero-portrait {
  margin: 0;
  width: min(100%, var(--home-hero-stack-width));
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-hero-portrait img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 24px 70px rgba(65, 49, 96, 0.1);
}

.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 250px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(250, 245, 255, 0.96);
  box-shadow: 0 10px 30px rgba(123, 97, 168, 0.18);
}

.hero-badge span,
.article-tag,
.service-card span,
.timeline-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.hero-badge strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  padding-top: 86px;
}

.section--editorial .section-heading {
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(143, 121, 187, 0.16);
}

.statement-band {
  padding-top: 26px;
}

.statement-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-mark {
  font-family: "Fraunces", serif;
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.section-intro {
  display: grid;
  gap: 24px;
  width: 100%;
  margin-bottom: 46px;
  justify-items: stretch;
}

.section-intro-title,
.section-intro-copy {
  display: block;
  width: 100%;
  max-width: none;
}

.section-intro-copy {
  margin-top: var(--copy-section-gap);
}

.section-intro--spacious .section-intro-copy {
  margin-top: clamp(8rem, 15vw, 14rem);
}

.page-hero > h1 + p,
.bio-spotlight-copy > h2 + p,
.editorial-copy > h2 + p,
.contact-spotlight-copy > h2 + p,
.article-feature > h2 + p,
.bio-main .glass-item > h2 + p,
.section-heading--vertical > h2 + p {
  margin-top: var(--copy-section-gap);
}

.section-heading--vertical {
  gap: 18px;
}

.section-heading--vertical h2,
.section-heading--vertical p {
  width: 100%;
  max-width: var(--measure-wide);
}

.section-heading--fluid {
  justify-items: stretch;
}

.section-heading--fluid h2,
.section-heading--fluid > p:not(.eyebrow) {
  width: 100%;
  max-width: none;
}

.split-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.compact h2 {
  max-width: var(--section-title-measure);
}

.split-heading p:last-child {
  max-width: 42ch;
}

.institutions-heading {
  gap: 18px;
}

.institutions-heading h2 {
  max-width: none;
  width: 100%;
}

.institutions-heading p:last-child {
  max-width: var(--measure-wide);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.article-card,
.glass-item,
.article-feature,
.cta-panel,
.editorial-copy,
.editorial-stats {
  padding: 32px;
  border-radius: var(--radius-md);
}

.service-card h3,
.article-card h3,
.glass-item h3,
.glass-item h2 {
  margin-bottom: 12px;
}

.intro-band {
  padding-top: 26px;
}

.feature-panel {
  display: grid;
  gap: 18px;
}

.expertise-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  align-items: stretch;
}

.expertise-grid .service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  overflow: hidden;
}

.expertise-grid .service-card h3,
.expertise-grid .service-card p {
  max-width: none;
}

.expertise-grid .service-card span {
  width: fit-content;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(143, 121, 187, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.service-card--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 236, 253, 0.96) 100%);
}

.service-card--primary h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.service-card--accent {
  transform: translateY(34px);
  background: linear-gradient(180deg, #aa93d8 0%, #8763c2 100%);
  box-shadow: 0 26px 60px rgba(123, 97, 168, 0.2);
}

.service-card--accent h3,
.service-card--accent p,
.service-card--accent span {
  color: #fff;
}

.service-card--accent span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
}

.service-card--supporting {
  align-self: end;
  background: rgba(255, 255, 255, 0.78);
}

.feature-list,
.article-stack,
.contact-cards,
.about-copy {
  display: grid;
  gap: 22px;
}

.feature-visuals {
  grid-template-columns: 1fr 1fr;
}

.feature-visuals .image-panel {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
}

.feature-visuals .image-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.accent-panel {
  background: linear-gradient(180deg, #a892cf 0%, #8f79bb 100%);
}

.accent-panel h3,
.accent-panel p {
  color: #ffffff;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.editorial-band--featured .editorial-copy {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 233, 251, 0.96) 100%);
}

.editorial-band--featured .editorial-stats {
  position: relative;
  overflow: hidden;
}

.editorial-band--featured .editorial-stats::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -50px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 147, 216, 0.16), transparent 72%);
}

.editorial-copy {
  display: grid;
  gap: 24px;
}

.editorial-stats {
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f1ebfa 100%);
}

.editorial-stats div {
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.editorial-stats div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editorial-stats strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(180deg, #b6a1d8 0%, #8f79bb 100%);
}

.cta-panel--contact {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 36px;
}

.cta-panel--contact::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
}

.cta-copy,
.cta-actions--stack {
  position: relative;
  z-index: 1;
}

.cta-copy {
  display: grid;
  gap: 16px;
  max-width: 42rem;
}

.cta-actions--stack {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.cta-caption {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #ffffff;
}

.article-feature h2 {
  margin-bottom: 12px;
  max-width: 16ch;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 52px;
  border-top: 1px solid rgba(143, 121, 187, 0.16);
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.thank-you {
  min-height: 60vh;
  align-content: center;
}

.page-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(246, 240, 255, 0.82);
  box-shadow: var(--shadow);
}

.page-subnav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  background: rgba(252, 249, 255, 0.94);
  color: var(--muted);
}

.hero-inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-inline-facts span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 241, 255, 0.95);
  font-size: 0.9rem;
}

.profile-panel,
.bio-side,
.bio-main {
  display: grid;
  gap: 18px;
}

.profile-summary {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(249, 244, 255, 0.94);
  box-shadow: var(--shadow);
}

.profile-panel--hero {
  position: relative;
  display: grid;
  justify-items: stretch;
  align-content: start;
  gap: 22px;
  width: min(100%, var(--hero-profile-width));
  max-width: min(100%, var(--hero-profile-width));
  justify-self: end;
}

.profile-summary--hero {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(123, 97, 168, 0.16);
  backdrop-filter: blur(16px);
}

.home-hero-summary {
  position: relative;
  z-index: 2;
  width: min(100%, var(--home-hero-stack-width));
  margin: 0;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(123, 97, 168, 0.16);
  backdrop-filter: blur(16px);
}

.credential-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.credential-list li {
  display: grid;
  gap: 7px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.credential-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.credential-list strong {
  font-size: 0.95rem;
  font-weight: 800;
}

.bio-spotlight,
.bio-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.bio-spotlight-copy {
  display: grid;
  gap: 24px;
}

.bio-spotlight--editorial {
  align-items: center;
}

.bio-spotlight--editorial .bio-spotlight-copy {
  padding: 26px 0 26px 22px;
  border-left: 1px solid rgba(143, 121, 187, 0.16);
}

.detail-list {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.detail-list div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.institutions-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  align-items: stretch;
}

.institutions-grid .glass-item {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.glass-item--wide {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 233, 251, 0.96) 100%);
}

.glass-item--wide h3 {
  font-size: clamp(2rem, 4vw, 2.45rem);
}

.glass-item--soft {
  background:
    linear-gradient(180deg, rgba(247, 241, 255, 0.94) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.glass-item--lined {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(143, 121, 187, 0.1), var(--shadow);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.journey-grid {
  position: relative;
  align-items: stretch;
}

.journey-grid::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(143, 121, 187, 0.24), rgba(143, 121, 187, 0.56), rgba(143, 121, 187, 0.24));
}

.journey-card {
  position: relative;
  min-height: 230px;
  padding-top: 44px;
}

.journey-card::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 32px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 10px rgba(170, 147, 216, 0.18);
}

.journey-card .timeline-label {
  position: relative;
  z-index: 1;
}

.contact-simple {
  padding-top: 34px;
}

.contact-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.contact-spotlight-copy,
.contact-channel-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(249, 244, 255, 0.94);
  box-shadow: var(--shadow);
}

.contact-spotlight-copy {
  display: grid;
  gap: 24px;
}

.contact-channel-card {
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(252, 249, 255, 0.98) 0%, rgba(236, 227, 251, 0.98) 100%);
}

.contact-channel-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
}

.hero-copy,
.home-hero-copy,
.feature-panel,
.bio-spotlight-copy,
.editorial-copy,
.contact-spotlight-copy,
.cta-copy,
.bio-main,
.page-hero {
  justify-items: stretch;
}

.hero-copy p:not(.eyebrow),
.home-hero-copy p:not(.eyebrow),
.feature-panel p,
.bio-spotlight-copy p,
.editorial-copy p,
.contact-spotlight-copy p,
.page-hero p,
.profile-summary p,
.hero-manifesto > p,
.section-intro-copy,
.article-feature > p,
.cta-copy > p,
.cta-caption,
.site-footer p {
  width: 100% !important;
  max-width: min(100%, var(--copy-block-measure, var(--measure))) !important;
}

.glass-item > p,
.service-card > p,
.article-card > p,
.detail-list p,
.credential-list span,
.contact-channel-card p,
.editorial-stats span {
  width: 100% !important;
  max-width: min(100%, var(--copy-card-measure, var(--measure-card))) !important;
}

.hero-copy > p:not(.eyebrow),
.home-hero-copy > p:not(.eyebrow),
.feature-panel > p,
.bio-spotlight-copy > p,
.editorial-copy > p,
.contact-spotlight-copy > p,
.bio-main > p,
.page-hero > p,
.hero-manifesto > p,
.section-intro-copy,
.article-feature > p,
.glass-item > p,
.service-card > p,
.article-card > p,
.detail-list p,
.credential-list span,
.contact-channel-card p,
.cta-copy > p,
.cta-caption {
  justify-self: stretch;
}

.eyebrow,
.hero-eyebrow,
.hero-manifesto-label,
.text-link,
.hero-actions,
.cta-actions,
.section-cta,
.hero-inline-facts,
.hero-highlights,
.article-tag,
.timeline-label {
  justify-self: start;
}

.hero-copy p + p,
.home-hero-copy p + p,
.page-hero p + p,
.bio-spotlight-copy p + p,
.editorial-copy p + p,
.contact-spotlight-copy p + p,
.glass-item p + p,
.service-card p + p,
.article-card p + p,
.profile-summary p + p,
.contact-channel-card p + p,
.cta-copy p + p {
  margin-top: var(--copy-flow-space);
}

.service-card p,
.glass-item p,
.article-card p,
.detail-list p,
.contact-channel-card p {
  max-width: var(--copy-card-measure, var(--measure-card));
}

.editorial-stats span,
.credential-list span {
  max-width: var(--copy-card-measure, 32ch);
}

.hero-inline-facts span,
.credential-list strong,
.editorial-stats strong,
.timeline-label,
.contact-channel-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

@media (max-width: 980px) {
  .hero,
  .feature-split,
  .contact-layout,
  .about-layout,
  .cards-grid,
  .cta-panel,
  .split-heading,
  .editorial-band,
  .timeline-grid,
  .feature-visuals,
  .bio-spotlight,
  .bio-layout,
  .step-grid,
  .contact-spotlight {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 28px;
    padding: 18px 20px;
  }

  .brand {
    width: 100%;
    align-items: center;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 10px 14px;
  }

  .cta-panel,
  .site-footer {
    align-items: flex-start;
  }

  .section {
    padding-top: 62px;
  }

  .hero-home {
    grid-template-columns: minmax(0, 1fr) minmax(280px, var(--hero-profile-width));
    column-gap: 34px;
    row-gap: 24px;
    padding: 34px 28px 30px;
  }

  .home-hero {
    padding: 34px 28px 30px;
    gap: 34px;
  }

  .hero,
  .feature-split,
  .contact-layout,
  .about-layout {
    gap: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .home-hero-copy {
    padding-top: 0;
  }

  .hero-home h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    max-width: 11.5ch;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    max-width: 11.5ch;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .service-card--accent {
    transform: none;
  }

  .profile-panel--hero {
    width: 100%;
    max-width: min(100%, var(--hero-profile-width));
    justify-self: center;
  }

  .hero-portrait {
    width: 100%;
  }

  .hero-portrait img {
    width: 100%;
    margin-inline: 0;
  }

  .profile-summary--hero {
    width: 100%;
    margin: 0;
  }

  .journey-grid::before {
    display: none;
  }

  .home-hero-aside {
    width: min(100%, var(--home-hero-stack-width));
    justify-self: center;
  }

  .home-hero-portrait,
  .home-hero-summary {
    width: min(100%, var(--home-hero-stack-width));
  }
}

@media (max-width: 720px) {
  :root {
    --copy-size: 0.98rem;
    --copy-line-height: 1.78;
    --copy-flow-space: 1rem;
    --copy-section-gap: 2.25rem;
  }

  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    padding-top: 14px;
  }

  .site-header {
    position: static;
    border-radius: 24px;
    padding: 16px;
    gap: 14px;
  }

  .hero-home {
    grid-template-columns: 1fr;
    row-gap: 22px;
    padding: 24px 20px 22px;
    border-radius: 28px;
  }

  .home-hero {
    grid-template-columns: 1fr;
    padding: 24px 20px 22px;
    border-radius: 28px;
    gap: 30px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
  }

  .brand-mark {
    flex: none;
    inline-size: 46px;
    block-size: 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
    max-width: 46px;
    min-height: 46px;
    max-height: 46px;
    border-radius: 999px;
  }

  .profile-panel--hero {
    width: 100%;
    max-width: 360px;
  }

  .hero-portrait {
    width: 100%;
  }

  .hero-portrait img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    border-radius: 0;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
  }

  .page-subnav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 10px;
    scrollbar-width: none;
  }

  .page-subnav::-webkit-scrollbar {
    display: none;
  }

  .page-subnav a {
    white-space: nowrap;
  }

  h1,
  .section-heading h2,
  .compact h2,
  .article-feature h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.8rem);
  }

  h3 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .hero-copy {
    gap: 22px;
  }

  .home-hero-copy {
    gap: 22px;
  }

  .hero-home h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
    max-width: none;
  }

  .home-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.35rem);
    max-width: none;
  }

  .hero-home .hero-text,
  .home-hero .hero-text {
    max-width: min(100%, var(--copy-block-measure, var(--measure))) !important;
  }

  .hero-manifesto {
    padding: 16px 16px 16px 18px;
    border-radius: 0 20px 20px 0;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions--footer {
    margin-top: 6px;
    padding-top: 2px;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button,
  .cta-actions--stack .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 18px;
  }

  .hero-inline-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-inline-facts span {
    width: 100%;
    text-align: center;
  }

  .section-intro {
    gap: 22px;
    margin-bottom: 34px;
  }

  .section-intro-copy {
    margin-top: 36px;
  }

  .section-intro--spacious .section-intro-copy {
    margin-top: clamp(6rem, 18vw, 10rem);
  }

  .hero-badge {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .statement-card {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 12px;
  }

  .profile-summary--hero {
    width: 100%;
    margin: 12px 0 0;
  }

  .home-hero-aside {
    width: 100%;
    max-width: 360px;
  }

  .home-hero-portrait,
  .home-hero-summary {
    width: 100%;
  }

  .service-card,
  .glass-item,
  .article-card,
  .article-feature,
  .editorial-copy,
  .editorial-stats,
  .contact-spotlight-copy,
  .contact-channel-card,
  .profile-summary,
  .profile-summary--hero,
  .cta-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .bio-spotlight--editorial .bio-spotlight-copy {
    padding: 0;
    border-left: 0;
  }

  .cta-panel--contact {
    padding: 28px 24px;
  }

  .journey-card {
    min-height: 0;
    padding-top: 40px;
  }

  .journey-card::before {
    left: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 36px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .hero-home {
    padding: 20px 16px 18px;
  }

  .home-hero {
    padding: 20px 16px 18px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span:last-child {
    font-size: 0.78rem;
  }

  .hero-eyebrow {
    padding: 8px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .hero-home h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .home-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .profile-panel--hero {
    width: 100%;
    max-width: 320px;
  }

  .home-hero-aside {
    width: 100%;
    max-width: 320px;
  }

  .hero-portrait {
    width: 100%;
  }

  .hero-portrait img {
    width: 100%;
    max-width: 100%;
  }

  .home-hero-portrait img {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button,
  .cta-actions--stack .button {
    padding: 14px 16px;
    font-size: 0.96rem;
  }

  .profile-summary--hero {
    padding: 20px 18px;
  }

  .contact-channel-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .credential-list li,
  .detail-list div,
  .editorial-stats div {
    padding: 12px 0;
  }
}

/* ===== Botão flutuante de WhatsApp (adicionado 07/07/2026) ===== */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px 13px 46px;
  background: #25d366;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M16 3C9.4 3 4 8.4 4 15c0 2.1.6 4.2 1.6 6L4 29l8.2-1.6c1.8.9 3.7 1.4 5.8 1.4 6.6 0 12-5.4 12-12S22.6 3 16 3zm0 21.8c-1.8 0-3.5-.5-5-1.4l-.4-.2-4.9 1 1-4.8-.2-.4C5.5 18.5 5 16.8 5 15 5 9 10 4 16 4s11 5 11 11-5 9.8-11 9.8zm6.1-8.2c-.3-.2-1.9-.9-2.2-1-.3-.1-.5-.2-.7.2s-.8 1-.9 1.2c-.2.2-.3.2-.6.1-.3-.2-1.3-.5-2.5-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.1-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.2.2 2.1 3.3 5.1 4.6.7.3 1.3.5 1.7.6.7.2 1.4.2 1.9.1.6-.1 1.9-.8 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.2-.3-.2-.6-.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 17px center;
  background-size: 21px 21px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}
@media (max-width: 600px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
    padding: 0;
    gap: 0;
    font-size: 0;
    background-position: center;
    background-size: 24px 24px;
  }
}

/* ===== Logo real no cabeçalho (adicionado 07/07/2026) ===== */
.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(60vw, 320px);
  object-fit: contain;
}
@media (max-width: 600px) {
  .brand-logo {
    height: 38px;
    max-width: 64vw;
  }
}

/* ===== Frases de destaque (pull-quotes) — adicionado 07/07/2026 ===== */
.pull-quote {
  margin: clamp(26px, 4vw, 44px) auto 0;
  max-width: 60ch;
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  font-family: "Fraunces", serif;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.3;
  font-style: italic;
  color: var(--accent-strong);
  text-align: center;
}

/* ===== Topo das páginas internas em 2 colunas (adicionado 07/07/2026) ===== */
.page-hero-copy {
  display: grid;
  gap: 20px;
  align-content: start;
}
.page-hero h1 {
  max-width: 16ch;
}
.page-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-hero-facts span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(123, 97, 168, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
@media (min-width: 880px) {
  .page-hero:not(.page-hero--split) {
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.86fr);
    column-gap: clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .page-hero:not(.page-hero--split) > .page-hero-facts {
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
  }
  .page-hero--split {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
    column-gap: clamp(32px, 5vw, 56px);
    align-items: start;
  }
}

/* ===== Ajustes finos 07/07/2026: título menor, seção Diferencial 2 colunas, foto ===== */
/* Título das páginas internas menor (estava gigante) */
.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}
/* Seção "Diferencial no cuidado" em 2 colunas (preenche o vazio) */
.diferencial-text p {
  max-width: none;
}
@media (min-width: 900px) {
  .diferencial-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  .diferencial-layout .section-intro {
    position: sticky;
    top: 100px;
  }
}
/* Foto da bio: mostra o retrato inteiro (sem corte fechado no rosto) */
:root {
  --portrait-media-ratio: 2 / 3;
  --portrait-media-position: center center;
}

/* ==================================================================
   REVISÃO DE DIAGRAMAÇÃO — refinamento profissional (07/07/2026)
   Escala tipográfica harmônica, espaçamentos consistentes, cards alinhados.
   ================================================================== */

/* 1) Escala tipográfica mais elegante e harmônica (menos "gritante") */
h1 {
  font-size: clamp(2.5rem, 4.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}
.hero-home h1 {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  max-width: 14ch;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
}
.section-intro-title {
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
}

/* 2) Fim dos espaços exagerados entre título e texto */
.section-intro {
  gap: 14px;
  margin-bottom: 40px;
}
.section-intro-copy {
  margin-top: 0;
  max-width: 70ch;
}
.section-intro--spacious .section-intro-copy {
  margin-top: 0;
}
.page-hero > h1 + p,
.bio-spotlight-copy > h2 + p,
.editorial-copy > h2 + p,
.contact-spotlight-copy > h2 + p,
.article-feature > h2 + p,
.bio-main .glass-item > h2 + p,
.section-heading--vertical > h2 + p {
  margin-top: 14px;
}

/* 3) Ritmo de seção consistente */
.section {
  padding-top: 66px;
}

/* 4) Cards alinhados, do mesmo tamanho, com respiro equilibrado */
.cards-grid {
  gap: 22px;
}
.service-card,
.article-card,
.glass-item,
.article-feature,
.cta-panel,
.editorial-copy,
.editorial-stats {
  padding: 28px;
}
.service-card h3,
.article-card h3,
.glass-item h3,
.glass-item h2 {
  margin-bottom: 10px;
}
/* Grade de "Áreas de atuação": 3 colunas iguais, cards alinhados (sem card torto) */
.expertise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.expertise-grid .service-card {
  min-height: 0;
  gap: 8px;
}
.service-card--accent {
  transform: none;
}
.service-card--primary h3 {
  font-size: 1.3rem;
}
/* Card 03 (supporting) alinhado ao topo como os demais */
.service-card--supporting {
  align-self: stretch;
}

/* ===== Card "Artigo em destaque" 2 colunas + padronização de tags (07/07/2026) ===== */
@media (min-width: 900px) {
  .article-lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 3.5vw, 48px);
    align-items: start;
  }
}
.article-feature h2 {
  max-width: none;
}
.article-feature > p {
  max-width: 60ch !important;
}
/* Grupos de tags/pontos padronizados como pílulas (antes eram texto solto) */
.article-feature-points,
.article-hero-points,
.contact-highlights,
.article-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.article-feature-points span,
.article-hero-points span,
.contact-highlights span,
.article-card-footer span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

/* ===== Foto da bio mais proporcional + CRM no rodapé (07/07/2026) ===== */
/* Coluna da foto mais estreita e foto menos alta (era um "paredão") */
.bio-layout {
  grid-template-columns: 0.72fr 1.28fr;
}
:root {
  --portrait-media-ratio: 1 / 1;
  --portrait-media-position: center 40%;
}
.footer-crm {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
/* CORREÇÃO: liberar a altura da foto da bio (o atributo height do HTML travava a proporção) */
.portrait-card img {
  height: auto;
}

/* CORREÇÃO MOBILE: colunas que eu ajustei devem virar 1 coluna no celular */
@media (max-width: 760px) {
  .bio-layout,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Camada 2: alinhamento e proporção (07/07/2026) ===== */
/* Foto "Conheça a Dra." sem espaço branco (o height fixo travava a proporção) */
.media-frame--spotlight img {
  height: auto;
}
/* Instituições: 3 colunas iguais + título do 1º card consistente com os demais */
.institutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.glass-item--wide h3 {
  font-size: 1.3rem;
}
@media (max-width: 760px) {
  .institutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Menu interno: pílulas centralizadas (equilibra o vazio à direita) */
.page-subnav {
  justify-content: center;
}

/* ==================================================================
   PRÉVIA — TEMA ROXO + DOURADO ELEGANTE (07/07/2026)
   Inspirado no portfólio ACUBÁ. Preserva o roxo, adiciona dourado +
   tipografia Cormorant Garamond. (Reversível: backup em _originais/)
   ================================================================== */
:root {
  --gold: #a97c2f;
  --gold-bright: #c79a3e;
  --gold-light: #e6cf97;
  --ink-deep: #241733;
  --ink-deep-2: #170e21;
}

/* ---- Tipografia: Cormorant Garamond nos títulos (elegante) ---- */
h1, h2, h3,
.section-intro-title,
.footer-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
  letter-spacing: 0.3px;
}
h1 { font-weight: 700; line-height: 1.05; font-size: clamp(2.9rem, 5.2vw, 4.6rem); }
h2 { font-weight: 600; line-height: 1.1; font-size: clamp(2.1rem, 3.6vw, 3.1rem); }
h3 { font-weight: 600; line-height: 1.18; font-size: 1.5rem; }
.hero-home h1 { font-size: clamp(3rem, 5.6vw, 5rem); }
.page-hero h1 { font-size: clamp(2.5rem, 4.2vw, 3.7rem); }
.section-intro-title { font-size: clamp(2.1rem, 3.4vw, 3rem); }
.service-card--primary h3,
.glass-item--wide h3 { font-size: 1.6rem; }

/* ---- Dourado nos "eyebrows" (rótulos) ---- */
.eyebrow { color: var(--gold); letter-spacing: 0.24em; }

/* ---- Linha de destaque (divider dourado) sob os títulos de seção ---- */
.section-intro-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-bright);
  margin-top: 20px;
}

/* ---- Faixa de credenciais (fundo roxo profundo + números dourados) ---- */
.creds-band {
  margin-top: 34px;
  padding: clamp(30px, 4vw, 46px) clamp(24px, 4vw, 48px);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--ink-deep) 0%, #3a2456 100%);
  box-shadow: 0 26px 70px rgba(36, 23, 51, 0.28);
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.creds-grid > div {
  padding-left: 18px;
  border-left: 2px solid var(--gold-bright);
}
.creds-grid b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.creds-grid span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  color: #c8bce0;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Rodapé escuro elegante (fecho forte, como o da ACUBÁ) ---- */
.site-footer {
  margin-top: 72px;
  padding: clamp(34px, 4.5vw, 54px);
  border: none;
  border-radius: 28px 28px 0 0;
  background: var(--ink-deep);
  color: #cdbfe4;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr 0.7fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  box-shadow: none;
}
.footer-brand { display: grid; gap: 8px; align-content: start; }
.footer-name { font-size: 2.1rem; font-weight: 700; color: #ffffff; line-height: 1; }
.footer-role { font-size: 0.9rem; color: #b3a2d4; max-width: 24ch; }
.footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
}
.footer-contact div b {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.footer-contact div span { color: #ffffff; font-size: 0.98rem; }
.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}
.footer-links a { color: #cdbfe4; text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-base {
  background: var(--ink-deep-2);
  color: #8779a2;
  text-align: center;
  padding: 18px 20px;
  font-size: 0.8rem;
  border-radius: 0 0 28px 28px;
}
@media (max-width: 760px) {
  .site-footer { grid-template-columns: 1fr; gap: 28px; border-radius: 24px 24px 0 0; }
  .footer-base { border-radius: 0 0 24px 24px; }
}

/* ---- Ajuste de tonalidade do roxo: mais rico/profundo (casa com o dourado) ---- */
:root {
  --accent-strong: #6d3fa6;   /* roxo ametista, mais profundo */
  --accent: #b89fe0;
  --highlight: #efe6fb;
  --ink-deep: #281842;
}
body {
  background:
    radial-gradient(circle at top left, rgba(176, 146, 222, 0.92), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at bottom right, rgba(198, 172, 234, 0.62), transparent 24%),
    linear-gradient(180deg, #faf7ff 0%, #efe6fa 50%, #f4ecfc 100%) !important;
}

/* ---- Ajustes do Lucas: roxo mais suave, rodapé sem links, continuidade ---- */
:root {
  --accent-strong: #7c56b0;   /* roxo suave (menos forte que o ametista) */
  --accent: #c1a9e4;
  --ink-deep: #2b1c47;
}
body {
  background:
    radial-gradient(circle at top left, rgba(190, 165, 228, 0.85), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.75), transparent 18%),
    radial-gradient(circle at bottom right, rgba(210, 190, 238, 0.55), transparent 24%),
    linear-gradient(180deg, #fbf9ff 0%, #f3ecfb 50%, #f7f1fd 100%) !important;
}
/* Rodapé em 2 colunas (marca + contato), sem os links */
.site-footer {
  grid-template-columns: minmax(220px, 0.9fr) 1.8fr;
}
/* Continuidade: seções um pouco mais próximas (menos vazio entre elas) */
.section { padding-top: 52px; }

/* ---- Continuidade: topo das páginas internas em coluna única (sem pílulas flutuando com vazio) ---- */
@media (min-width: 880px) {
  .page-hero:not(.page-hero--split) {
    grid-template-columns: 1fr;
  }
  .page-hero:not(.page-hero--split) > .page-hero-facts {
    flex-direction: row;
    align-self: start;
    margin-top: 6px;
  }
}
.page-hero h1 { max-width: 30ch; }

/* Card do WhatsApp (contato): altura natural, sem vazio no fundo */
.contact-spotlight { align-items: start; }

/* ---- 1) Foto do hero (home) com cantos arredondados, como as outras ---- */
.hero-portrait img { border-radius: 26px; }

/* ---- 2) Artigos: painel da direita vira CARD DE APOIO (hierarquia/harmonia) ---- */
.article-hero-panel {
  align-self: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.article-hero-panel h2 { font-size: clamp(1.4rem, 1.8vw, 1.65rem); }

/* ---- 3) Padronização dos espaços entre cards ---- */
/* Grades de cards (3-up): sempre 24px */
.cards-grid,
.step-grid { gap: 24px; }
/* Layouts de 2 colunas: mesmo respiro em todo o site */
.bio-layout,
.editorial-band,
.contact-spotlight,
.diferencial-layout,
.article-lead-layout,
.page-hero--split { gap: clamp(30px, 3.5vw, 44px); }

/* ---- Painéis preenchidos não podem colar no card acima: margem superior consistente ---- */
.cta-panel,
.creds-band,
.editorial-band,
.statement-band,
.editorial-band--featured {
  margin-top: 48px;
}

/* ---- Padronizar gaps dos layouts de 2 colunas (incluir bio-spotlight e CTA) ---- */
.bio-spotlight,
.cta-panel { gap: clamp(30px, 3.5vw, 44px); }

/* ---- Etapas: afastar a "bola" do texto (sem grudar/distorcer) + anel menor ---- */
.journey-card { padding-top: 60px; }
.journey-card::before {
  top: 26px;
  box-shadow: 0 0 0 5px rgba(170, 147, 216, 0.14);
}

/* ==================================================================
   CENTRALIZAÇÃO ELEGANTE — títulos/intros de seção e heros internos
   (equilibra o vazio à direita) — prévia 07/07/2026
   ================================================================== */
/* Intros de seção (título + linha dourada + lead curto) centralizados */
.section > .section-intro {
  justify-items: center;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.section > .section-intro .section-intro-title {
  margin-left: auto;
  margin-right: auto;
}
.section > .section-intro .section-intro-copy {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch;
}
.section > .section-intro .section-intro-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Topo das páginas internas (Sobre/Contato) centralizado */
@media (min-width: 880px) {
  .page-hero:not(.page-hero--split) {
    justify-items: center;
    text-align: center;
  }
  .page-hero:not(.page-hero--split) > .page-hero-copy {
    justify-items: center;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero:not(.page-hero--split) > .page-hero-copy > p:not(.eyebrow) {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 70ch;
  }
  .page-hero:not(.page-hero--split) > .page-hero-facts {
    justify-content: center;
  }
}

/* ---- Texto dos cards preenche a largura (acompanha o título), sem vazio à direita ---- */
.glass-item > p,
.service-card > p,
.article-card > p,
.detail-list p,
.contact-channel-card p,
.bio-main > p {
  max-width: 100% !important;
}

/* ==================================================================
   BOLAS DE NÚMERO (Áreas de atuação e demais) — roxo + dourado
   ================================================================== */
.service-card span,
.expertise-grid .service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  margin-bottom: 18px;
  border: 1px solid rgba(199, 154, 62, 0.5);
  border-radius: 50%;
  background: var(--accent-strong);   /* bola roxa */
  color: var(--gold-light);           /* número dourado */
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(45, 24, 66, 0.16);
}
/* Card 2 (Medicina de precisão / accent): INVERTE — bola dourada, número roxo */
.service-card--accent span {
  background: var(--gold-bright) !important;   /* bola dourada */
  color: #331d54 !important;                   /* número roxo escuro */
  border-color: rgba(255, 255, 255, 0.55) !important;
}

/* ==================================================================
   BOLAS DE NÚMERO v2 — "liquid glass" suave, número dourado
   ================================================================== */
.service-card span,
.expertise-grid .service-card span {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.26)) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  color: var(--gold) !important;                       /* número dourado */
  box-shadow:
    0 6px 16px rgba(45, 24, 66, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -8px 14px rgba(199, 154, 62, 0.05) !important;
}
/* Bola 2 no card roxo: vidro branco mais nítido, número dourado */
.service-card--accent span {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)) !important;
  color: var(--gold) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
  box-shadow:
    0 6px 18px rgba(20, 10, 35, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.95) !important;
}

/* ---- Suavizar bloco Pesquisa (PI / Pesquisa Clínica / Startup): menos bold + contornos leves ---- */
.editorial-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 600 !important;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem) !important;
  letter-spacing: 0 !important;
}
.editorial-stats div {
  border-bottom-color: rgba(143, 121, 187, 0.13);
}

/* ==================================================================
   PESQUISA: empilhar (card do texto sozinho em cima, 3 itens embaixo)
   Os 3 viram cards elegantes com filete dourado no topo (sem bolas)
   ================================================================== */
.editorial-band {
  grid-template-columns: 1fr;
  gap: 24px;
}
.editorial-band--featured .editorial-stats::before { display: none; }

/* container dos 3 deixa de ser um card e vira grade de 3 colunas */
.editorial-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
/* cada item vira um card com filete dourado no topo */
.editorial-stats div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold-bright);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.editorial-stats div:last-child {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.editorial-stats strong { color: var(--text); }
@media (max-width: 760px) {
  .editorial-stats { grid-template-columns: 1fr; }
}

/* Pesquisa: bloco de texto centralizado no MESMO padrão dos section-intros */
.editorial-band--featured .editorial-copy {
  justify-items: center;
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.editorial-band--featured .editorial-copy .eyebrow,
.editorial-band--featured .editorial-copy h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: none !important;
}
.editorial-band--featured .editorial-copy p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  max-width: 68ch !important;
  width: auto;
}
.editorial-band--featured .editorial-copy h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: var(--gold-bright);
  margin: 20px auto 0;
}

/* Pesquisa: tirar o card do bloco de texto (conteúdo solto) + filete dourado separador */
.editorial-band--featured .editorial-copy {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}
.editorial-band--featured {
  gap: 40px;
  border-top: 1px solid rgba(199, 154, 62, 0.55);
  padding-top: 52px;
  margin-top: 8px;
}

/* ==================================================================
   IDENTIDADE VISUAL — filete dourado no topo de TODOS os cards de conteúdo
   (assinatura única) + Etapas trocam a "bolinha" pelo mesmo filete
   ================================================================== */
.service-card,
.glass-item,
.article-card,
.contact-channel-card,
.contact-spotlight-copy,
.editorial-stats div {
  border-top: 2px solid var(--gold-bright);
}
/* Etapas: sai a bolinha, entra o filete (mesmo padrão dos demais cards) */
.journey-card { padding-top: 28px !important; }
.journey-card::before { display: none !important; }

/* Contato: "Como funciona" sozinho em largura total (card redundante ao lado removido) */
.contact-spotlight { grid-template-columns: 1fr; }

/* CORREÇÃO MOBILE: painel CTA empilha de verdade (é flex; grid-template-columns não o afetava) */
@media (max-width: 980px) {
  .cta-panel { flex-direction: column; align-items: stretch; }
}

/* CORREÇÃO MOBILE: rodapé em coluna única (uma regra sem media-query forçava 2 colunas e vazava) */
@media (max-width: 760px) {
  .site-footer { grid-template-columns: 1fr !important; }
}

/* ==================================================================
   HERO REDESENHADO (prévia) — logo grande na abertura + foto descida
   ================================================================== */
/* Logo média-grande centralizada abrindo o hero */
.hero-brandmark {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.hero-brandmark-img {
  width: auto;
  height: clamp(80px, 11vw, 140px);
}
/* Foto descida: seção com a foto ao lado da frase-manifesto */
.hero-spotlight {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}
.hero-portrait--spotlight {
  position: relative;
  margin: 0;
  height: 100%;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 2px solid var(--gold-bright);
  box-shadow: var(--shadow);
}
.hero-portrait--spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.hero-spotlight-copy { display: grid; gap: 18px; }
.hero-spotlight-copy .hero-manifesto-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
  color: var(--accent-strong);
  letter-spacing: 0;
}
.hero-spotlight-copy p {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 48ch;
  margin: 0;
}
@media (max-width: 760px) {
  .hero-spotlight { grid-template-columns: 1fr; }
  /* no celular a foto volta a ter altura própria (não há coluna vizinha p/ igualar) */
  .hero-portrait--spotlight { height: auto; min-height: 0; }
  .hero-portrait--spotlight img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 5;
  }
}

/* Hero empilhado: logo → (foto + frase + Perfil profissional) → headline */
.hero-home--stack {
  grid-template-columns: 1fr !important;
  row-gap: clamp(30px, 4vw, 46px);
}
.hero-home--stack .hero-spotlight { margin: 0; }
.profile-summary--spotlight { margin-top: 6px; }
.profile-summary--spotlight .credential-list { margin: 0; }

/* Headline (lead) centralizado — equilíbrio, sem vazio à direita */
.hero-copy--lead {
  justify-items: center;
  text-align: center;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.hero-copy--lead h1 { max-width: 22ch; }
.hero-copy--lead .hero-text { max-width: 64ch; text-align: center; margin-left: auto; margin-right: auto; }
.hero-copy--lead .hero-inline-facts { justify-content: center; }
.hero-copy--lead .hero-actions--footer { justify-content: center; }

/* Lead: "Oncologia Clínica | Medicina de Precisão" sem balão (só texto dourado) */
.hero-copy--lead .hero-eyebrow {
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}
/* Lead: facts sem balão — texto roxo escuro, separados por filete vertical dourado */
.hero-copy--lead .hero-inline-facts {
  gap: 0;
  align-items: center;
  justify-self: center;
  flex-wrap: wrap;
}
.hero-copy--lead .hero-inline-facts span {
  padding: 4px 20px;
  border: none;
  border-right: 1px solid var(--gold-bright);
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #3a2861;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.15;
}
.hero-copy--lead .hero-inline-facts span:last-child { border-right: none; }
@media (max-width: 680px) {
  .hero-copy--lead .hero-inline-facts { flex-direction: column; gap: 7px; }
  .hero-copy--lead .hero-inline-facts span { border-right: none; padding: 2px 0; }
}
