/* =============================================================
   Dra. Claudia Cogo · Geriatria
   Folha de estilo principal
   Identidade oficial: oliva + creme + taupe + dourado
   Mobile-first · Acessível (público idoso) · WCAG AA
   ============================================================= */

/* ---------- Tokens de marca ---------- */
:root {
  /* Paleta oficial (extraída da identidade visual) */
  --olive:        #47462b;   /* verde-oliva escuro — cor principal */
  --olive-deep:   #34331f;   /* oliva mais profundo (rodapé/hover) */
  --olive-soft:   #57562f;   /* oliva para textos sobre creme */
  --sand:         #eaddca;   /* creme/areia — fundos de seção */
  --cream:        #f7f2eb;   /* off-white — fundo base */
  --taupe:        #7f695b;   /* marrom-taupe — apoio/neutro */
  --taupe-soft:   #c3b5a4;   /* taupe claro — bordas/linhas */
  --gold:         #d7be99;   /* dourado — títulos, detalhes */
  --gold-deep:    #8c6239;   /* dourado escuro — para contraste */

  /* Texto */
  --ink:          #2e2d1e;   /* quase-preto quente — corpo */
  --ink-soft:     #5b5943;   /* texto secundário */
  --on-dark:      #f7f2eb;   /* texto sobre oliva */
  --on-dark-soft: #ddd3c2;   /* texto secundário sobre oliva */

  /* WhatsApp */
  --wa:           #25d366;   /* verde WhatsApp (botão flutuante) */
  --wa-solid:     #128a47;   /* verde escuro p/ texto branco (AA) */

  /* Superfícies */
  --surface:      #fffdf8;   /* cartões */
  --shadow:       0 6px 24px rgba(43, 44, 28, 0.10);
  --shadow-lg:    0 18px 48px rgba(43, 44, 28, 0.16);

  /* Tipografia */
  --font-serif: "Noto Serif Display", "Playfair Display", Georgia, serif;
  --font-sans:  "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Métrica */
  --maxw: 1160px;
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 84px;

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

/* ---------- 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: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;          /* 18px base — legibilidade p/ idosos */
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--olive); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--olive);
  margin: 0 0 .5em;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { margin: 0 0 1.1em; }

/* ---------- Utilidades ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--sand { background: var(--sand); }
.section--olive { background: var(--olive); color: var(--on-dark); }
.section--olive h2, .section--olive h3 { color: var(--on-dark); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-inline: auto; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .9rem;
}
.section--olive .eyebrow { color: var(--gold); }
.lead { font-size: 1.22rem; color: var(--ink-soft); }
.section--olive .lead { color: var(--on-dark-soft); }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }

/* Regra decorativa dourada */
.rule { display: inline-block; width: 64px; height: 3px; border: 0; background: linear-gradient(90deg, #fdedc9, #d7be99 45%, #8c6239); border-radius: 3px; margin: 0 0 1.4rem; }
.center .rule, .rule.mx-auto { margin-inline: auto; }

/* Foco visível (acessibilidade / teclado) */
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; border-radius: 4px; }
.section--olive :focus-visible { outline-color: var(--gold); }

/* Link "pular para o conteúdo" */
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--olive); color: var(--on-dark);
  padding: .8rem 1.2rem; border-radius: 0 0 10px 10px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--on-dark); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: 1.075rem; font-weight: 600;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.1;
  min-height: 56px;                 /* alvo de toque generoso */
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 22px; height: 22px; flex: none; }

.btn--primary { background: var(--olive); color: var(--on-dark); box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--olive-deep); color: var(--on-dark); }

.btn--wa { background: var(--wa-solid); color: #fff; box-shadow: var(--shadow); }
.btn--wa:hover { background: #0f7a3e; color: #fff; }

.btn--gold { background: var(--gold); color: var(--olive-deep); box-shadow: var(--shadow); }
.btn--gold:hover { background: var(--gold-deep); color: var(--cream); }

.btn--outline { background: transparent; border-color: var(--gold-deep); color: var(--olive); }
.btn--outline:hover { background: var(--olive); border-color: var(--olive); color: var(--on-dark); }

.section--olive .btn--outline { border-color: var(--gold); color: var(--on-dark); }
.section--olive .btn--outline:hover { background: var(--gold); color: var(--olive-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--taupe-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}

/* Logo oficial (recortado da prancha de identidade) */
.brand__img { height: 52px; width: auto; display: block; }
.site-footer .brand__img { height: 58px; }
@media (max-width: 420px) { .brand__img { height: 44px; } }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--olive); }
.brand:hover { color: var(--olive); }
.brand__mark { width: 44px; height: 44px; color: var(--gold); flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.42rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive);
}
.brand__name b { font-weight: 600; }
.brand__name .pre { color: var(--taupe); font-size: .72em; letter-spacing: .1em; }
.brand__tag {
  font-family: var(--font-sans);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: .35rem;
}

/* Navegação */
.site-header .brand { flex: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border: 2px solid var(--taupe-soft);
  background: transparent; border-radius: 12px; cursor: pointer; color: var(--olive);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-sans);
  font-weight: 600; font-size: 1.02rem;
  color: var(--olive); text-decoration: none;
  display: block;
}
.main-nav a[aria-current="page"] { color: var(--gold-deep); }

/* Mobile nav (padrão) */
.main-nav {
  position: fixed; inset: var(--header-h) 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid var(--taupe-soft);
  box-shadow: var(--shadow);
  transform: translateY(-120%);
  transition: transform .32s var(--ease);
  visibility: hidden;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.main-nav.open { transform: translateY(0); visibility: visible; }
.main-nav ul { padding: .5rem clamp(1.15rem, 4vw, 2.5rem) 1.4rem; }
.main-nav li { border-bottom: 1px solid var(--taupe-soft); }
.main-nav li:last-child { border-bottom: 0; }
.main-nav a { padding: 1.05rem .2rem; min-height: 56px; }
.main-nav .nav-cta { margin-top: 1rem; }
.main-nav .nav-cta .btn { width: 100%; justify-content: center; }
.main-nav .nav-cta { border-bottom: 0; }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 4vw, 2rem); bottom: clamp(1rem, 4vw, 2rem);
  z-index: 90;
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--wa); color: #fff;
  padding: .85rem 1.15rem; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(18, 138, 71, 0.4);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; box-shadow: 0 14px 36px rgba(18, 138, 71, 0.5); }
.wa-float svg { width: 28px; height: 28px; flex: none; }
.wa-float .wa-float__label { display: none; }
@media (min-width: 560px) { .wa-float .wa-float__label { display: inline; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--sand); overflow: hidden; }
.hero__grid {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero__content { max-width: 40rem; }
.hero__tag {
  display: inline-block;
  font-family: var(--font-sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--taupe-soft);
  padding: .45rem 1rem; border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero h1 { color: var(--olive); margin-bottom: .4em; }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero__lead { font-size: 1.28rem; color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 38ch; }
.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 18px; box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; flex-direction: column; gap: .18rem;
  background: rgba(247, 242, 235, 0.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--olive);
  padding: .65rem .95rem .6rem;
  border: 1px solid rgba(140, 98, 57, 0.22);
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 4px 18px rgba(43, 44, 28, 0.10);
}
.hero__badge strong {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.02rem; line-height: 1.15; color: var(--olive);
}
.hero__badge-areas {
  font-family: var(--font-sans); font-size: .6rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold-deep); line-height: 1.4;
}
.hero__badge-crm {
  font-family: var(--font-sans); font-size: .62rem; font-weight: 500;
  letter-spacing: .1em; color: var(--taupe); line-height: 1;
}

/* ---------- Grades e cartões ---------- */
.grid { display: grid; gap: clamp(1.2rem, 3vw, 1.8rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  background: var(--surface);
  border: 1px solid var(--taupe-soft);
  border-radius: 26px 26px 26px 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
}
.card--link:hover, a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
a.card { text-decoration: none; color: inherit; display: block; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sand); color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card__more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--gold-deep); margin-top: .6rem; }

/* Cartão de serviço com "para quem" */
.service__for {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--taupe-soft);
  font-size: .98rem; color: var(--ink-soft);
}
.service__for strong { color: var(--olive); }

/* ---------- Bloco "sobre / mini-bio" ---------- */
.split { display: grid; gap: clamp(1.8rem, 5vw, 3.5rem); align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-figure { margin: 0; }
.about-figure figcaption { margin-top: .8rem; font-size: .95rem; color: var(--ink-soft); font-style: italic; }

/* Lista com marcador dourado */
.check-list { list-style: none; margin: 1.4rem 0; padding: 0; display: grid; gap: .9rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; }
.check-list svg { width: 24px; height: 24px; flex: none; color: var(--gold-deep); margin-top: .15rem; }
.section--olive .check-list svg { color: var(--gold); }

/* ---------- Depoimentos ---------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--taupe-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  height: 100%;
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--font-serif); font-size: 3.4rem; line-height: .6; color: var(--gold); height: 1.6rem; }
.quote__text { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--ink); margin: 0 0 1.2rem; }
.quote__author { margin-top: auto; font-weight: 600; color: var(--olive); }
.quote__author span { display: block; font-weight: 400; font-size: .92rem; color: var(--ink-soft); font-style: normal; }
.quote__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }

/* Carrossel (home) */
.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  gap: 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: .5rem;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: center; }
.carousel__controls { display: flex; gap: .6rem; justify-content: center; margin-top: 1.4rem; }
.carousel__btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--taupe-soft); background: var(--surface);
  color: var(--olive); cursor: pointer;
  display: grid; place-items: center;
}
.carousel__btn:hover { background: var(--olive); color: var(--on-dark); border-color: var(--olive); }
.carousel__btn svg { width: 24px; height: 24px; }

/* ---------- Faixa de estatísticas ---------- */
.stats { display: grid; gap: 1.5rem; grid-template-columns: 1fr; text-align: center; }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--gold); line-height: 1; }
.stat__label { color: var(--on-dark-soft); font-size: 1rem; margin-top: .4rem; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; gap: clamp(1.6rem, 4vw, 2.8rem); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item__icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: var(--sand); color: var(--gold-deep);
  display: grid; place-items: center;
}
.contact-item__icon svg { width: 26px; height: 26px; }
.contact-item h3 { margin: 0 0 .15em; font-size: 1.2rem; }
.contact-item a { color: var(--olive); font-weight: 600; text-decoration: none; word-break: break-word; }
.contact-item a:hover { color: var(--gold-deep); text-decoration: underline; }
.contact-item p { margin: 0; color: var(--ink-soft); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--taupe-soft); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
.map-placeholder {
  display: grid; place-items: center; text-align: center; gap: .6rem;
  min-height: 260px; background: var(--sand); color: var(--ink-soft);
  border-radius: var(--radius); border: 1px dashed var(--taupe);
  padding: 2rem;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--taupe); }

/* ---------- Formulário ---------- */
.form { background: var(--surface); border: 1px solid var(--taupe-soft); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 600; color: var(--olive); margin-bottom: .5rem; font-size: 1.02rem; }
.field .req { color: var(--gold-deep); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1.075rem;
  color: var(--ink); background: var(--cream);
  border: 2px solid var(--taupe-soft); border-radius: var(--radius-sm);
  padding: .85rem 1rem; min-height: 56px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold-deep); outline: none; background: var(--surface); }
.form__hint { font-size: .95rem; color: var(--ink-soft); margin-top: 1rem; }
.form__note { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Aviso / disclaimer ---------- */
.notice {
  background: var(--sand); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
  font-size: 1rem; color: var(--ink-soft);
}
.notice strong { color: var(--olive); }

/* ---------- CTA final ---------- */
.cta-band { text-align: center; }
.cta-band .lead { max-width: 46ch; margin-inline: auto; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--olive-deep); color: var(--on-dark-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.site-footer .brand__name { color: var(--on-dark); }
.site-footer .brand__name .pre { color: var(--on-dark-soft); }
.site-footer .brand__mark { color: var(--gold); }
.site-footer .brand__tag { color: var(--gold); }
.footer-about p { color: var(--on-dark-soft); max-width: 34ch; }
.footer-col h4 { color: var(--on-dark); font-family: var(--font-sans); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer-col a { color: var(--on-dark-soft); text-decoration: none; }
.footer-col a:hover { color: var(--gold); text-decoration: underline; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; color: var(--on-dark-soft); }
.footer-contact svg { width: 20px; height: 20px; flex: none; color: var(--gold); margin-top: .2rem; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.1rem; }
.footer-social a {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(245,241,232,.25); display: grid; place-items: center; color: var(--on-dark);
}
.footer-social a:hover { background: var(--gold); color: var(--olive-deep); border-color: var(--gold); }
.footer-social svg { width: 22px; height: 22px; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(245,241,232,.18);
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between;
  font-size: .9rem; color: var(--on-dark-soft);
}
.footer-disclaimer { font-size: .9rem; color: var(--on-dark-soft); margin-top: 1.4rem; font-style: italic; }

/* ---------- Animação de entrada suave ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =============================================================
   Breakpoints
   ============================================================= */
@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 720px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr; }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .carousel__track { grid-auto-columns: calc((100% - 2.4rem) / 3); }
}

/* ---------- Navegação em desktop ---------- */
@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .main-nav {
    position: static; transform: none; visibility: visible;
    background: transparent; border: 0; box-shadow: none;
    max-height: none; overflow: visible;
  }
  .main-nav ul { display: flex; align-items: center; gap: clamp(.9rem, 1.4vw, 1.5rem); padding: 0; }
  .main-nav a { white-space: nowrap; font-size: .95rem; }
  .main-nav li { border: 0; }
  .main-nav a { padding: .4rem 0; min-height: auto; position: relative; }
  .main-nav li:not(.nav-cta) a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -4px;
    height: 2px; background: var(--gold); transition: right .25s var(--ease);
  }
  .main-nav li:not(.nav-cta) a:hover::after,
  .main-nav li:not(.nav-cta) a[aria-current="page"]::after { right: 0; }
  .main-nav .nav-cta { margin: 0 0 0 .5rem; display: none; }
  .main-nav .nav-cta .btn { width: auto; padding: .65rem 1.1rem; min-height: 44px; }
}
@media (min-width: 1200px) {
  .main-nav .nav-cta { display: block; }
}

/* Impede rolagem do corpo com menu aberto (mobile) */
body.nav-open { overflow: hidden; }
@media (min-width: 1100px) { body.nav-open { overflow: visible; } }

/* ---------- Refinamentos da identidade (manual da marca) ---------- */
/* Palavra de destaque no hero em degradê dourado */
.hero h1 .accent {
  color: var(--gold-deep);
  background: linear-gradient(105deg, #b98e54, #8c6239 55%, #6e4b27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Marca d'água do símbolo — como nas páginas do manual */
.hero { position: relative; }
.hero::before {
  content: ""; position: absolute; pointer-events: none;
  width: min(56vw, 620px); aspect-ratio: 800 / 923;
  right: -8%; top: -12%;
  background: url("../assets/logo/simbolo-oliva.png") center / contain no-repeat;
  opacity: 0.05;
}
.hero .hero__grid { position: relative; z-index: 1; }

.section--olive { position: relative; overflow: hidden; }
.section--olive::before {
  content: ""; position: absolute; pointer-events: none;
  width: min(46vw, 520px); aspect-ratio: 800 / 923;
  left: -7%; bottom: -28%;
  background: url("../assets/logo/simbolo-claro.png") center / contain no-repeat;
  opacity: 0.07;
}
.section--olive .wrap { position: relative; z-index: 1; }

.site-footer { position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; pointer-events: none;
  width: 380px; aspect-ratio: 800 / 923;
  right: -60px; bottom: -140px;
  background: url("../assets/logo/simbolo-claro.png") center / contain no-repeat;
  opacity: 0.05;
}
.site-footer .wrap { position: relative; z-index: 1; }

/* Selo circular da marca */
.selo { width: clamp(84px, 10vw, 112px); height: auto; margin-inline: auto; margin-bottom: 1.3rem; }

/* Quote com o mesmo canto assinatura */
.quote { border-radius: 26px 26px 26px 8px; }

/* Montserrat pede um pouco menos de tracking nos títulos serifados */
h1, h2, h3, h4 { letter-spacing: 0; }

/* ---------- Logo em destaque + universo da marca ---------- */
.hero__simbolo { height: 64px; width: auto; margin-bottom: 1.2rem; }

/* Faixa de marca: logotipo grande como no painel da recepção */
.brand-band { text-align: center; }
.brand-band__logo { width: min(560px, 78vw); height: auto; margin-inline: auto; }
.brand-band__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--gold); max-width: 34ch; margin: 1.8rem auto 0;
}

/* Seção do consultório */
.space__note { font-size: .92rem; color: var(--ink-soft); font-style: italic; margin-top: 1rem; }
.photo-frame { position: relative; border-radius: 26px 26px 26px 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; display: block; }
.photo-duo { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .photo-duo { grid-template-columns: 1.5fr 1fr; align-items: stretch; } }
.photo-duo .photo-frame img { height: 100%; object-fit: cover; }

/* Fotos reais em colunas: recorte 4:5 privilegiando o rosto */
.photo-tall { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 22%; }
.hero__photo { object-position: center 26%; }

/* ---------- Convite sutil (hero sem botões) ---------- */
.hero__convite { margin-top: .4rem; }
.link-suave {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem;
  letter-spacing: .04em;
  color: var(--gold-deep); text-decoration: none;
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(140, 98, 57, 0.4);
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.link-suave::after { content: "→"; font-weight: 400; transition: transform .2s var(--ease); }
.link-suave:hover { color: var(--olive); border-color: var(--olive); }
.link-suave:hover::after { transform: translateX(4px); }

/* ---------- Fotos flutuantes (entrada lateral + respiração contínua) ---------- */
.reveal--left  { transform: translate3d(-44px, 0, 0); }
.reveal--right { transform: translate3d(44px, 0, 0); }

@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.flutua { animation: flutuar 7s ease-in-out infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .flutua { animation: none; } }

/* ---------- AGI — Avaliação Geriátrica Integral ---------- */
.agi-grid { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 720px) { .agi-grid { grid-template-columns: 1fr 1fr; gap: 1.3rem 2.2rem; } }
.agi-item {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  align-items: start;
  padding: 1.1rem 0 1.2rem;
  border-bottom: 1px solid rgba(195, 181, 164, 0.5);
}
.agi-item__num {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.9rem; line-height: 1; color: var(--gold);
  min-width: 2.2rem;
}
.agi-item h3 { font-size: 1.18rem; margin-bottom: .25em; }
.agi-item p { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.section--olive .agi-item { border-color: rgba(247, 242, 235, 0.16); }
.section--olive .agi-item p { color: var(--on-dark-soft); }

/* ---------- Destaque AGI na home ---------- */
.agi-sigla {
  background: linear-gradient(105deg, #fdedc9, #d7be99 55%, #b98e54);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  font-style: italic;
}
.compromissos { display: grid; gap: 1.6rem 2rem; margin-top: 2.6rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .compromissos { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .compromissos { grid-template-columns: repeat(4, 1fr); } }
.compromisso { border-top: 2px solid var(--gold); padding-top: 1rem; }
.compromisso h3 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500;
  color: var(--gold); margin-bottom: .3em;
}
.compromisso p { margin: 0; font-size: .98rem; color: var(--on-dark-soft); }
.agi-fecho {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: var(--gold);
  max-width: 52ch; margin: 2.6rem 0 0;
}
