/* ============================================================
   GLOBAL LASER — Landing Page
   Design system: "Design System Global Laser" (Figma)
   Editorial / hairline-driven. No shadows, gradients, hovers or emojis.
   Premium pass: mais ar, tipografia confiante, imagem art-directed,
   microdetalhes de ateliê e reveal sutil no scroll.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --parchment:  #F9F6F2;
  --linen:      #EDE8E1;
  --warm-white: #FFFFFF;
  --input-bg:   #F0EBE3;
  --taupe:      #AE9A81;
  --gold-sand:  #C4AA8A;
  --espresso:   #6B5E52;
  --stone:      #8A7E72;
  --charcoal:   #2A2420;

  --hairline:        rgba(174, 154, 129, 0.25);
  --hairline-strong: rgba(174, 154, 129, 0.40);
  --hairline-dark:   rgba(174, 154, 129, 0.28);
  --gold-tint:       rgba(196, 170, 138, 0.20);

  --font-display: "Raleway", Georgia, serif;
  --font-sans:    "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, "SFMono-Regular", monospace;

  --r-sm: 2px; --r: 4px; --r-lg: 8px; --r-xl: 12px; --r-full: 9999px; --r-card: 10px;

  --container: 1200px;
  --container-wide: 1380px;
  --gutter: clamp(22px, 5vw, 64px);
  --section-y: clamp(104px, 11vw, 188px);

  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2));

  --ease: cubic-bezier(0.22, 0.61, 0.30, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--charcoal);
  background: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
p { text-wrap: pretty; }
:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }
::selection { background: rgba(174, 154, 129, 0.28); color: var(--charcoal); }
[id] { scroll-margin-top: 96px; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  text-wrap: balance;
  color: var(--charcoal);
}
.display em { font-style: italic; font-weight: 400; }

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  text-wrap: balance;
  color: var(--charcoal);
}
.h2 em { font-style: italic; font-weight: 400; }

.h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.375;
  letter-spacing: -0.005em;
  text-wrap: balance;
  color: var(--charcoal);
}

.lead { color: var(--stone); line-height: 1.65; }

/* Mono eyebrow / labels — the system signature */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  font-variant-numeric: tabular-nums lining-nums;
}
.eyebrow::after { content: ""; width: 44px; height: 1px; background: var(--hairline-strong); }
.eyebrow--stack, .eyebrow--inline { display: block; }
.eyebrow--stack::after, .eyebrow--inline::after { display: none; }
.eyebrow--inline { margin-bottom: 1rem; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { content: ""; width: 44px; height: 1px; background: var(--hairline-strong); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(64px, 7vw, 104px); }
.section--air   { padding-block: clamp(128px, 14vw, 232px); }
.section--linen { background: var(--linen); }
.section--dark  { background: var(--charcoal); color: var(--linen); }
.section--dark .h2, .section--dark .h3, .section--dark .display { color: var(--parchment); }
.section--dark .display em { color: var(--gold-sand); }
.section--dark .eyebrow { color: var(--taupe); }

.section-head { max-width: 840px; }
.section-head .h2 { margin-top: 1.375rem; }
.section-head .lead { margin-top: 1.375rem; font-size: 1.0625rem; max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.875rem;
  letter-spacing: 0.045em; line-height: 1.25;
  padding: 0.875rem 1.875rem; border-radius: var(--r); border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary   { background: var(--taupe); color: #fff; }
.btn--secondary { background: var(--linen); border-color: var(--hairline-strong); color: var(--charcoal); }
.btn--outline   { background: transparent; border-color: var(--taupe); color: var(--taupe); }
.btn--lg { padding: 1.0625rem 2.25rem; font-size: 0.9375rem; }
.btn--block { display: flex; width: 100%; }
.section--dark .btn--outline { border-color: var(--hairline-strong); color: var(--taupe); }

.inline-cta { margin-top: clamp(36px, 4.5vw, 56px); }
.inline-cta--center { display: flex; justify-content: center; }

/* ---------- Media slot (photo target) ----------
   Cohesive art-direction grade so client photos read as ONE campaign. */
.media {
  position: relative;
  background: var(--linen);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.media .photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(1.005) sepia(0.05);
  transition: transform 0.55s var(--ease);
}
.media__hint {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem; text-align: center; padding: 2rem;
}
.media__mark { width: clamp(108px, 15vw, 164px); height: auto; opacity: 0.45; }
.media__cap {
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stone);
}
.media__tag {
  position: absolute; left: 18px; bottom: 18px;
  font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone);
  background: var(--parchment); border: 1px solid var(--hairline);
  padding: 4px 11px; border-radius: var(--r-full);
}
.media__tag--link {
  left: auto; right: 18px; z-index: 2;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.media--ticks::before, .media--ticks::after {
  content: ""; position: absolute; width: 16px; height: 16px;
  border: 1px solid var(--hairline-strong); z-index: 1;
}
.media--ticks::before { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.media--ticks::after  { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 50; background: #AE9A81; border-bottom: 1px solid rgba(42, 36, 32, 0.16); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; }
.brand img { height: 36px; width: auto; }
.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--parchment); }
.header-cta { display: inline-flex; }
.site-header .btn--primary { border: 1.5px solid var(--parchment); }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* ============================================================
   HERO — texto à esquerda + retrato vertical à direita
   ============================================================ */
.hero { border-bottom: 1px solid var(--hairline); }
.hero__inner { padding-block: clamp(56px, 7vw, 104px); }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(36px, 5.5vw, 88px); align-items: center;
  min-height: clamp(500px, 70vh, 700px);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--espresso); font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.9375rem;
  background: var(--gold-tint);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--r-full);
}
.hero__kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--taupe); flex-shrink: 0;
}
.hero__title { font-size: clamp(2.25rem, 4.8vw, 3.5rem); max-width: 16ch; }
.hero__sub {
  font-size: 1.1875rem; line-height: 1.6; color: var(--stone); max-width: 44ch;
  margin-top: clamp(20px, 2.5vw, 28px);
}
.hero__actions { margin-top: clamp(28px, 3.4vw, 40px); }

/* slot de fotos da hero: duas fotos empilhadas (tatuagem + micropigmentação) */
.hero__media { display: flex; flex-direction: column; gap: clamp(12px, 1.6vw, 18px); }
.hero__media-photo { border-radius: var(--r-xl); aspect-ratio: 3 / 2; }
.hero__media-photo .photo { object-position: 50% 38%; }

/* selo Instagram (canto superior direito) */
.hero__ig {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-full);
  background: var(--charcoal); color: var(--parchment);
  border: 1px solid var(--hairline-strong);
}
.hero__ig svg { width: 20px; height: 20px; }

/* selo de prova social — bloco abaixo das duas fotos (não sobrepõe a imagem) */
.hero__proof {
  align-self: flex-start;
  background: var(--parchment); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 0.7rem 1rem;
  display: grid; gap: 0.1rem;
}
.hero__proof-pre {
  font-family: var(--font-mono); font-size: 0.5625rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stone);
}
.hero__proof-n {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem); line-height: 1; color: var(--charcoal);
  font-variant-numeric: tabular-nums lining-nums;
}
.hero__proof-lbl {
  font-family: var(--font-mono); font-size: 0.5625rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone); margin-top: 0.15rem;
}

/* faixa de confiança — os 3 pontos restantes, "de outra forma" */
.hero__trust {
  margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: 0.85fr 0.85fr 1.3fr;
}
.hero__trust li {
  padding: 0.1rem clamp(20px, 2.6vw, 40px);
  font-size: 1.0625rem; line-height: 1.5; color: var(--charcoal);
  border-left: 1px solid var(--hairline);
}
.hero__trust li:first-child { border-left: 0; padding-left: 0; }

/* ============================================================
   SITUATIONS (01) — rail + lista numerada
   ============================================================ */
.rail__grid { display: grid; grid-template-columns: minmax(240px, 360px) 1fr; gap: clamp(48px, 7vw, 128px); align-items: start; }
.rail__head .h2 { margin-top: 1.25rem; }
.rail__note { margin-top: 2.5rem; }
.rail__note p { color: var(--stone); line-height: 1.68; font-size: 0.9375rem; }
.rail__note p + p { margin-top: 1rem; }

.situations li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.75rem; align-items: baseline;
  padding-block: 1.75rem; border-top: 1px solid var(--hairline);
}
.situations li:last-child { border-bottom: 1px solid var(--hairline); }
.situations__n { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; color: var(--taupe); font-variant-numeric: tabular-nums; }
.situations li > span:last-child { font-size: 1.125rem; line-height: 1.5; color: var(--charcoal); }

/* ============================================================
   DIFFERENTIATION (02) — cabeçalho dividido + faixa de 4
   ============================================================ */
.split-head {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 72px);
  align-items: end; padding-bottom: clamp(32px, 3vw, 48px); border-bottom: 1px solid var(--hairline);
}
.split-head__aside { color: var(--stone); font-size: 1.0625rem; line-height: 1.55; padding-bottom: 0.35rem; }

.feat3 {
  display: grid; grid-template-columns: 1fr 1.12fr 1fr; grid-template-rows: 1fr 1fr;
  grid-template-areas: "a img c" "b img d";
  gap: clamp(16px, 1.6vw, 24px); margin-top: clamp(44px, 4.5vw, 64px);
}
.feat3__media { grid-area: img; min-height: clamp(460px, 48vw, 600px); border-radius: var(--r-card); }
.feat3__media .photo { object-position: 50% 18%; }
.feat3__card {
  display: flex; flex-direction: column; justify-content: space-between; gap: clamp(22px, 2.6vw, 38px);
  background: var(--parchment); border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: clamp(22px, 2vw, 32px);
}
.feat3__card:nth-child(1) { grid-area: a; }
.feat3__card:nth-child(2) { grid-area: b; }
.feat3__card:nth-child(4) { grid-area: c; }
.feat3__card:nth-child(5) { grid-area: d; }
.feat3__n { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--taupe); font-variant-numeric: tabular-nums; }
.feat3__card .h3 { font-size: 1.0625rem; margin-bottom: 0.55rem; }
.feat3__card p { color: var(--stone); font-size: 0.9375rem; line-height: 1.6; }

/* ============================================================
   GALLERY (03) — pico de prova, assimétrico
   ============================================================ */
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.gallery__head .h2 { margin-top: 1.25rem; max-width: 20ch; }
.gallery__head-cta { flex: none; }
.gallery__lead { margin-top: 1.75rem; max-width: 64ch; color: var(--stone); font-size: 1.0625rem; line-height: 1.6; }

.results {
  margin-top: clamp(36px, 4vw, 56px);
  column-count: 3; column-gap: clamp(14px, 1.6vw, 22px);
}
.results__item {
  break-inside: avoid; margin: 0 0 clamp(14px, 1.6vw, 22px);
  border: 1px solid var(--hairline); border-radius: var(--r-card);
  overflow: hidden; background: var(--linen);
}
.results__img { width: 100%; height: auto; display: block; transition: transform 0.55s var(--ease); }

/* ============================================================
   PROCESS (04) — batida escura: cabeçalho sticky + passos em cartões
   ============================================================ */
.process__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 104px); align-items: start;
}
.process__head { position: sticky; top: clamp(92px, 12vh, 132px); align-self: start; }
.process__head .h2 { margin-top: 1.5rem; }
.process__tagline { color: var(--stone); margin-top: 1rem; font-size: 1.0625rem; max-width: 34ch; }
.process__head .inline-cta { margin-top: clamp(28px, 3vw, 40px); }

.process__list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(16px, 1.8vw, 24px); }
.pstep {
  border: 1px solid var(--hairline-strong); border-radius: var(--r-card);
  background: rgba(174, 154, 129, 0.045); padding: clamp(26px, 3vw, 42px);
}
.pstep__n {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 3.2vw, 2.875rem);
  line-height: 1; color: var(--taupe); margin-bottom: 1.25rem; font-variant-numeric: tabular-nums lining-nums;
}
.pstep .h3 { font-size: 1.1875rem; margin-bottom: 0.6rem; }
.pstep p { color: var(--stone); font-size: 0.95rem; line-height: 1.6; max-width: 52ch; }

/* ============================================================
   FOR WHOM (05) — dois cartões com foto do procedimento
   ============================================================ */
.indc2 { margin-top: clamp(44px, 5vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 2.4vw, 32px); align-items: stretch; }
.indc { display: flex; flex-direction: column; background: var(--parchment); border: 1px solid var(--hairline); border-radius: var(--r-card); overflow: hidden; }
.indc__media { border: 0; border-bottom: 1px solid var(--hairline); border-radius: 0; min-height: clamp(220px, 26vw, 320px); }
.indc__body { padding: clamp(26px, 2.6vw, 40px); }
.indc__label {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-weight: 500; font-size: 1.125rem; color: var(--charcoal);
  padding-bottom: 1.375rem; border-bottom: 1px solid var(--hairline);
}
.indc__label::before { content: ""; width: 7px; height: 7px; background: var(--taupe); flex: none; }
.dash-list { margin-top: 2rem; display: grid; gap: 1.25rem; }
.dash-list li { position: relative; padding-left: 1.875rem; color: var(--charcoal); line-height: 1.55; }
.dash-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 13px; height: 1px; background: var(--taupe); }

/* ============================================================
   DOCTOR (06) — retrato sangra à esquerda + stats
   ============================================================ */
.doctor { background: var(--linen); padding-block: clamp(64px, 8vw, 120px); position: relative; overflow: hidden; }
.doctor__card {
  background: var(--parchment); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  padding: clamp(18px, 2vw, 32px);
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 3.5vw, 56px); align-items: stretch;
}
.doctor__media { position: relative; border: 0; border-radius: var(--r-card); min-height: clamp(380px, 42vw, 540px); }
.doctor__body { align-self: center; max-width: 640px; padding-right: clamp(8px, 1.6vw, 28px); }
.doctor__body .h2 { margin-top: 1.25rem; }
.doctor__bio { margin-top: 2rem; font-size: 1.0625rem; line-height: 1.75; color: var(--espresso); }
.stats { margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--hairline-strong); display: flex; flex-wrap: wrap; gap: clamp(32px, 4vw, 72px); }
.stats__item dt { font-family: var(--font-mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem; }
.stats__item dd { font-family: var(--font-display); font-weight: 500; font-size: 1.625rem; line-height: 1; color: var(--charcoal); font-variant-numeric: tabular-nums lining-nums; }

/* ============================================================
   LOCATION (07) — par de mídia assimétrico + cidades inline
   ============================================================ */
.loc__media { margin-top: clamp(16px, 1.8vw, 24px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 28px); }
.loc__media .media { aspect-ratio: 16 / 10; border-radius: var(--r-card); }
.loc__map-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.loc__cta-text { margin-top: clamp(36px, 4vw, 56px); max-width: 660px; color: var(--charcoal); font-size: 1.0625rem; line-height: 1.6; }

/* AVALIAÇÕES DO GOOGLE */
.g-reviews { margin-top: clamp(40px, 4.5vw, 64px); padding-top: clamp(32px, 3.5vw, 48px); border-top: 1px solid var(--hairline); }
.g-reviews__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(24px, 2.6vw, 32px); }
.g-reviews__score { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.5rem 0.625rem; }
.g-reviews__stars { color: var(--gold-sand); font-size: 1.0625rem; letter-spacing: 2px; }
.g-reviews__score-num { font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--charcoal); }
.g-reviews__score-label { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); }
.g-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.g-reviews__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 560px; }
.g-review { border: 1px solid var(--hairline); border-radius: var(--r-card); background: var(--linen); padding: clamp(20px, 2.2vw, 26px); }
.g-review--no-text { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.625rem; text-align: center; padding-block: clamp(24px, 2.6vw, 30px); }
.g-review__stars { display: block; color: var(--gold-sand); font-size: 0.8125rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.g-review--no-text .g-review__stars { font-size: 1rem; margin-bottom: 0; }
.g-review__text { font-size: 0.9375rem; line-height: 1.6; color: var(--charcoal); margin-bottom: 1rem; }
.g-review__author { display: block; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.locator__cities { margin-top: clamp(20px, 2.2vw, 28px); display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.locator__city {
  display: inline-flex; align-items: center; text-decoration: none;
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; line-height: 1.2;
  color: var(--stone); background: var(--parchment); border: 1px solid var(--hairline);
  border-radius: var(--r-full); padding: 8px 16px; cursor: pointer;
  transition: color .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease);
}

/* ============================================================
   FAQ (08) — rail + accordion
   ============================================================ */
.rail__grid--faq { grid-template-columns: minmax(240px, 380px) 1fr; }
.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left;
  padding: 1.75rem 0; font-family: var(--font-sans); font-weight: 500; font-size: 1.0625rem; color: var(--charcoal);
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
details.faq__item summary { list-style: none; }
details.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--taupe); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::before { width: 14px; height: 1.5px; }
.faq__icon::after { width: 1.5px; height: 14px; transition: opacity .25s var(--ease); }
.faq__item[open] .faq__icon::after { opacity: 0; }
.faq__a { padding: 0 0 1.875rem; max-width: 760px; color: var(--stone); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { text-align: center; }
.final .eyebrow { margin-bottom: 1.75rem; }
.final .display { max-width: 20ch; margin: 0 auto; }
.final__lead { max-width: 54ch; margin: 2rem auto 0; font-size: 1.1875rem; line-height: 1.6; color: var(--stone); }
.final__cta { margin-top: 2.75rem; }
.final__meta { margin-top: 2.25rem; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--parchment); padding-block: clamp(56px, 6vw, 88px); }
.site-footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 3.25rem; border-bottom: 1px solid rgba(174,154,129,0.2); }
.site-footer img.brand-mark { height: 40px; margin-bottom: 1.75rem; }
.site-footer p { color: var(--stone); line-height: 1.7; max-width: 38ch; font-size: 0.9375rem; }
.foot-col h4 { font-family: var(--font-mono); font-size: 0.625rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 1.375rem; }
.foot-col a, .foot-col li { color: var(--linen); font-size: 0.9375rem; line-height: 2.1; }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2.25rem; font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); flex-wrap: wrap; }

/* ============================================================
   ELEMENTO DE FUNDO (brand mark) — peça única (não pattern),
   na cor original do arquivo; só em fundos claros.
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero__inner { position: relative; z-index: 1; }
.hero__deco {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  width: min(64vw, 920px); height: auto;
  right: -11%; top: 40%; transform: translateY(-50%);
}

/* Variante STROKE (linhas) cobrindo a seção do Dr. — fundo claro */
.doctor > .container { position: relative; z-index: 1; }
.doctor__deco { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.doctor__deco path { fill: none; stroke: var(--parchment); stroke-width: 2; vector-effect: non-scaling-stroke; }

/* Destaque de palavra no título */
.hl { color: var(--taupe); }
.section--dark .hl { color: var(--gold-sand); }

/* ============================================================
   HOVERS / MICROINTERAÇÕES
   Gated em (hover: hover); transforms anulados em reduced motion.
   ============================================================ */
.btn { transition: background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease); }
.nav a { position: relative; transition: color .2s var(--ease); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: var(--parchment); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.feat3__card, .indc, .pstep, .situations li, .results__item { transition: border-color .25s var(--ease), transform .25s var(--ease), background-color .25s var(--ease); }
.faq__q, .foot-col a { transition: color .2s var(--ease); }
.hero__ig { transition: background-color .2s var(--ease), transform .2s var(--ease); }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .btn--primary:hover { background: var(--espresso); }
  .btn--secondary:hover { border-color: var(--charcoal); }
  .btn--outline:hover { background: var(--taupe); color: #fff; }
  .section--dark .btn--outline:hover { background: var(--taupe); color: var(--charcoal); }

  .nav a:hover { color: var(--warm-white); }
  .nav a:hover::after { transform: scaleX(1); }

  .media:hover .photo, .results__item:hover .results__img { transform: scale(1.045); }
  .media__tag--link:hover { background: var(--taupe); color: #fff; border-color: var(--taupe); }

  .feat3__card:hover, .indc:hover { border-color: var(--hairline-strong); transform: translateY(-3px); }
  .pstep:hover { border-color: var(--taupe); transform: translateY(-3px); }
  .results__item:hover { border-color: var(--hairline-strong); }
  .situations li:hover { border-color: var(--hairline-strong); }

  .locator__city:hover { border-color: var(--taupe); color: var(--charcoal); }

  .faq__q:hover { color: var(--taupe); }
  .foot-col a:hover { color: var(--gold-sand); }

  .hero__ig:hover { background: var(--taupe); transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .feat3__card, .indc, .pstep, .situations li, .results__item,
  .media .photo, .results__img, .nav a::after, .hero__ig { transition: none; }
  .btn:hover, .feat3__card:hover, .indc:hover, .pstep:hover, .hero__ig:hover { transform: none; }
  .media:hover .photo, .results__item:hover .results__img { transform: none; }
}

/* ============================================================
   SCROLL REVEAL (sutil, desliga em prefers-reduced-motion)
   ============================================================ */
.js :is(
  .hero__lead > *, .hero__media, .hero__trust > li,
  .rail__head, .split-head, .section-head, .process__head,
  .situations > li, .feat3__card, .feat3__media,
  .gallery__head, .gallery__lead, .results__item,
  .process__list > .pstep,
  .indc2 > .indc,
  .doctor__media, .doctor__body,
  .loc__media > .media, .loc__cta-text, .locator__cities,
  .faq > .faq__item,
  .final .container > *,
  .site-footer__top > .foot-col
) {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.js .is-visible { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js :is(
    .hero__lead > *, .hero__media, .hero__trust > li,
    .rail__head, .split-head, .section-head, .process__head,
    .situations > li, .feat3__card, .feat3__media,
    .gallery__head, .gallery__lead, .results__item,
    .process__list > .pstep,
    .indc2 > .indc,
    .doctor__media, .doctor__body,
    .loc__media > .media, .loc__cta-text, .locator__cities,
    .faq > .faq__item,
    .final .container > *,
    .site-footer__top > .foot-col
  ) { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .doctor__card { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; gap: clamp(28px, 5vw, 40px); min-height: 0; }
  .hero__media { order: -1; }
  .hero__deco { width: min(82vw, 520px); right: -18%; top: 3%; transform: none; }
  .hero__title { max-width: 24ch; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust li { border-left: 0; border-top: 1px solid var(--hairline); padding: 0.85rem 0; }
  .hero__trust li:first-child { border-top: 0; padding-top: 0; }
  .doctor__media { min-height: clamp(280px, 72vw, 460px); }
  .doctor__body { padding: clamp(24px, 5vw, 36px) clamp(14px, 4vw, 28px); max-width: none; align-self: stretch; }
  .rail__grid, .rail__grid--faq { grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); }
  .split-head { grid-template-columns: 1fr; align-items: start; gap: 1.25rem; }
  .feat3 { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; grid-template-areas: "img img" "a b" "c d"; }
  .feat3__media { min-height: clamp(340px, 56vw, 480px); }
  .process__grid { grid-template-columns: 1fr; gap: clamp(36px, 5vw, 52px); }
  .process__head { position: static; }
  .loc__media { grid-template-columns: 1fr; }
  .g-reviews__grid { grid-template-columns: 1fr 1fr; }
  .results { column-count: 2; }
}
@media (max-width: 640px) {
  :root { --section-y: 76px; }
  .hero__deco { display: none; }
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid rgba(249, 246, 242, 0.4); border-radius: var(--r); }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 1.5px; background: var(--parchment); position: relative; }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-nav { border-bottom: 1px solid rgba(249, 246, 242, 0.2); background: #AE9A81; padding: 0.5rem var(--gutter) 1.5rem; }
  .mobile-nav.open { display: block; }
  .mobile-nav a { display: block; padding: 0.875rem 0; border-bottom: 1px solid rgba(249, 246, 242, 0.2); font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--parchment); }
  .mobile-nav .btn { margin-top: 1.25rem; }

  .feat3 { grid-template-columns: 1fr; grid-template-areas: "img" "a" "b" "c" "d"; }
  .feat3__media { min-height: clamp(300px, 84vw, 440px); }
  .gallery__head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .g-reviews__head { flex-direction: column; align-items: flex-start; }
  .g-reviews__grid { grid-template-columns: 1fr; }
  .results { column-count: 2; }
  .pstep { padding: clamp(22px, 6vw, 30px); }
  .indc2 { grid-template-columns: 1fr; gap: clamp(20px, 5vw, 28px); }
  .stats { gap: 1.875rem 2.5rem; }
  .hero__actions .btn, .final__cta .btn, .gallery__head-cta { width: 100%; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}
