/* ============================================================
   Dra. Lívia Levada Ferreira — Editorial Warmth
   Ginecologia & Obstetrícia · Jundiaí/SP
   ============================================================ */

:root {
  /* Palette */
  --cream:      #faf7f5;
  --cream-2:    #f4ece9;
  --white:      #ffffff;
  --rose:       #eddfe0;
  --rose-dark:  #d4b8bb;
  --rose-deep:  #c49da1;
  --sage:       #8b958d;
  --sage-dark:  #6b7a6d;
  --sage-deep:  #4a5c4d;
  --ink:        #2c2c2c;
  --ink-mid:    #5a5a5a;
  --ink-soft:   #837e7a;
  --line:       rgba(74,92,77,0.12);
  --wa:         #25D366;
  --wa-dark:    #1faa56;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --maxw: 1200px;
  --px: clamp(22px, 5vw, 40px);
  --pxw: clamp(22px, calc((100vw - var(--maxw)) / 2 + 40px), 220px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--sage-deep); color: #fff; padding: 12px 20px;
  font-family: var(--sans); font-size: 14px; text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── Reusable type ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--rose-deep); opacity: 0.7;
}
.eyebrow.center { justify-content: center; }

.headline {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-size: clamp(34px, 8vw, 60px);
}
.headline em { font-style: italic; color: var(--sage-dark); }

.lede {
  font-size: clamp(16px, 4.2vw, 18px);
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
}

.section {
  padding: clamp(64px, 12vw, 130px) var(--px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head { max-width: 640px; margin-bottom: clamp(36px, 7vw, 64px); }
.section-head .headline { margin-top: 18px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  letter-spacing: 0.04em; line-height: 1;
  padding: 17px 30px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sage { background: var(--sage-deep); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(74,92,77,0.22); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.28); }
.btn-ghost { background: transparent; color: var(--sage-deep); border-color: rgba(74,92,77,0.28); }
.btn-ghost:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.btn-rose { background: var(--white); color: var(--sage-deep); }
.btn-rose:hover { background: var(--cream); transform: translateY(-2px); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--px);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.nav.scrolled {
  background: rgba(250,247,245,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 12px; padding-bottom: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-mark { width: 26px; height: auto; }
.nav-wordmark { line-height: 1.05; }
.nav-wordmark b {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--ink); display: block; letter-spacing: 0.01em;
}
.nav-wordmark span {
  font-family: var(--sans); font-size: 9.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-dark);
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-links { display: none; gap: 30px; }
.nav-links a {
  font-family: var(--sans); font-size: 13.5px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--ink-mid); text-decoration: none;
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--sage-dark); transition: width .25s ease;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-ig {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--sage-dark); text-decoration: none;
  transition: all .2s;
}
.nav-ig:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }
.nav-ig svg { width: 17px; height: 17px; }
.nav-cta {
  font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.03em;
  background: var(--sage-deep); color: #fff; text-decoration: none; white-space: nowrap;
  padding: 11px 20px; border-radius: 100px; transition: all .2s;
}
@media (max-width: 560px) {
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav-logo { gap: 9px; }
  .nav-wordmark b { font-size: 16px; white-space: nowrap; }
  .nav-wordmark span { font-size: 8px; letter-spacing: 0.08em; white-space: nowrap; }
  .nav-mark { width: 21px; }
  .nav-right { gap: 8px; }
  .nav-ig { width: 33px; height: 33px; }
  .nav-cta { padding: 9px 14px; font-size: 11.5px; }
}
.nav-cta:hover { background: var(--sage-dark); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 124px var(--px) clamp(56px, 10vw, 96px);
  max-width: var(--maxw); margin: 0 auto;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(22px, 5vw, 38px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .headline { margin: 22px 0 24px; }
.hero-copy .lede { max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions .btn { flex: 1 1 auto; }

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft); letter-spacing: 0.02em;
}
.hero-trust .star { color: var(--rose-deep); letter-spacing: 1px; }
.hero-trust b { color: var(--sage-deep); font-weight: 500; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose-dark); }

/* Hero grid: eyebrow → stats → portrait → copy on mobile */
.hero-eyebrow { order: 1; margin-bottom: -4px; }
.metrics-bar {
  order: 3;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(18px,4.5vw,24px) 4px;
}
.hero-figure { order: 2; }
.hero-copy { order: 4; }

/* Portrait arch */
.hero-figure { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.hero-photo {
  position: relative; z-index: 2;
  aspect-ratio: 4/5; width: 100%;
  border-radius: 230px 230px 28px 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(74,92,77,0.45);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.hero-arch-bg {
  position: absolute; z-index: 1; left: 50%; top: 26px;
  width: 86%; height: 100%; transform: translateX(-46%);
  background: linear-gradient(160deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 230px 230px 28px 28px;
}
.hero-watermark {
  position: absolute; z-index: 0; opacity: 0.5;
  width: 120px; right: -10px; top: -28px; pointer-events: none;
}
.hero-badge {
  position: absolute; z-index: 3; left: -6px; bottom: 30px;
  background: var(--white); border-radius: 18px;
  padding: 14px 18px; box-shadow: 0 18px 40px -18px rgba(74,92,77,0.4);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line);
}
.hero-badge .hb-stars { color: var(--rose-deep); font-size: 13px; letter-spacing: 1px; }
.hero-badge .hb-num { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--sage-deep); line-height: 1; }
.hero-badge .hb-label { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

/* ── Metrics strip ───────────────────────────────────────── */
.metrics {
  background: var(--white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.metrics-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(28px,5vw,40px) var(--px);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.metric { text-align: center; padding: 6px 10px; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric .m-num { font-family: var(--serif); font-size: clamp(30px, 7vw, 46px); font-weight: 500; color: var(--sage-deep); line-height: 1; }
.metric .m-num small { font-size: 0.5em; }
.metric .m-label { font-size: clamp(9.5px,2.6vw,11px); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 9px; line-height: 1.5; }

/* ── Sobre ───────────────────────────────────────────────── */
.sobre-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.sobre-figure { position: relative; max-width: 420px; width: 100%; justify-self: center; }
.sobre-figure .sf-photo {
  aspect-ratio: 3/4; border-radius: 210px 210px 24px 24px; overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(74,92,77,0.4);
}
.sobre-figure .sf-photo img { width: 100%; height: 100%; object-fit: cover; }
.sobre-figure .sf-wash {
  position: absolute; inset: -22px -22px auto auto; width: 70%; height: 60%;
  background: var(--rose); border-radius: 0 24px 0 120px; z-index: -1;
}
.sobre-body p { font-size: clamp(16px,4vw,17.5px); color: var(--ink-mid); line-height: 1.85; margin-bottom: 18px; }
.sobre-body p strong { color: var(--sage-deep); font-weight: 500; }
.pull {
  position: relative; margin: 30px 0; padding: 26px 28px 26px 30px;
  background: linear-gradient(150deg, var(--cream-2), var(--white));
  border-radius: 0 18px 18px 0; border-left: 3px solid var(--rose-deep);
}
.pull p { font-family: var(--serif); font-style: italic; font-size: clamp(19px,4.6vw,22px); color: var(--ink); line-height: 1.55; margin: 0; }
.pull .pull-mark { font-family: var(--serif); position: absolute; top: 6px; left: 14px; font-size: 40px; color: var(--rose-deep); opacity: 0.5; line-height: 1; }

.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cred {
  font-size: 12px; letter-spacing: 0.05em; color: var(--sage-deep);
  background: rgba(139,149,141,0.1); border-radius: 100px; padding: 8px 16px;
}

/* ── Especialidades ──────────────────────────────────────── */
.especialidades { background: var(--cream-2); max-width: none; }
.especialidades > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.esp-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.esp-card {
  position: relative; text-align: left; cursor: pointer; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  font-family: inherit;
}
.esp-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -26px rgba(74,92,77,0.4); border-color: rgba(196,157,161,0.5); }
.esp-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--rose); }
.esp-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.esp-card:hover .esp-thumb img { transform: scale(1.05); }
.esp-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage-deep); background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 6px 12px; border-radius: 100px;
}
.esp-info { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.esp-info h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); line-height: 1.2; margin-bottom: 9px; }
.esp-info p { font-size: 14.5px; color: var(--ink-mid); line-height: 1.6; flex: 1; }
.esp-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep);
  font-weight: 400;
}
.esp-more svg { width: 15px; height: 15px; transition: transform .25s; }
.esp-card:hover .esp-more svg { transform: translateX(4px); }

/* ── Depoimentos ─────────────────────────────────────────── */
.depoimentos {
  background: var(--sage-deep); color: var(--rose); max-width: none;
  position: relative; overflow: hidden;
}
.depoimentos .inner { max-width: var(--maxw); margin: 0 auto; }
.depoimentos .eyebrow { color: var(--rose-dark); }
.depoimentos .eyebrow::before { background: var(--rose-dark); }
.depoimentos .headline { color: var(--rose); }
.depoimentos .headline em { color: var(--rose-dark); }
.dep-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.dep-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(237,223,224,0.16);
  border-radius: 20px; padding: 30px 28px;
}
.dep-stars { color: var(--rose-dark); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.dep-quote { font-family: var(--serif); font-style: italic; font-size: clamp(18px,4.4vw,21px); line-height: 1.6; color: #fdf8f6; margin-bottom: 18px; }
.dep-author { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(237,223,224,0.65); }
.dep-foot { text-align: center; margin-top: 40px; }
.dep-watermark { position: absolute; right: -40px; bottom: -40px; width: 260px; opacity: 0.06; pointer-events: none; }

/* ── Locais ──────────────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.loc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 26px;
}
.loc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.loc-pin {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
}
.loc-pin svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 1.5; }
.loc-name { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.15; }
.loc-type { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.loc-addr { font-size: 14.5px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 20px; }
.loc-btns { display: flex; gap: 10px; }
.loc-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13.5px; font-weight: 400; text-decoration: none; padding: 13px 12px; border-radius: 100px;
  transition: all .2s;
}
.loc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.loc-btn.tel { color: var(--sage-deep); border: 1px solid rgba(74,92,77,0.28); }
.loc-btn.tel:hover { background: var(--sage-deep); color: #fff; }
.loc-btn.wa { color: #fff; background: var(--wa); }
.loc-btn.wa:hover { background: var(--wa-dark); }

.loc-doctoralia {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: var(--sage-deep); border-radius: 20px; padding: 26px 26px;
  transition: all .25s ease;
}
.loc-doctoralia:hover { background: var(--sage-dark); transform: translateY(-3px); box-shadow: 0 20px 40px -22px rgba(74,92,77,0.5); }
.loc-doctoralia .ld-icon { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-doctoralia .ld-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.6; }
.loc-doctoralia .ld-text b { font-family: var(--serif); font-size: 21px; font-weight: 500; color: #fff; display: block; line-height: 1.2; }
.loc-doctoralia .ld-text span { font-size: 13px; color: rgba(237,223,224,0.8); }
.loc-doctoralia .ld-arrow { margin-left: auto; color: var(--rose-dark); font-size: 22px; }

.note {
  display: flex; gap: 14px; align-items: flex-start;
  margin-top: 18px; padding: 18px 22px; background: var(--white);
  border-radius: 16px; border-left: 3px solid var(--sage);
}
.note svg { width: 20px; height: 20px; stroke: var(--sage-dark); fill: none; stroke-width: 1.6; flex-shrink: 0; margin-top: 2px; }
.note-text { font-size: 13.5px; color: var(--ink-mid); line-height: 1.6; }
.note-text strong { display: block; color: var(--ink); font-weight: 500; margin-bottom: 3px; }

/* ── Agendamento band ────────────────────────────────────── */
.cta-band { background: var(--rose); max-width: none; }
.cta-band-inner {
  max-width: 760px; margin: 0 auto; padding: clamp(60px,11vw,110px) var(--px);
  text-align: center;
}
.cta-band .eyebrow { color: var(--sage-dark); }
.cta-band .eyebrow::before { background: var(--sage-dark); }
.cta-band .headline { color: var(--sage-deep); margin: 18px 0 22px; }
.cta-band p { color: var(--sage-dark); font-size: clamp(16px,4vw,18px); line-height: 1.8; max-width: 480px; margin: 0 auto 36px; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--white); max-width: none; }
.faq > * { max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-list { margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 24px 0; font-family: var(--serif); font-size: clamp(19px,4.6vw,22px);
  font-weight: 500; color: var(--ink); line-height: 1.35; transition: color .2s;
}
.faq-q:hover { color: var(--sage-dark); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--rose-deep); transition: transform .3s ease;
}
.faq-icon::before { top: 11px; left: 3px; width: 18px; height: 2px; }
.faq-icon::after { left: 11px; top: 3px; width: 2px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-q::-webkit-details-marker { display: none; }
details > summary { list-style: none; }
.faq-a { padding: 0 0 26px; font-size: clamp(15px,3.8vw,17px); color: var(--ink-mid); line-height: 1.8; }
.faq-a a { color: var(--sage-dark); text-decoration: underline; }

/* ── Instagram ───────────────────────────────────────────── */
.insta { background: var(--cream-2); max-width: none; }
.insta-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,10vw,100px) var(--px);
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center;
}
.insta-cta {
  display: inline-flex; align-items: center; gap: 10px; align-self: start;
  padding: 16px 28px; border-radius: 100px; text-decoration: none;
  font-family: var(--sans); font-size: 14px; font-weight: 400; letter-spacing: 0.03em; color: #fff;
  background: linear-gradient(135deg,#f09433,#dc2743,#bc1888);
  transition: transform .25s ease, box-shadow .25s ease;
}
.insta-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(220,39,67,0.5); }
.insta-cta svg { width: 18px; height: 18px; }
.insta-handle { font-size: 14px; color: var(--ink-soft); margin-top: 14px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: #232323; color: rgba(255,255,255,0.6); padding: clamp(54px,9vw,80px) var(--px) 38px; text-align: center; }
.footer-mark { width: 40px; margin: 0 auto 22px; opacity: 0.85; }
.footer-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--rose); }
.footer-crm { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.32); margin: 8px 0 26px; }
.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 26px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.55);
  text-decoration: none; transition: all .2s;
}
.footer-social a:hover { border-color: var(--rose); color: var(--rose); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-blog {
  display: inline-block; font-family: var(--serif); font-size: 15px; color: rgba(255,255,255,0.6);
  text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 26px; transition: all .25s;
}
.footer-blog:hover { color: var(--rose); border-color: var(--rose); }
.footer-blog .badge { margin-left: 8px; font-family: var(--sans); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); background: rgba(237,223,224,0.1); border-radius: 10px; padding: 3px 9px; vertical-align: middle; }
.footer-bottom { font-size: 11px; color: rgba(255,255,255,0.28); line-height: 1.9; }

/* ── Sticky mobile action bar ────────────────────────────── */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,247,245,0.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .4s cubic-bezier(.32,.72,0,1);
}
.actionbar.show { transform: translateY(0); }
.actionbar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; border-radius: 100px; text-decoration: none;
  font-family: var(--sans); font-size: 14px; font-weight: 400; letter-spacing: 0.02em;
}
.actionbar a svg { width: 17px; height: 17px; }
.actionbar .ab-wa { background: var(--wa); color: #fff; }
.actionbar .ab-doc { background: var(--sage-deep); color: #fff; }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(44,44,44,0.55); backdrop-filter: blur(4px);
  align-items: flex-end; justify-content: center;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
.modal-sheet {
  background: var(--white); border-radius: 28px 28px 0 0;
  width: 100%; max-width: 600px; max-height: 92svh; overflow-y: auto;
  animation: sheetUp .38s cubic-bezier(.32,.72,0,1);
}
.modal-handle { width: 42px; height: 4px; background: rgba(139,149,141,0.3); border-radius: 2px; margin: 14px auto 0; }
.modal-close {
  position: absolute; top: 16px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink-mid);
}
.modal-inner { position: relative; padding: 0 28px 40px; }
.modal-img { width: calc(100% + 56px); margin-left: -28px; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 26px; background: var(--rose); }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-tag { display: block; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 10px; }
.modal-title { font-family: var(--serif); font-size: clamp(26px,6vw,34px); font-weight: 400; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.modal-divider { width: 38px; height: 1px; background: var(--rose-deep); margin-bottom: 20px; }
.modal-body p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px; }
.modal-body p.intro { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--sage-dark); line-height: 1.55; }
.modal-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.modal-ctas .btn { width: 100%; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

/* ── Reveal on scroll ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   TABLET ≥ 720px
   ════════════════════════════════════════════════════════════ */
@media (min-width: 720px) {
  .hero-actions .btn { flex: 0 1 auto; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .dep-grid { grid-template-columns: repeat(3, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-doctoralia { grid-column: 1 / -1; }
  .note { grid-column: 1 / -1; }
  .insta-inner { grid-template-columns: 1.2fr 1fr; }
  .actionbar { display: none; }
}

/* ════════════════════════════════════════════════════════════
   DESKTOP ≥ 1000px
   ════════════════════════════════════════════════════════════ */
@media (min-width: 1000px) {
  .nav { padding-left: var(--pxw); padding-right: var(--pxw); }
  .nav-links { display: flex; }
  .section { padding-left: var(--pxw); padding-right: var(--pxw); }
  .metrics-inner, .hero, .depoimentos .inner, .cta-band-inner, .insta-inner { padding-left: var(--pxw); padding-right: var(--pxw); }
  .especialidades > *, .faq > *, .depoimentos .inner { padding-left: 0; padding-right: 0; }

  .hero { padding-top: 150px; }
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas: "eyebrow figure" "copy figure" "metrics metrics";
    column-gap: 72px; row-gap: 0; align-items: start;
  }
  .hero-eyebrow { grid-area: eyebrow; align-self: end; margin: 0; }
  .hero-copy { grid-area: copy; }
  .hero-figure { grid-area: figure; max-width: 480px; justify-self: end; align-self: center; }
  .metrics-bar {
    grid-area: metrics; background: transparent; border: none;
    border-top: 1px solid var(--line); border-radius: 0;
    margin-top: 44px; padding: 38px 0 0;
  }
  .esp-grid { grid-template-columns: repeat(3, 1fr); }
  .sobre-grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; }
  .sobre-figure { justify-self: start; position: sticky; top: 100px; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Conteúdo-fonte das especialidades (indexável, exibido via modal) */
.esp-details[hidden]{display:none!important}
