/* ============================================================
   Dra. Bruna Castro — Odontologia Estética · Itu/SP
   Paleta da marca: rosé #D4AAAA · cinza #848688 · grafite editorial
   Tipografia: Cormorant Garamond (display) + Jost (texto/UI)
   ============================================================ */

:root {
  --porcelain: #FAF7F4;
  --paper: #F2EBE6;
  --rose: #D4AAAA;
  --rose-deep: #B08585;
  --rose-soft: #F0E2E2;
  --stone: #848688;
  --ink: #211F1E;
  --ink-soft: #3B3835;
  --line: rgba(33, 31, 30, 0.12);
  --line-light: rgba(250, 247, 244, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Century Gothic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
main img, .footer-brand img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Tipografia ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--rose);
}

.lead { font-size: 1.16rem; color: var(--ink-soft); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 2.3rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn-solid { background: var(--ink); color: var(--porcelain); }
.btn-solid:hover { background: var(--rose-deep); transform: translateY(-2px); }

.btn-rose { background: var(--rose); color: var(--ink); }
.btn-rose:hover { background: var(--rose-deep); color: var(--porcelain); transform: translateY(-2px); }

.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--porcelain); transform: translateY(-2px); }

.btn-outline-light { border-color: rgba(250,247,244,0.5); color: var(--porcelain); background: transparent; }
.btn-outline-light:hover { background: var(--porcelain); color: var(--ink); transform: translateY(-2px); }

.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(250, 247, 244, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.header.scrolled .header-inner { padding: 0.7rem 0; }

.brand img { height: 46px; width: auto; transition: height 0.4s var(--ease); }
.header.scrolled .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: 2.1rem; }

.nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }

.nav .nav-cta {
  border: 1px solid var(--rose-deep);
  color: var(--rose-deep);
  padding: 0.55rem 1.4rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--rose-deep); color: var(--porcelain); }

/* dropdown tratamentos */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 280px;
  background: var(--porcelain);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -20px rgba(33, 31, 30, 0.25);
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-drop-menu a {
  display: block;
  padding: 0.55rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}
.nav-drop-menu a::after { display: none; }
.nav-drop-menu a:hover { background: var(--rose-soft); color: var(--rose-deep); }

/* hamburger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 85; /* abaixo do header (90) para o burger continuar visivel/clicavel */
  background: var(--porcelain);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.5rem 8% 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.mm-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border-bottom: none;
  padding: 0.45rem 0 0.45rem 1.2rem;
}
.mobile-menu .mm-label {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 1.6rem 0 0.4rem;
}
.mobile-menu .btn {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  border-bottom: none;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4rem;
  background: var(--porcelain);
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  right: -6%;
  bottom: -12%;
  width: clamp(340px, 42vw, 640px);
  opacity: 0.07;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero-copy .eyebrow { animation: rise 0.9s var(--ease) both 0.1s; }
.hero-copy h1 { animation: rise 0.9s var(--ease) both 0.25s; }
.hero-copy .lead { margin: 1.6rem 0 2.4rem; max-width: 46ch; animation: rise 0.9s var(--ease) both 0.4s; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; animation: rise 0.9s var(--ease) both 0.55s; }

.hero-note {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  animation: rise 0.9s var(--ease) both 0.7s;
}
.hero-note::before { content: ""; width: 44px; height: 1px; background: var(--rose); flex: none; }

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  animation: fadeIn 1.2s var(--ease) both 0.35s;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--rose);
  z-index: 0;
}
.hero-portrait img { position: relative; z-index: 1; }
.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: -1px;
  bottom: 1.6rem;
  background: var(--porcelain);
  padding: 0.7rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-portrait figcaption strong { display: block; font-weight: 500; color: var(--rose-deep); }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Seções ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section-paper { background: var(--paper); }
.section-dark { background: var(--ink); color: rgba(250, 247, 244, 0.78); }
.section-dark h2, .section-dark h3 { color: var(--porcelain); }
.section-dark .eyebrow { color: var(--rose); }

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 1.1rem; }

/* divisor com o símbolo da marca */
.divider {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-content: center;
  padding: 0 0 clamp(2rem, 4vw, 3rem);
}
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; max-width: 180px; background: var(--line); }
.divider img { width: 30px; opacity: 0.75; }

/* ---------- Cards de tratamento ---------- */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.treat-card { display: block; position: relative; }
.treat-figure { position: relative; overflow: hidden; }
.treat-figure::before {
  content: "";
  position: absolute;
  inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  border: 1px solid var(--rose);
  z-index: 0;
  transition: inset 0.4s var(--ease);
}
.treat-card:hover .treat-figure::before { inset: 0.5rem -0.5rem -0.5rem 0.5rem; }
.treat-figure img {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92);
  transition: transform 0.6s var(--ease);
}
.treat-card:hover .treat-figure img { transform: scale(1.035); }

.treat-body { padding: 1.7rem 0 0 0.2rem; }
.treat-body h3 { margin-bottom: 0.5rem; }
.treat-body p { font-size: 0.98rem; color: var(--stone); max-width: 34ch; }
.treat-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.9rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.treat-more::after { content: "→"; transition: transform 0.3s var(--ease); }
.treat-card:hover .treat-more::after { transform: translateX(6px); }

/* ---------- Sobre (home) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-figure { position: relative; width: min(420px, 100%); }
.about-figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--rose);
}
.about-figure img { position: relative; }
.about-copy h2 { margin-bottom: 1.4rem; }
.about-copy p + p { margin-top: 1rem; }
.about-sign {
  margin-top: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--rose-deep);
}
.about-copy .btn { margin-top: 2rem; }

/* ---------- Método (sequência numerada) ---------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: passo;
}
.method-step {
  counter-increment: passo;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-light);
  position: relative;
}
.method-step::before {
  content: counter(passo, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  position: absolute;
  top: -0.75rem;
  left: 0;
  background: var(--ink);
  padding-right: 0.9rem;
}
.method-step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.method-step p { font-size: 0.95rem; }

/* ---------- Faixa editorial escura ---------- */
.editorial {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.editorial-figure { position: relative; width: min(400px, 100%); }
.editorial-figure::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid rgba(212, 170, 170, 0.55);
}
.editorial-figure img { position: relative; filter: grayscale(12%); }
.editorial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--porcelain);
}
.editorial cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ---------- Depoimentos ---------- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.quote-card {
  background: var(--porcelain);
  border: 1px solid var(--line);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.quote-card p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.5; color: var(--ink); }
.quote-card footer { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-top: auto; }
.quote-stars { color: var(--rose-deep); font-size: 0.85rem; letter-spacing: 0.3em; }

/* ---------- Consultório strip ---------- */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.clinic-grid img { aspect-ratio: 3/3.8; object-fit: cover; width: 100%; filter: saturate(0.92); }
.clinic-grid figure:nth-child(2) { transform: translateY(2.2rem); }

/* ---------- CTA final ---------- */
.cta-band { text-align: center; }
.cta-band .wrap { max-width: 760px; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band p { margin-bottom: 2.4rem; }
.cta-band img.cta-mark { width: 54px; margin: 0 auto 1.8rem; opacity: 0.9; }

/* ---------- Contato / mapa ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-list { display: grid; gap: 1.6rem; margin-top: 2.2rem; }
.contact-item { padding-left: 1.6rem; border-left: 1px solid var(--rose); }
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.35rem;
}
.contact-item a:hover { color: var(--rose-deep); }
.map-frame { position: relative; }
.map-frame::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid var(--rose);
}
.map-frame iframe { position: relative; width: 100%; height: 430px; border: 0; display: block; filter: grayscale(35%); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(250, 247, 244, 0.6); padding: 4.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.95rem; max-width: 34ch; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.3rem;
}
.footer ul { display: grid; gap: 0.55rem; }
.footer ul a { font-size: 0.95rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--rose); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--rose); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Página interna (hero editorial escuro) ---------- */
.page-hero {
  position: relative;
  background: var(--ink);
  color: rgba(250, 247, 244, 0.78);
  padding: 9.5rem 0 5rem;
  overflow: hidden;
}
.page-hero h1 { color: var(--porcelain); max-width: 15ch; }
.page-hero .eyebrow { color: var(--rose); }
.page-hero .lead { max-width: 52ch; margin-top: 1.4rem; color: rgba(250, 247, 244, 0.72); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.page-hero-figure { position: relative; width: min(360px, 100%); justify-self: end; }
.page-hero-figure::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid rgba(212, 170, 170, 0.55);
}
.page-hero-figure img { position: relative; filter: grayscale(8%); }
.page-hero .hero-mark { right: -10%; top: -18%; bottom: auto; opacity: 0.06; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2.2rem;
}
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span::before { content: "/"; margin-right: 0.7rem; color: var(--rose-deep); }

.page-hero .hero-actions { margin-top: 2.4rem; }

/* ---------- Conteúdo de serviço ---------- */
.service-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.service-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 2.6rem 0 1rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p + p { margin-top: 1rem; }
.service-content ul { display: grid; gap: 0.85rem; margin: 1.4rem 0; }
.service-content ul li { padding-left: 1.7rem; position: relative; }
.service-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 1px;
  background: var(--rose-deep);
}
.service-aside { position: sticky; top: 6.5rem; display: grid; gap: 1.6rem; }
.aside-card { border: 1px solid var(--line); padding: 2rem 1.8rem; background: #fff; }
.aside-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.aside-card p { font-size: 0.95rem; color: var(--stone); margin-bottom: 1.4rem; }
.aside-card .btn { width: 100%; }
.aside-links { display: grid; gap: 0.1rem; }
.aside-links a {
  padding: 0.75rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s, padding-left 0.3s var(--ease);
}
.aside-links a::after { content: "→"; color: var(--rose-deep); }
.aside-links a:hover { color: var(--rose-deep); padding-left: 0.6rem; }
.aside-links a.current { color: var(--rose-deep); font-weight: 500; }

/* FAQ */
.faq { display: grid; gap: 0; margin-top: 1rem; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 1.5rem; color: var(--rose-deep); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0.2rem 1.4rem; max-width: 68ch; }

/* ---------- Blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.post-card { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -22px rgba(33, 31, 30, 0.28); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.post-card-body time { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); }
.post-card-body h3 { font-size: 1.3rem; }
.post-card-body p { font-size: 0.95rem; color: var(--stone); }
.blog-empty { text-align: center; border: 1px dashed var(--rose); padding: 4rem 2rem; max-width: 620px; margin: 0 auto; }
.blog-empty h3 { margin-bottom: 0.8rem; }

/* ---------- Prosa (posts do blog) ---------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose img { margin: 2rem auto; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 0.8rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin: 1.2rem 0 1.2rem 1.4rem; display: grid; gap: 0.6rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 2px solid var(--rose);
  padding-left: 1.4rem;
  margin: 1.8rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}
.prose strong { font-weight: 500; color: var(--ink); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

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

:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .treat-grid, .quotes-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .service-body { grid-template-columns: 1fr; }
  .service-aside { position: static; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }

  .hero { padding-top: 6.5rem; min-height: auto; }
  .hero-grid, .about-grid, .editorial, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { justify-self: start; width: min(360px, 88%); margin-top: 1rem; }
  .about-figure { order: -1; }
  .page-hero { padding: 7.5rem 0 4rem; }
  .page-hero-figure { justify-self: start; width: min(320px, 85%); }
  .clinic-grid figure:nth-child(2) { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .treat-grid, .quotes-grid, .posts-grid, .method-grid, .clinic-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-portrait::before, .about-figure::before, .treat-figure::before,
  .editorial-figure::before, .map-frame::before, .page-hero-figure::before {
    inset: 0.9rem -0.9rem -0.9rem 0.9rem;
  }
  .map-frame iframe { height: 340px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
