/* ============================================================
   Dra. Lara Luiza — Nefrologista | Leblon, RJ
   Sistema de design. Paleta extraída da identidade original:
   oliva #707262 (marca) + creme #F4DDB3 (logo) + grafite #313131
   ============================================================ */

/* ---------- Fontes (self-hosted, variáveis, subset latino) ---------- */
@font-face {
  font-family: 'Lora';
  src: url('/fonts/lora.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('/fonts/raleway.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* superfícies */
  --paper: #FBFAF7;
  --paper-2: #F4F2EC;
  --olive: #707262;
  --olive-deep: #4A4C3F;
  --olive-900: #34362C;
  --olive-950: #24261E;
  --cream: #F4DDB3;
  --cream-soft: #F9EDD4;

  /* texto */
  --ink: #23241E;
  --ink-2: #55574A;
  --on-dark: #F6F4EE;
  --on-dark-2: #CFCCBE;

  /* linhas */
  --line: #DDD9CC;
  --line-dark: #4E5142;

  /* tipografia */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Raleway', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ritmo */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --sec-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 26px;
  --header-h: 76px;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--olive-deep); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--olive-950); }
:focus-visible { outline: 3px solid var(--olive-deep); outline-offset: 3px; border-radius: 4px; }
ul, ol { padding-left: 1.15rem; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.012em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 5.2vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.1vw, 1.45rem); }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1.1em; text-wrap: pretty; }

/* ---------- Utilidades ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--olive-900); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark a:not(.btn) { color: var(--cream); }
.center { text-align: center; }
.center .lede, .center > p { margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: .85rem;
}
.section--dark .kicker, .hero .kicker, .cmp .kicker { color: var(--cream); }
.lede {
  font-size: clamp(1.075rem, 1.7vw, 1.2rem);
  color: var(--ink-2);
  max-width: 62ch;
}
.section--dark .lede, .hero .lede { color: var(--on-dark-2); }
.rule { width: 54px; height: 2px; background: var(--olive); border: 0; margin: 0 0 1.6rem; }
.center .rule, .rule.center { margin-inline: auto; }
.section--dark .rule, .hero .rule { background: var(--cream); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-size: .875rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 1.85rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  min-height: 48px; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--olive-deep); color: #fff; }
.btn--primary:hover { background: var(--olive-950); color: #fff; }
.btn--cream { background: var(--cream); color: var(--olive-950); }
.btn--cream:hover { background: var(--cream-soft); color: var(--olive-950); }
.btn--ghost { border-color: var(--olive-deep); color: var(--olive-deep); background: transparent; }
.btn--ghost:hover { background: var(--olive-deep); color: #fff; }
.section--dark .btn--ghost, .hero .btn--ghost, .cmp .btn--ghost,
.aside-card .btn--ghost { border-color: var(--cream); color: var(--cream); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .cmp .btn--ghost:hover,
.aside-card .btn--ghost:hover { background: var(--cream); color: var(--olive-950); }
.btn--wide { width: 100%; max-width: 420px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.center .btn-row, .btn-row.center { justify-content: center; }
.btn-row.center, .center > .btn-row { margin-top: 2.25rem; }
.hero .btn-row { margin-top: 0; }

/* ---------- Aviso de convênio (repetido, exigência do cliente) ---------- */
.notice-private {
  background: var(--olive-950); color: var(--cream);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-align: center; padding: .8rem var(--gutter);
}

/* ---------- Cabeçalho ---------- */
.skip {
  position: absolute; left: .5rem; top: -100px; z-index: 200;
  background: var(--cream); color: var(--olive-950);
  padding: .7rem 1.1rem; border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skip:focus { top: .5rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--olive-900);
  border-bottom: 1px solid var(--line-dark);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: 49px; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  color: var(--on-dark); text-decoration: none;
  font-size: .855rem; font-weight: 600; letter-spacing: .03em; padding: .35rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--cream); border-bottom-color: var(--cream); }
.header-cta { flex: 0 0 auto; }
.header-cta .btn { padding: .72rem 1.3rem; font-size: .78rem; }
.nav-toggle {
  display: none; background: none; border: 0; padding: .6rem; cursor: pointer;
  color: var(--cream); line-height: 0;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

@media (max-width: 960px) {
  .nav-toggle { display: block; order: 3; }
  /* o botão do cabeçalho sai no mobile: com ele, os três itens não cabem
     na mesma linha e o hambúrguer caía para baixo. O CTA continua sempre
     visível pelo botão flutuante fixo no rodapé da tela. */
  .header-cta { display: none; }
  .nav {
    order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch;
    gap: 0; max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .nav[data-open="true"] { max-height: 520px; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line-dark); font-size: .95rem; }
  .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--line-dark); }
  .site-header__inner { flex-wrap: wrap; padding-bottom: 0; }
  .brand img { width: 158px; height: 41px; }
}

/* ---------- Hero ---------- */
.hero { background: var(--olive-900); color: var(--on-dark); overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(2.75rem, 6vw, 5rem);
}
.hero h1 { color: var(--cream); margin-bottom: .5em; }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.32rem); font-family: var(--serif); color: var(--on-dark); margin-bottom: 1.1rem; }
.hero p { color: var(--on-dark-2); }
/* No DOM a foto vem ANTES do texto: no mobile ela precisa abrir a página,
   e ordem de DOM é mais confiável que `order` para leitor de tela e para
   o caso de o CSS falhar. A inversão abaixo vale só no desktop. */
.hero__media { position: relative; margin: 0; }
@media (min-width: 901px) {
  .hero__media { order: 2; }
  .hero__texto { order: 1; }
}
.hero__media img { width: 100%; border-radius: var(--radius-lg); }
.hero__texto { min-width: 0; }
.hero__lede { color: var(--on-dark-2); }
.hero__badge-legenda {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.hero__badge {
  position: absolute; display: grid; place-items: center;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--cream); color: var(--olive-950);
  border: 4px solid var(--olive-900);
  right: -10px; bottom: 18px;
}
.hero__badge svg { width: 40px; height: 40px; }
.credentials {
  display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 1.6rem; padding: 0; list-style: none;
}
.credentials li {
  font-size: .755rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--line-dark); color: var(--cream);
  padding: .4rem .8rem; border-radius: 999px;
}
/* ---------- Hero no mobile: compacto e na ordem da decisão ----------
   foto → tarja → título → subtítulo → botões → credenciais.
   O objetivo é que o CTA caiba na primeira tela: rolar para achar o
   botão é onde a conversão vaza. A lede desce para depois dos botões. */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 1.75rem 2.25rem;
    text-align: center;
  }
  .hero__media { width: 208px; margin-inline: auto; }
  .hero__media .hero__foto {
    width: 208px; height: 208px; border-radius: 50%;
    object-fit: cover; aspect-ratio: 1;
  }
  .hero__badge {
    width: 64px; height: 64px; right: -4px; bottom: 0; border-width: 3px;
  }
  .hero__badge svg { width: 35px; height: 35px; }

  .hero h1 { font-size: clamp(1.72rem, 7.4vw, 2.2rem); margin-bottom: .35em; }
  .hero__sub { font-size: 1.02rem; margin-bottom: .9rem; }
  .hero .kicker { font-size: .68rem; margin-bottom: .6rem; }

  /* a lede sai da frente do botão e reaparece depois das credenciais */
  .hero__lede {
    order: 6; font-size: .95rem; margin: 1.35rem 0 0;
    padding-top: 1.15rem; border-top: 1px solid var(--line-dark);
  }
  .hero__texto { display: flex; flex-direction: column; }
  .hero__texto .kicker  { order: 1; }
  .hero__texto h1       { order: 2; }
  .hero__texto .hero__sub { order: 3; }
  .hero__texto .btn-row { order: 4; margin-top: .35rem; }
  .hero__texto .credentials { order: 5; }

  .hero .btn-row { flex-direction: column; gap: .6rem; }
  .hero .btn-row .btn { width: 100%; }

  /* credenciais viram uma linha discreta, não seis pílulas */
  .credentials {
    justify-content: center; gap: .4rem 1.15rem; margin: 1.15rem 0 0;
  }
  .credentials li {
    border: 0; padding: 0; font-size: .68rem; letter-spacing: .07em;
    color: var(--on-dark-2); font-weight: 600;
  }

}

/* ---------- Grades ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--olive); transform: translateY(-3px); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--ink-2); font-size: .97rem; margin-bottom: 1.1rem; }
.card p:last-of-type { margin-bottom: 0; }
.card__iconwrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px; border-radius: 18px;
  background: var(--olive-900); margin-bottom: 1.15rem; flex: 0 0 auto;
}
.card__icon { width: 48px; height: 48px; }
.card__link {
  margin-top: auto; padding-top: 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; color: var(--olive-deep);
}
.card__link:hover { text-decoration: underline; }
.card__link::after { content: " \2192"; }

/* sinais / sintomas */
.signals { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
@media (min-width: 700px) { .signals { grid-template-columns: 1fr 1fr; gap: .85rem 1.6rem; } }
.signals li {
  display: flex; gap: .8rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .85rem 1.35rem; font-size: .97rem;
}
.signals li::before {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-top: .55rem;
  border-radius: 50%; background: var(--olive);
}

/* ---------- Conteúdo longo ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.9em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.3em; }
.prose li { margin-bottom: .5em; }
.prose__answer {
  background: var(--paper-2); border-left: 3px solid var(--olive);
  padding: 1.35rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem; margin: 0 0 2rem;
}
.prose__answer p:last-child { margin-bottom: 0; }
.callout {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; background: #fff; margin: 2rem 0;
}
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Layout com barra lateral ---------- */
.with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 980px) { .with-aside { grid-template-columns: 1fr; } }
.aside-card {
  background: var(--olive-900); color: var(--on-dark); border-radius: var(--radius);
  padding: 1.75rem 1.6rem; position: sticky; top: calc(var(--header-h) + 20px);
}
.aside-card h2, .aside-card h3 { color: var(--cream); font-size: 1.25rem; }
.aside-card p { color: var(--on-dark-2); font-size: .95rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.aside-card li { font-size: .93rem; color: var(--on-dark-2); padding: .5rem 0; border-bottom: 1px solid var(--line-dark); }
.aside-card li:last-child { border-bottom: 0; }
.aside-card a:not(.btn) { color: var(--cream); }
.aside-card a:not(.btn):hover { color: var(--cream-soft); }
@media (max-width: 980px) { .aside-card { position: static; } }

/* ---------- Sobre ---------- */
.about__grid { display: grid; grid-template-columns: 400px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; } }
.about__photo img { border-radius: var(--radius-lg); width: 100%; }
.timeline { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.timeline li { position: relative; padding: 0 0 1.35rem 1.75rem; border-left: 2px solid var(--line); }
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: .55rem;
  width: 12px; height: 12px; border-radius: 50%; background: var(--olive); border: 2px solid var(--paper);
}
.timeline time {
  display: block; font-size: .76rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--olive-deep); margin-bottom: .2rem;
}
.timeline p { margin: 0; font-size: .97rem; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; margin-bottom: .85rem;
}
.faq summary {
  cursor: pointer; padding: 1.15rem 3rem 1.15rem 1.4rem; position: relative;
  font-family: var(--serif); font-size: 1.075rem; font-weight: 600; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.4rem; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--olive-deep); border-bottom: 2px solid var(--olive-deep);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .faq__body { padding: 0 1.4rem 1.35rem; }
.faq .faq__body p:last-child { margin-bottom: 0; }
.faq .faq__body p { color: var(--ink-2); }

/* ---------- Avaliações Google ---------- */
.reviews {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem;
  align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}
@media (max-width: 780px) { .reviews { grid-template-columns: 1fr; } }
.reviews p { margin-bottom: 0; color: var(--ink-2); }

/* ---------- Contato ---------- */
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list strong {
  display: block; font-size: .74rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--olive-deep); margin-bottom: .3rem;
}
.contact-list a { color: var(--ink); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours caption { text-align: left; font-weight: 700; padding-bottom: .6rem; }
.hours th, .hours td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { font-weight: 600; }

.map-frame {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: var(--paper-2);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-frame__cover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--paper-2); border: 0; cursor: pointer; font-family: var(--sans);
  color: var(--olive-deep); font-weight: 600; padding: 1.5rem; text-align: center;
}
.map-frame__cover {
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 46px),
                    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 46px);
}
.map-frame__cover .map-pin { width: 46px; height: 46px; color: var(--olive-deep); }
.map-frame__cover em {
  font-style: normal; font-size: .92rem; font-weight: 600;
  color: var(--ink); line-height: 1.5;
}
.map-frame__cover span {
  background: var(--cream); color: var(--olive-950); padding: .85rem 1.5rem;
  border-radius: 999px; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Galeria do consultório ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.gallery img { border-radius: var(--radius); width: 100%; }

/* ---------- Blog (cartões apontando para /blog/) ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.post-card:hover { border-color: var(--olive); }
.post-card img { width: 100%; aspect-ratio: 800 / 475; object-fit: cover; }
.post-card__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.13rem; margin-bottom: .5em; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--olive-deep); text-decoration: underline; }
.post-card p { font-size: .93rem; color: var(--ink-2); }

/* Cartões de fundo claro DENTRO de seção escura: as regras de contexto
   escuro (.section--dark h3 / a) vazavam para dentro do cartão branco e
   produziam creme sobre branco. Reafirmado com especificidade maior. */
.section--dark .card h2, .section--dark .card h3,
.section--dark .post-card h2, .section--dark .post-card h3 { color: var(--ink); }
.section--dark .card h3 a, .section--dark .post-card h3 a { color: var(--ink); }
.section--dark .card h3 a:hover, .section--dark .post-card h3 a:hover { color: var(--olive-deep); }
.section--dark .card p, .section--dark .post-card p { color: var(--ink-2); }
.section--dark .card a.card__link { color: var(--olive-deep); }

/* ---------- Página de agendamento ---------- */
.booking { max-width: 640px; margin-inline: auto; text-align: center; }
.booking__panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 5vw, 2.75rem); text-align: left;
}
.booking__checklist { list-style: none; padding: 0; margin: 0 0 1.9rem; }
.booking__checklist li { display: flex; gap: .85rem; padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: .99rem; }
.booking__checklist li:last-child { border-bottom: 0; }
.booking__checklist li::before { content: "\2713"; color: var(--olive-deep); font-weight: 700; flex: 0 0 auto; }
.booking__legal { font-size: .84rem; color: var(--ink-2); margin: 1.5rem 0 0; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--olive-950); color: var(--on-dark-2); padding-block: clamp(2.75rem, 6vw, 4rem) 0; font-size: .93rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.2rem; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: var(--on-dark-2); text-decoration: none; }
.site-footer a:hover { color: var(--cream); text-decoration: underline; }
.site-footer img { width: 190px; height: 49px; margin-bottom: 1.1rem; }
.site-footer__legal { border-top: 1px solid var(--line-dark); margin-top: 2.5rem; padding-block: 1.6rem 2rem; font-size: .84rem; color: #9C9A8C; }
.site-footer__legal p { margin-bottom: .6rem; }
.site-footer__legal p:last-child { margin-bottom: 0; }

/* ---------- Botão flutuante de WhatsApp ---------- */
.fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--olive-deep); color: #fff; text-decoration: none;
  padding: .9rem 1.35rem; border-radius: 999px; font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 8px 26px rgba(35, 36, 30, .28);
}
.fab:hover { background: var(--olive-950); color: #fff; }
.fab svg { width: 20px; height: 20px; flex: 0 0 auto; }
@media (max-width: 560px) { .fab { left: 1rem; right: 1rem; justify-content: center; } }

/* ---------- Trilha de navegação ---------- */
.crumbs { font-size: .82rem; color: var(--ink-2); padding-top: 1.5rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .45rem; color: var(--line); }
.crumbs a { color: var(--ink-2); }

/* ---------- Banner de consentimento (CMP) ---------- */
.cmp {
  position: fixed; inset: auto 0 0 0; z-index: 1000;
  background: var(--olive-950); color: var(--on-dark);
  border-top: 2px solid var(--cream); padding: 1.4rem var(--gutter);
  font-size: .93rem; max-height: 85vh; overflow-y: auto;
}
@media (max-width: 880px) {
  .cmp { padding: 1.1rem var(--gutter); font-size: .88rem; }
  .cmp h2 { font-size: .95rem; }
  .cmp p { font-size: .84rem; }
  .cmp__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
  .cmp__actions .btn { width: 100%; padding: .8rem .6rem; font-size: .72rem; }
  .cmp__link { grid-column: 1 / -1; text-align: center; }
}
.cmp[hidden] { display: none; }
.cmp__inner { max-width: var(--wrap); margin-inline: auto; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: center; }
@media (max-width: 880px) { .cmp__inner { grid-template-columns: 1fr; } }
.cmp h2 { font-family: var(--sans); font-size: 1rem; color: var(--cream); margin-bottom: .45rem; }
.cmp p { margin: 0; color: var(--on-dark-2); font-size: .89rem; max-width: 68ch; }
.cmp p a { color: var(--cream); }
.cmp__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.cmp__actions .btn { padding: .8rem 1.3rem; font-size: .76rem; }
.cmp__link { background: none; border: 0; color: var(--on-dark-2); font-family: var(--sans); font-size: .8rem; font-weight: 600; text-decoration: underline; cursor: pointer; padding: .8rem .4rem; }
.cmp__link:hover { color: var(--cream); }
.cmp__prefs { margin-top: 1.3rem; border-top: 1px solid var(--line-dark); padding-top: 1.2rem; display: grid; gap: .9rem; }
.cmp__prefs[hidden] { display: none; }
.cmp__row { display: flex; gap: .85rem; align-items: flex-start; }
.cmp__row label { font-weight: 600; color: var(--on-dark); font-size: .9rem; }
.cmp__row p { font-size: .84rem; margin-top: .2rem; }
.cmp__row input { margin-top: .35rem; width: 20px; height: 20px; accent-color: var(--cream); flex: 0 0 auto; }
.cmp-reopen {
  background: none; border: 0; color: inherit; font: inherit;
  text-decoration: underline; cursor: pointer; padding: 0;
}

/* ---------- SplitText: layout à prova de perda de style inline ----------
   O SplitText aplica display:inline-block por atributo style. Se esse style
   for removido (clearProps agressivo) ou bloqueado (CSP style-src estrita em
   produção), os <div> gerados voltam a ser block e o título quebra caractere
   por caractere — foi o que gerou CLS de 0,41 em uma medição. Estas regras
   tornam o layout independente do inline style. */
.anim-word, .anim-char { display: inline-block; }
.anim-line { display: block; }

/* ---------- Avaliações do Google ----------
   O logotipo do Google não é reproduzido: a atribuição é textual.
   Redesenhar marca de terceiro é uso de marca sem licença. */
.stars { display: inline-flex; gap: 1px; color: #E8A33D; }
.stars__i { width: 15px; height: 15px; }

.gv-resumo {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .35rem 1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .85rem 1.6rem; width: fit-content; margin: 2.2rem auto 0;
}
.gv-resumo__nota {
  font-family: var(--serif); font-size: 1.9rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.gv-resumo__bloco { display: flex; flex-direction: column; gap: .15rem; }
.gv-resumo__qtd { font-size: .82rem; color: var(--ink-2); }
.gv-resumo__qtd b { color: var(--ink); font-weight: 700; }
.gv-resumo__link {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive-deep); text-decoration: none;
  border-left: 1px solid var(--line); padding-left: 1rem;
}
.gv-resumo__link:hover { text-decoration: underline; }
@media (max-width: 520px) {
  .gv-resumo { border-radius: var(--radius); padding: 1.1rem 1.2rem; }
  .gv-resumo__link { border-left: 0; padding-left: 0; width: 100%; text-align: center; }
}

.gv-grid {
  display: grid; gap: 1.1rem; margin-top: 1.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 980px) { .gv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .gv-grid { grid-template-columns: 1fr; } }

.gv {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 1.35rem 1.35rem 1.5rem;
  display: flex; flex-direction: column; gap: .95rem;
}
.gv__topo { display: flex; align-items: center; gap: .75rem; }
.gv__avatar {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  font-family: var(--sans); font-size: 1.15rem; font-weight: 600; line-height: 1;
}
.gv__avatar--c0 { background: #1A73E8; }
.gv__avatar--c1 { background: #C5221F; }
.gv__avatar--c2 { background: #0F6B31; }
.gv__avatar--c3 { background: #9A5000; }
.gv__avatar--c4 { background: #7B26C4; }
.gv__avatar--c5 { background: #0B7040; }
.gv__avatar--c6 { background: #A51B18; }
.gv__avatar--c7 { background: #1558B8; }
.gv__avatar--c8 { background: #8A4A00; }
.gv__avatar--c9 { background: #6A1B9A; }
.gv--anonimo .gv__avatar { background: #5A5C50; }
.gv__id { display: flex; flex-direction: column; gap: .18rem; min-width: 0; }
.gv__nome {
  font-family: var(--sans); font-size: .95rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gv__meta { display: flex; align-items: center; gap: .45rem; }
.gv__fonte { font-size: .76rem; color: var(--ink-2); }
.gv__texto { margin: 0; }
.gv__texto p {
  margin: 0; font-size: .96rem; line-height: 1.62; color: var(--ink);
  white-space: pre-line;
}
.section--dark .gv__nome, .section--dark .gv__texto p { color: var(--ink); }
.section--dark .gv__fonte { color: var(--ink-2); }
.review-note {
  margin: 1.7rem auto 0; font-size: .8rem; color: var(--ink-2);
  text-align: center; max-width: 72ch;
}
.section--dark .review-note { color: var(--on-dark-2); }
