/* ════════════════════════════════════════════════════════════
   MELISSA GOUVEIA — melinsights
   Warm Madeira sand and cream, deep clay ink, and the lilac
   she asked us to keep from the Instagram mark. The speech
   bubble is not a logo dropped in a corner — it is the spine
   of the page: it holds her portrait, it frames what she
   says, it marks every section. "melinsights" is a person
   talking plainly about hard things, so the page talks too.
   Fraunces (soft, warm, slightly wonky) for display;
   DM Sans for reading.
   ════════════════════════════════════════════════════════════ */

:root {
  --paper: #FAF6EF;
  --sand: #EFE6D8;
  --sand-2: #E6D9C7;
  --card: #FFFDF9;
  --ink: #3A2E26;
  --ink-soft: #6B594B;
  --muted: #9A8878;
  --line: rgba(58, 46, 38, 0.11);
  --line-soft: rgba(58, 46, 38, 0.06);
  --lilac: #8B76D9;
  --lilac-deep: #6D57C0;
  --lilac-soft: #B9A7F0;
  --lilac-wash: rgba(139, 118, 217, 0.10);
  --lilac-line: rgba(139, 118, 217, 0.30);
  --clay: #B08968;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(139, 118, 217, 0.2); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--lilac-deep);
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}
/* every eyebrow carries a miniature of her mark */
.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 13px; height: 11px;
  border: 1.6px solid currentColor;
  border-radius: 4px 4px 4px 1px;
  transform: translateY(-1px);
}

/* ── Nav ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(250, 246, 239, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; flex: 0 0 auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand b {
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.brand small {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px); }
.nav-links { display: flex; gap: clamp(14px, 2vw, 24px); }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.on { color: var(--lilac-deep); }

/* ── Buttons ─────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--lilac);
  padding: 13px 26px;
  border-radius: 999px;
  transition: background 0.3s, transform 0.25s var(--ease), box-shadow 0.3s;
  box-shadow: 0 14px 30px -14px rgba(109, 87, 192, 0.7);
}
.cta:hover { background: var(--lilac-deep); box-shadow: 0 18px 34px -14px rgba(109, 87, 192, 0.8); }
.cta svg { width: 17px; height: 17px; transition: transform 0.3s var(--ease); }
.cta:hover svg { transform: translateX(4px); }
.cta:active { transform: scale(0.985) !important; }
.cta.quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.cta.quiet:hover { border-color: var(--lilac-line); background: var(--lilac-wash); color: var(--lilac-deep); }
.nav-cta {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--lilac);
  padding: 9px 19px;
  border-radius: 999px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--lilac-deep); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 84px);
  padding: 124px clamp(18px, 5vw, 56px) 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(52% 46% at 78% 30%, rgba(139, 118, 217, 0.13), transparent 68%),
    radial-gradient(46% 44% at 8% 82%, rgba(176, 137, 104, 0.13), transparent 70%);
}
.hero-copy { flex: 0 1 600px; }
.hero-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  opacity: 0;
  animation: fade 1s var(--ease) 0.1s forwards;
}
.hero-brand span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lilac-deep);
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.45rem, 5vw, 4.05rem);
  letter-spacing: -0.03em;
}
.hero h1 .l { display: block; overflow: hidden; }
.hero h1 .l span {
  display: block;
  transform: translateY(112%);
  animation: lineUp 1.15s var(--ease) forwards;
}
.hero h1 .l:nth-child(2) span { animation-delay: 0.09s; }
.hero h1 .l:nth-child(3) span { animation-delay: 0.18s; }
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .sub {
  margin-top: 26px;
  max-width: 46ch;
  font-size: 17.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 34px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}
.hero-meta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
  font-size: 13.8px;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s forwards;
}
.hero-meta b { color: var(--ink-soft); font-weight: 600; }

/* portrait — she stands in her own speech bubble and leans out of it */
.hero-photo-wrap {
  position: relative;
  flex: 0 0 auto;
  width: min(410px, 40vw);
  opacity: 0;
  animation: fade 1.2s var(--ease) 0.35s forwards;
}
.speech-blob {
  position: relative;
  aspect-ratio: 1 / 1.06;
  border-radius: 46% 46% 44% 44% / 40% 40% 50% 50%;
  background: linear-gradient(163deg, var(--lilac-soft), var(--lilac) 88%);
  box-shadow: 0 44px 78px -42px rgba(109, 87, 192, 0.65);
}
/* the bubble's tail, bottom-left, same geometry as the nav mark */
.speech-blob::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -26px;
  width: 62px; height: 62px;
  background: var(--lilac);
  border-radius: 0 0 0 60% ;
  transform: rotate(6deg);
  z-index: -1;
}
/* she stands cut out of her background, on top of the bubble shape —
   no room, no light switch, just her and the colour */
.hero-photo {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 2;
}
.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(58, 46, 38, 0.28));
}
/* a second, empty bubble drifting behind — the conversation continues */
.mini-bubble {
  position: absolute;
  top: -6%;
  right: -4%;
  width: 74px; height: 62px;
  border: 2px solid var(--lilac-line);
  border-radius: 20px 20px 20px 5px;
  animation: floaty 8s ease-in-out infinite;
}
.mini-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lilac-line);
  box-shadow: -13px 0 0 var(--lilac-line), 13px 0 0 var(--lilac-line);
}

/* generates no box on desktop: the chips stay absolutely positioned
   against .hero-photo-wrap. On mobile it becomes a real flex row. */
.chip-row { display: contents; }

.chip-float {
  position: absolute;
  z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 17px;
  border-radius: 16px 16px 16px 4px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(58, 46, 38, 0.08);
  box-shadow: 0 22px 44px -22px rgba(58, 46, 38, 0.34), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: floaty 8s ease-in-out infinite;
}
.chip-float small {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--muted);
}
.chip-float b { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.chip-float b i { font-style: italic; color: var(--lilac-deep); }
.chip-a { top: 16%; left: -52px; animation-delay: -2s; }
.chip-b { bottom: 12%; right: -38px; animation-delay: -5.5s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ── Manifesto — what she actually says, in a bubble ─────── */
.manifesto {
  position: relative;
  padding: clamp(74px, 10vw, 120px) clamp(18px, 5vw, 56px);
  background: var(--sand);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.bubble-quote {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px) clamp(26px, 5vw, 60px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 34px 34px 34px 8px;
  box-shadow: 0 30px 60px -34px rgba(58, 46, 38, 0.3);
}
.bubble-quote p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.bubble-quote p em { font-style: italic; color: var(--lilac-deep); }
.bubble-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(80px, 11vw, 144px) clamp(18px, 5vw, 56px); }
.inner { max-width: 1160px; margin: 0 auto; }
.section h2 {
  margin-top: 15px;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 21ch;
  text-wrap: balance;
}
.section .lead {
  margin-top: 18px;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ── Sobre mim ───────────────────────────────────────────── */
.about { background: var(--card); border-top: 1px solid var(--line-soft); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}
.about-body p + p { margin-top: 1.15em; }
.about-body p {
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--ink-soft);
  max-width: 60ch;
}
.about-body strong { color: var(--ink); font-weight: 600; }

.tr-block + .tr-block { margin-top: clamp(28px, 4vw, 40px); }
.tr-block h3 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lilac-deep);
}
.tr-list { margin-top: 14px; border-top: 1px solid var(--line); }
.tr-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.tr-item b { font-weight: 600; font-size: 15.5px; color: var(--ink); }
.tr-item span { display: block; font-size: 14px; color: var(--muted); margin-top: 1px; }
.tr-item .yr {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--lilac-deep);
  white-space: nowrap;
}
.approach-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 9px; }
.approach-tags span {
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 15px;
  border: 1px solid var(--lilac-line);
  border-radius: 999px;
  color: var(--lilac-deep);
  background: var(--lilac-wash);
}

/* ── Journey — the cities that led here, line draws itself in ──── */
.journey { margin-top: clamp(48px, 6vw, 68px); }
.journey-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.journey-trail { position: relative; padding-left: 28px; }
.journey-trail::before {
  content: "";
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--lilac-line), rgba(139,118,217,0.06));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s var(--ease) 0.2s;
}
.journey.in .journey-trail::before { transform: scaleY(1); }
.journey-stop {
  position: relative;
  padding: 11px 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.journey.in .journey-stop { opacity: 1; transform: none; }
.journey.in .journey-stop:nth-child(1) { transition-delay: 0.2s; }
.journey.in .journey-stop:nth-child(2) { transition-delay: 0.38s; }
.journey.in .journey-stop:nth-child(3) { transition-delay: 0.56s; }
.journey.in .journey-stop:nth-child(4) { transition-delay: 0.74s; }
.journey.in .journey-stop:nth-child(5) { transition-delay: 0.92s; }
.journey-dot {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--lilac-line);
}
.journey-place {
  font-family: var(--display);
  font-size: 17px;
  color: var(--ink-soft);
}
.journey-place i { font-style: italic; color: var(--lilac-line); margin: 0 2px; }
.journey-current .journey-dot {
  background: var(--lilac);
  border-color: var(--lilac);
  box-shadow: 0 0 0 4px var(--lilac-wash);
  animation: journeyPulse 2.6s ease-in-out infinite;
  animation-delay: 1.1s;
}
.journey-current .journey-place { color: var(--ink); font-weight: 600; }
.journey-current .journey-place small {
  display: inline-block;
  margin-left: 9px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lilac-deep);
  background: var(--lilac-wash);
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
}
@keyframes journeyPulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--lilac-wash); }
  50% { box-shadow: 0 0 0 9px rgba(139,118,217,0); }
}
/* ── Áreas ───────────────────────────────────────────────── */
.areas-list { margin-top: clamp(40px, 5.5vw, 62px); border-top: 1px solid var(--line); }
.area {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 5vw, 64px);
  padding: clamp(22px, 3.2vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease);
}
.area:hover { padding-left: 12px; }
.area h3 { font-size: clamp(1.24rem, 2.1vw, 1.66rem); }
.area p { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); max-width: 54ch; }
.area-sub {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.area-sub span {
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--sand);
}
.who {
  margin-top: clamp(36px, 5vw, 52px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 11px;
}
.who b {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.19em;
  text-transform: uppercase; color: var(--muted); margin-right: 4px;
}
.who span {
  font-size: 14px; font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--card);
}

/* ── Investigação ────────────────────────────────────────── */
.research { background: var(--sand); border-top: 1px solid var(--line-soft); }

.thesis-block {
  margin-top: clamp(36px, 5vw, 50px);
  padding: clamp(26px, 3.4vw, 36px) clamp(24px, 4vw, 40px);
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lilac);
  border-radius: 4px 20px 20px 4px;
}
.thesis-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.thesis-title {
  margin-top: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  max-width: 62ch;
}
.thesis-body {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 68ch;
}

.study-list { margin-top: clamp(32px, 4.5vw, 46px); display: grid; gap: 22px; }
.study {
  position: relative;
  padding: clamp(28px, 3.6vw, 42px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px 26px 26px 6px;
  box-shadow: 0 24px 52px -34px rgba(58, 46, 38, 0.28);
}
.study-top {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.study-no {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--lilac-deep);
}
.badge {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lilac-wash);
  color: var(--lilac-deep);
  border: 1px solid var(--lilac-line);
}
.badge.soon { background: rgba(176, 137, 104, 0.12); color: #8A6647; border-color: rgba(176, 137, 104, 0.34); }
.study h3 { font-size: clamp(1.3rem, 2.2vw, 1.72rem); max-width: 32ch; }
.study > p { margin-top: 14px; font-size: 15.8px; line-height: 1.85; color: var(--ink-soft); max-width: 68ch; }
.study > p strong { color: var(--lilac-deep); font-weight: 700; }
.study-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.study-meta div small {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 3px;
}
.study-meta div b { font-size: 15px; font-weight: 600; color: var(--ink); }
.study-team {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.study-team small {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 9px;
}
.study-team ul { list-style: none; display: grid; gap: 7px; }
.study-team li {
  font-size: 14.2px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding-left: 15px;
  position: relative;
  max-width: 74ch;
}
.study-team li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lilac-line);
}
.study-team li b { color: var(--ink); font-weight: 600; }

.study-actions {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 13px;
}
.study-note {
  margin-top: 15px;
  font-size: 13.3px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}
.study.pending { background: transparent; box-shadow: none; border-style: dashed; }

/* ── Consultas ───────────────────────────────────────────── */
.booking { background: var(--card); border-top: 1px solid var(--line-soft); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}
.rate-table { margin-top: 28px; border-top: 1px solid var(--line); }
.rate {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 22px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.rate span { font-size: 16px; color: var(--ink-soft); }
.rate span small { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.rate b { font-family: var(--display); font-size: 25px; font-weight: 600; white-space: nowrap; }
.rate b i { font-style: italic; font-weight: 400; font-size: 16px; color: var(--lilac-deep); }

.steps { margin-top: 28px; border-top: 1px solid var(--line); }
.b-step {
  display: grid; grid-template-columns: 28px 1fr; gap: 15px;
  align-items: baseline; padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.b-step i { font-family: var(--display); font-style: italic; font-size: 16px; color: var(--lilac-deep); }
.b-step h3 { font-size: 1.16rem; }
.b-step p { margin-top: 3px; font-size: 15px; color: var(--ink-soft); line-height: 1.72; }
.booking .cta { margin-top: 30px; }
.booking-note { display: block; margin-top: 15px; font-size: 13.3px; color: var(--muted); line-height: 1.7; }

.where {
  margin-top: 26px;
  padding: 20px 22px;
  background: var(--sand);
  border-radius: 18px 18px 18px 5px;
}
.where small {
  display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 5px;
}
.where b { font-size: 15.5px; font-weight: 600; }
.where p { font-size: 14.5px; color: var(--ink-soft); margin-top: 2px; }
.where .where-note { margin-top: 9px; font-size: 13.3px; color: var(--muted); line-height: 1.65; }

/* ── Final ───────────────────────────────────────────────── */
.final {
  position: relative;
  text-align: center;
  padding: clamp(90px, 13vw, 160px) clamp(18px, 5vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
.final::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(58% 60% at 50% 108%, rgba(139, 118, 217, 0.16), transparent 66%);
}
.final h2 { margin: 16px auto 0; max-width: 18ch; font-size: clamp(2.1rem, 4.7vw, 3.4rem); }
.final .lead { margin: 20px auto 0; max-width: 46ch; }
.final .cta { margin-top: 34px; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 30px clamp(18px, 5vw, 56px);
  font-size: 13.3px;
  color: var(--muted);
  background: var(--sand);
}
.foot {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 11px 32px;
  justify-content: space-between;
}
footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--lilac-deep); }

/* reveal */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv2 { transition-delay: 0.1s; }
.rv3 { transition-delay: 0.2s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 104px clamp(18px, 5vw, 56px) 64px;
    min-height: 0;
  }
  .hero-copy { order: 2; flex: 1 1 auto; }
  .hero-photo-wrap {
    order: 1;
    align-self: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 124px;
  }
  /* chips would sit across her face at this width — lay them out
     as a row underneath the portrait instead */
  .chip-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: absolute;
    left: -10px; right: -10px;
    top: 100%;
    margin-top: 20px;
  }
  .chip-float { position: static; animation: none; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .area { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 560px) {
  .chip-float { padding: 10px 14px; }
  .chip-float b { font-size: 14.5px; }
  .study-actions { flex-direction: column; align-items: stretch; }
  .study-actions .cta { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .hero h1 .l span { transform: none; }
  .hero-brand, .hero .sub, .hero-actions, .hero-meta, .hero-photo-wrap { opacity: 1; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Chooser: online (Nexo) vs presencial (a clínica) ────── */
.book-modal {
  inset: 0;
  margin: auto;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 8px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 50px 90px -40px rgba(58, 46, 38, 0.5);
  overflow: auto;
}
.book-modal::backdrop {
  background: rgba(58, 46, 38, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.book-modal[open] { animation: bookIn 0.34s var(--ease); }
@keyframes bookIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.book-modal h3 {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
}
.book-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.book-close:hover { background: var(--sand); color: var(--ink); }

.book-options { margin-top: clamp(22px, 3vw, 28px); display: grid; gap: 13px; }
.book-opt {
  display: block;
  padding: 20px 22px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 20px 20px 20px 5px;
  background: var(--paper);
  transition: border-color 0.28s, background 0.28s, transform 0.28s var(--ease);
}
.book-opt:hover {
  border-color: var(--lilac-line);
  background: var(--lilac-wash);
  transform: translateY(-2px);
}
.book-opt-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.book-opt-head b {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.book-opt-head i {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--lilac-deep);
  white-space: nowrap;
}
.book-opt small {
  display: block;
  margin-top: 7px;
  font-size: 14.3px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.book-go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lilac-deep);
}
.book-go svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.book-opt:hover .book-go svg { transform: translateX(4px); }
.book-close:focus-visible,
.book-opt:focus-visible,
.cta:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--lilac);
  outline-offset: 3px;
}
