/* =========================================================
   Seções da página, em ordem de leitura.
   Cada bloco carrega os próprios breakpoints — antes eles estavam
   espalhados por 12 media queries que brigavam entre si.
   ========================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: 148px 0 34px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 30%, rgba(184, 168, 218, .12), transparent 24%),
    radial-gradient(circle at 65% 75%, rgba(200, 140, 114, .08), transparent 24%);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
}
.hero-orbit--one { width: 820px; height: 820px; top: -310px; right: -260px; }
.hero-orbit--two { width: 520px; height: 520px; right: 0; bottom: -280px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(56px, 6vw, 96px);
  align-items: center;
}
.hero-copy { max-width: 880px; padding-bottom: 24px; }
.hero-title {
  width: 100%;
  max-width: 920px;
  margin: 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 6.35vw, 6.75rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.title-flow { display: block; text-wrap: balance; }
.title-flow em { color: var(--lavender); font-style: italic; font-weight: 400; }

.hero-description {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--on-dark-70);
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  color: rgba(244, 239, 231, .48);
  font-size: .74rem;
}
.hero-meta li { display: flex; align-items: center; gap: 8px; }
.hero-meta i { width: 5px; height: 5px; flex: 0 0 5px; border-radius: 50%; background: var(--sage); }

.hero-visual { display: grid; min-height: 520px; place-items: center; }
.visual-shell {
  position: relative;
  width: min(100%, 505px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.visual-shell::before,
.visual-shell::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line-dark-soft);
  border-radius: 50%;
}
.visual-shell::before { inset: 13%; }
.visual-shell::after { inset: 31%; background: rgba(255, 255, 255, .018); }

.visual-center {
  position: absolute;
  z-index: 2;
  inset: 38%;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.15;
}
.visual-center span {
  color: var(--on-dark-45);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visual-center strong { margin-top: 6px; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }

.orbit-card {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 146px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(36, 24, 33, .7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.orbit-card span { color: var(--lavender); font-size: .62rem; font-weight: 700; }
.orbit-card strong { margin-top: 12px; font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.orbit-card small { margin-top: 4px; color: rgba(244, 239, 231, .48); font-size: .67rem; }
.orbit-card--one { top: 1%; left: 31%; }
.orbit-card--two { top: 36%; right: -3%; }
.orbit-card--three { bottom: 2%; left: 35%; }
.orbit-card--four { top: 42%; left: -5%; }

.hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(244, 239, 231, .42);
  font-size: .72rem;
}
.hero-footer p { margin: 0; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 44px; }
  .hero-title { font-size: clamp(3.7rem, 7vw, 5.8rem); }
}
@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 100%; }
  .hero-title { max-width: 940px; font-size: clamp(3.55rem, 7.1vw, 5.55rem); line-height: .9; }
  .hero-visual { min-height: 470px; }
  .visual-shell { width: 520px; max-width: 85vw; }
}
@media (max-width: 760px) {
  .hero { min-height: auto; padding-top: 126px; }
  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 12.7vw, 4.15rem);
    line-height: .92;
    letter-spacing: -.038em;
  }
  .hero-description { margin-top: 22px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 380px; }
  .visual-shell { width: 330px; }
  .orbit-card { min-width: 126px; padding: 13px; }
  .orbit-card strong { font-size: 1rem; }
  .orbit-card--one { left: 29%; }
  .orbit-card--two { right: -7%; }
  .orbit-card--three { left: 31%; }
  .orbit-card--four { left: -8%; }
  .hero-footer { display: none; }
}
@media (max-width: 390px) {
  .hero-title { font-size: clamp(2.8rem, 12.2vw, 3.35rem); }
}

/* ---------- Manifesto ---------- */
.manifesto { padding-block: var(--section-space); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.55fr) minmax(270px, .65fr);
  gap: clamp(38px, 5vw, 78px);
  align-items: start;
}
.section-index {
  padding-top: 10px;
  color: rgba(36, 24, 33, .43);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.manifesto-content .section-title { max-width: 840px; }
.manifesto-lead {
  max-width: 740px;
  margin: 30px 0 0;
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.52;
}
.manifesto-aside { padding-top: 84px; }
.manifesto-aside p { margin: 0 0 34px; color: var(--ink-soft); font-size: .94rem; }

@media (max-width: 1050px) {
  .manifesto-grid { grid-template-columns: 64px minmax(0, 1fr); }
  .manifesto-aside { grid-column: 2; max-width: 650px; padding-top: 14px; }
}
@media (max-width: 760px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 20px; }
  .section-index { display: none; }
  .manifesto-aside { grid-column: auto; }
}

/* ---------- Caminhos ---------- */
.paths-section { background: var(--sand); }
.paths-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: var(--section-space) 0 46px;
}
.paths-heading .section-title { font-size: clamp(2.8rem, 4.5vw, 4.8rem); }
.paths-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--on-light-60);
  font-size: .9rem;
}

.path-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 54px;
}
.path-overview-card {
  position: relative;
  display: grid;
  min-height: 154px;
  align-content: end;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line-light-soft);
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.path-overview-card::after {
  content: "↘";
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1rem;
  opacity: .48;
  transition: transform .25s ease, opacity .25s ease;
}
.path-overview-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  border-color: rgba(36, 24, 33, .26);
  box-shadow: 0 22px 46px rgba(36, 24, 33, .09);
}
.path-overview-card:hover::after { transform: translate(3px, 3px); opacity: .9; }
.path-overview-card span {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.path-overview-icon {
  position: absolute;
  top: 50%;
  right: -16px;
  z-index: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(36, 24, 33, .17);
  transform: translateY(-50%);
}
.path-overview-card--clinic .path-overview-icon { border-color: rgba(255, 255, 255, .18); }
.path-overview-card strong,
.path-overview-card small { position: relative; z-index: 1; }
.path-overview-card strong {
  font-family: var(--serif);
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1;
}
.path-overview-card small {
  max-width: 220px;
  margin-top: 8px;
  color: rgba(36, 24, 33, .58);
  font-size: .72rem;
  line-height: 1.4;
}
.path-overview-card--immersion { background: rgba(239, 216, 204, .78); }
.path-overview-card--crossing { background: rgba(220, 226, 214, .8); }
.path-overview-card--clinic { color: var(--cream); background: var(--plum); }
.path-overview-card--clinic small { color: var(--on-dark-60); }
.path-overview-card--singular { background: rgba(221, 212, 238, .82); }

.paths-stack { position: relative; }
.path-card {
  position: relative;
  padding: clamp(72px, 7vw, 104px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light-soft);
}
.path-sticky {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.55fr) minmax(300px, .68fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  min-height: 520px;
}
.path-number { align-self: start; padding-top: 10px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.path-main h3 {
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-size: clamp(4.15rem, 7vw, 7.35rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
}
.path-kicker {
  max-width: 580px;
  margin: 0;
  font-size: .69rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.path-description {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.58;
}
.path-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.path-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(36, 24, 33, .17);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
}
.path-side {
  width: 100%;
  padding: 26px;
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, .23);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.path-question { margin: 0 0 25px; font-family: var(--serif); font-size: 1.32rem; line-height: 1.26; }
.path-side ul {
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
  color: rgba(36, 24, 33, .62);
  font-size: .82rem;
}
.path-side li { position: relative; padding-left: 17px; }
.path-side li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}
.path-card--immersion { background: var(--clay-soft); }
.path-card--crossing { background: var(--sage-soft); }
.path-card--clinic { color: var(--cream); background: var(--plum); }
.path-card--clinic .path-tags span,
.path-card--clinic .path-side { border-color: rgba(255, 255, 255, .18); }
.path-card--clinic .path-side { background: rgba(255, 255, 255, .06); }
.path-card--clinic .path-side ul { color: rgba(255, 255, 255, .63); }
.path-card--singular { background: var(--lavender-soft); }

@media (max-width: 1180px) {
  .path-sticky { grid-template-columns: 54px minmax(0, 1.35fr) minmax(270px, .72fr); gap: 28px; }
  .path-main h3 { font-size: clamp(4rem, 8vw, 6.5rem); }
}
@media (max-width: 1050px) {
  .path-overview { grid-template-columns: 1fr 1fr; }
  .path-sticky { grid-template-columns: 50px minmax(0, 1fr); min-height: auto; }
  .path-side { grid-column: 2; max-width: 680px; }
}
@media (max-width: 760px) {
  .paths-heading { flex-direction: column; padding-bottom: 34px; }
  .paths-heading > p { margin: 0; }
  .path-overview { grid-template-columns: 1fr; gap: 9px; padding-bottom: 36px; }
  .path-overview-card { min-height: 118px; }
  .path-card { padding: 72px 0; }
  .path-sticky { grid-template-columns: 1fr; gap: 24px; }
  .path-number { padding: 0; }
  .path-side { grid-column: auto; max-width: none; }
  .path-main h3 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .path-description { font-size: 1rem; }
}

/* ---------- Decisão ---------- */
.decision-section { padding-block: var(--section-space); }
.decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .6fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}
.decision-grid .section-title { max-width: 820px; font-size: clamp(3rem, 5vw, 5.35rem); }
.decision-copy { padding-top: 58px; }
.decision-copy > p { margin: 0 0 34px; color: rgba(244, 239, 231, .66); font-size: 1.05rem; }
.decision-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  color: rgba(244, 239, 231, .42);
  font-size: .68rem;
}
.decision-proof span + span::before { content: "•"; margin-right: 16px; }

@media (max-width: 1050px) {
  .decision-copy { padding-top: 34px; }
}

/* ---------- Sobre ---------- */
.about-section { padding-block: var(--section-space); background: var(--shell); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 8vw, 126px);
  align-items: center;
}
.about-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 240px 240px 24px 24px;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 35%, rgba(184, 168, 218, .65), transparent 38%),
    linear-gradient(145deg, #443245, #211820);
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: inherit;
}
.about-monogram { font-family: var(--serif); font-size: 10rem; opacity: .88; }
.about-caption {
  position: absolute;
  bottom: 26px;
  left: 30px;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.about-copy .section-title { max-width: 760px; font-size: clamp(2.75rem, 4.2vw, 4.55rem); }
.about-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(36, 24, 33, .65); }
.about-copy .text-link { margin-top: 22px; }

/* ---------- FAQ ---------- */
.faq-section { padding-block: var(--section-space); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, .55fr) minmax(0, 1.45fr);
  gap: clamp(60px, 8vw, 126px);
}
.faq-grid .section-title { font-size: clamp(2.9rem, 4.5vw, 4.7rem); }

/* Decisão, Sobre e FAQ colapsam para uma coluna no mobile.
   Antes esta regra existia, mas o bloco de 760px vinha ANTES dos
   grid-template-columns de duas colunas no arquivo — mesma especificidade,
   a regra posterior vencia. Os três grids ficavam em 2 colunas com mínimos
   de 300–380px dentro de um container de ~362px, empurrando 253px de
   conteúdo para fora da tela. O overflow-x: hidden do body escondia tudo. */
@media (max-width: 760px) {
  .decision-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .decision-copy { padding-top: 20px; }
  .about-visual { min-height: 410px; }
}

/* ---------- CTA final ---------- */
.final-cta { position: relative; padding-block: var(--section-space); overflow: hidden; }
.final-cta::after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -350px;
  width: 600px;
  height: 600px;
  border: 1px solid var(--line-dark-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .025), 0 0 0 180px rgba(255, 255, 255, .018);
}
.final-cta-content { position: relative; z-index: 2; text-align: center; }
.final-title {
  max-width: 900px;
  margin: 0 auto 38px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 6.1vw, 6.35rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.04em;
}

@media (max-width: 760px) {
  .final-title { font-size: clamp(3.25rem, 14vw, 4.8rem); }
}
