/* =====================================================
   Dra. Cristiane Gussi — Main Stylesheet
   ===================================================== */

/* ── PALETA DA MARCA ─────────────────────────────────
   Altere APENAS este bloco para trocar as cores do site.
   Todos os componentes derivam destas variáveis.
   ──────────────────────────────────────────────────── */
:root {
  --cream:          #FBF8F1;  /* fundo creme/marfim quente */
  --cream-alt:       #F2ECDD;  /* seção alternada */
  --white:          #FFFFFF;  /* cartões */

  --ink:            #2C2A21;  /* texto principal */
  --ink-soft:       #6E6857;  /* texto suave */
  --line:           #E4DDC8;  /* linhas / bordas */

  --olive:          #6F7F34;  /* verde-oliva primário */
  --olive-dark:     #54611F;  /* verde-oliva escuro — textos/CTAs/links */
  --olive-tint:     #EEF1DF;  /* tint verde clarinho de fundo */

  --gold-gradient:  linear-gradient(90deg, var(--olive-dark), var(--olive));
}

/* ── TOKENS DERIVADOS ────────────────────────────────
   Mapeiam a paleta para nomes usados pelos templates.
   ──────────────────────────────────────────────────── */
:root {
  --brand:          var(--olive);
  --brand-strong:   var(--olive-dark);
  --brand-soft:     var(--olive-tint);
  --brand-softer:   var(--cream-alt);

  --accent:         var(--olive);
  --accent-strong:  var(--olive-dark);
  --accent-ink:     var(--cream);
  --gold-light:     var(--olive);

  --bg:             var(--cream);
  --surface:        var(--cream-alt);
  --surface-2:      var(--olive-tint);

  --bordo-btn:        var(--olive-dark);
  --bordo-btn-strong: #414c18;
  --bordo:            var(--olive-dark);
  --bordo-strong:     #414c18;

  --font-display:   'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:      'Work Sans', system-ui, -apple-system, sans-serif;

  --nav-h:          76px;
  --max-w:          1180px;
  --pad:            clamp(1rem, 5vw, 2rem);
  --section-gap:    clamp(3.5rem, 8vw, 6.5rem);
  --radius:         2px;
  --radius-lg:      2px;
  --radius-xl:      2px;
  --shadow-sm:      0 1px 3px rgba(44, 42, 33, .06);
  --shadow-md:      0 4px 16px rgba(44, 42, 33, .09);
  --shadow-lg:      0 12px 32px rgba(44, 42, 33, .12);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--ink); }

:focus-visible { outline: 3px solid var(--olive); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--olive-dark); color: var(--cream); padding: .6rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius); z-index: 2000;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── LAYOUT UTILITIES ──────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-gap); }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.section--brand { background: var(--brand-soft); }

/* ── SEÇÃO CLARA COM ENFEITE ──────────────────────────
   Fundo claro com semicírculos decorativos discretos nos
   cantos — traço fino, nada saturado.
   ──────────────────────────────────────────────────── */
.section--decor {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.section--decor::before,
.section--decor::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.section--decor::before {
  top: -80px; left: -80px;
  background: var(--brand-soft);
}
.section--decor::after {
  bottom: -80px; right: -80px;
  background: var(--brand-soft);
  opacity: .6;
}
.section--decor > .container { position: relative; z-index: 1; }

@media (min-width: 640px) {
  .section--decor::before,
  .section--decor::after { width: 260px; height: 260px; }
  .section--decor::before { top: -130px; left: -130px; }
  .section--decor::after  { bottom: -130px; right: -130px; }
}

@media (min-width: 1024px) {
  .section--decor::before,
  .section--decor::after { width: 340px; height: 340px; }
  .section--decor::before { top: -170px; left: -170px; }
  .section--decor::after  { bottom: -170px; right: -170px; }
}

.section-header { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.section-header h2 {
  font-size: clamp(1.5rem, 4.5vw, 2.15rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.section-header p {
  margin-top: .9rem;
  color: var(--ink-soft);
  font-size: 1.075rem;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: .85rem;
}
.eyebrow::before { content: ''; width: 1.75rem; height: 2px; background: var(--olive); border-radius: 2px; }
.section-header .eyebrow { justify-content: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: .75rem 1.75rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap; text-align: center; border: 1px solid transparent;
}
.btn-primary { background: var(--olive-dark); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #414c18; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: transparent; color: var(--olive-dark); border-color: var(--olive); }
.btn-secondary:hover { background: var(--olive-dark); color: var(--cream); transform: translateY(-2px); }

.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--olive); color: var(--olive-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; }

/* ── NAV ───────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251, 248, 241, .94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w); margin-inline: auto;
  min-height: var(--nav-h);
  padding-inline: var(--pad);
  display: flex; align-items: center; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; margin-right: auto; }
.nav-logo-img { height: 40px; width: auto; max-height: 40px; max-width: 220px; object-fit: contain; }
@media (max-width: 640px) { .nav-logo-img { height: 32px; max-height: 32px; max-width: 170px; } }

.nav-links { display: none; }
.nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: .92rem;
  color: var(--ink-soft); padding: .4rem .2rem; position: relative;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--olive-dark); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--olive); border-radius: 2px;
}

.nav-cta {
  display: none;
  background: var(--olive-dark); color: var(--cream);
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  padding: .65rem 1.25rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #414c18; transform: translateY(-1px); }

.nav-hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--brand-softer); color: var(--olive-dark);
  font-size: 1.35rem;
}

/* ── MOBILE MENU ───────────────────────────────────── */
.mobile-menu[hidden], .mobile-overlay[hidden] { display: none !important; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(44, 42, 33, .45);
  z-index: 1100; backdrop-filter: blur(2px);
}
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: min(84vw, 340px); background: var(--white);
  padding: 4.5rem 1.75rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: .35rem;
  animation: slideIn .25s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px; border: 0; background: var(--brand-soft);
  border-radius: var(--radius); font-size: 1.15rem; color: var(--olive-dark);
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu a {
  display: block; padding: .95rem .25rem;
  font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; color: var(--ink);
}
.mobile-menu a[aria-current="page"] { color: var(--olive-dark); }
.mobile-menu .btn-primary { margin-top: 1.25rem; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; isolation: isolate;
  padding-block: clamp(3rem, 9vw, 6rem);
  background: var(--olive-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 25%; z-index: 0;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--ink); opacity: .5;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  color: var(--olive-dark); font-weight: 500; font-size: .82rem;
  padding: .4rem .85rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); }
.hero h1 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -.01em;
  color: #fff;
}
.hero h1 .hl { color: #cae0ac; font-style: italic; }
.hero-lead {
  margin-top: 1.25rem; font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: rgba(255,255,255,.85); max-width: 46ch;
}
.hero > .hero-grid > .hero-copy > p:not(.hero-lead) { color: rgba(255,255,255,.85); }
.hero-meta {
  margin-top: 1rem; font-size: .95rem; color: rgba(255,255,255,.85);
  display: flex; flex-wrap: wrap; gap: .4rem 1.25rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-meta span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--olive); }
.hero .btn-row { margin-top: 1.75rem; }

.hero-media {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--olive-dark), #414c18);
  min-height: 300px; box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end; padding: 1.75rem;
  overflow: hidden;
}
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 20%; z-index: 0;
}
.hero-media .hero-card {
  position: relative; z-index: 2; background: rgba(255,255,255,.96);
  border-radius: var(--radius-lg); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); max-width: 260px;
}
.hero-media .hero-card strong { display: block; font-family: var(--font-display); color: var(--ink); }
.hero-media .hero-card span { font-size: .85rem; color: var(--ink-soft); }

/* ── SPLIT (foto + texto) ──────────────────────────── */
.split { display: grid; gap: 2rem; align-items: center; }
.split-photo { margin: 0; position: relative; }
.split-photo img {
  display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  object-position: 50% 0%;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.split .prose { margin-inline: 0; }

/* ── PAGE HERO (páginas internas) ──────────────────── */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding-block: clamp(3rem, 10vw, 5.5rem) clamp(2.5rem, 7vw, 4rem);
  background: var(--olive-dark);
  border-bottom: 1px solid var(--line);
}
.page-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 25%; z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--ink); opacity: .5;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: rgba(255,255,255,.8); }
.page-hero h1 {
  font-size: clamp(1.75rem, 6vw, 2.75rem); font-weight: 600; letter-spacing: -.01em;
  color: #fff;
}
.page-hero .crm { margin-top: .6rem; font-weight: 600; color: #fff; font-size: .95rem; }
.page-hero-lead { margin-top: 1.1rem; font-size: 1.1rem; color: rgba(255,255,255,.85); }

/* ── PROSE (blocos de texto ricos) ─────────────────── */
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }
.prose h3 { font-size: 1.25rem; margin: 2rem 0 .75rem; color: var(--ink); }
.prose ul.check-list { margin-bottom: 1.1rem; }

.pull-quote {
  max-width: 760px; margin: 2.5rem auto; padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--olive);
  background: var(--olive-tint);
  font-family: var(--font-display); font-style: italic; font-size: 1.25rem;
  color: var(--ink); line-height: 1.5;
}

/* ── CARDS / GRID ──────────────────────────────────── */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.card-icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: var(--brand-soft); color: var(--olive-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p  { color: var(--ink-soft); font-size: .975rem; }

/* Lista de checagem (para quem é / preparo) */
.check-list { display: grid; gap: .85rem; }
.check-list li {
  position: relative; padding-left: 2rem; color: var(--ink-soft);
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: .8rem; height: .8rem; border-radius: 50%;
  border: 2px solid var(--olive-dark);
  background: transparent;
}
.check-list li strong { color: var(--ink); }

/* Etapas numeradas */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: var(--olive-dark); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .975rem; }

/* ── AVISO / CALLOUT ───────────────────────────────── */
.callout {
  border-left: 3px solid var(--olive);
  background: var(--olive-tint); border-radius: var(--radius);
  padding: 1.1rem 1.25rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.callout strong { color: var(--olive-dark); }

/* ── LISTA DE CONTEÚDOS (guia) ─────────────────────── */
.content-list { display: grid; gap: 1.25rem; }
.content-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 4px; padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
/* Barra verde-oliva de enfeite no topo do card. */
.content-card::before {
  content: ""; position: absolute; top: 0; left: 1.4rem;
  width: 36px; height: 2px; margin-top: 1.4rem;
  background: var(--olive-dark);
}
.content-card { padding-top: 2.3rem; }
a.content-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--olive); }
.content-card h3 { font-size: 1.08rem; margin-bottom: .35rem; color: var(--olive-dark); }
.content-card p { color: var(--ink-soft); font-size: .95rem; }
.content-empty { color: var(--ink-soft); font-style: italic; }

/* ── CTA BAND ──────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--olive-dark);
  color: var(--cream); border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 3.25rem);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--cream); font-size: clamp(1.5rem, 4.5vw, 2.15rem); }
.cta-band p { color: rgba(251,248,241,.88); margin-top: .75rem; max-width: 52ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.75rem; }
.cta-band .btn-primary { background: var(--cream); color: var(--olive-dark); }
.cta-band .btn-primary:hover { background: var(--white); }
.cta-band .btn-secondary { color: var(--cream); border-color: rgba(251,248,241,.55); }
.cta-band .btn-secondary:hover { background: var(--cream); color: var(--olive-dark); }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer { background: var(--olive-dark); color: rgba(251,248,241,.88); padding-top: clamp(2.5rem, 6vw, 3.5rem); }
.foot-in {
  max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad);
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
.foot-logo { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--cream); }
.foot-byline { color: rgba(251,248,241,.75); font-weight: 500; font-size: .85rem; margin-top: .25rem; }
.foot-desc { margin-top: .75rem; font-size: .95rem; color: rgba(251,248,241,.72); }
.foot-contact { margin-top: 1.1rem; display: grid; gap: .6rem; }
.foot-contact a { display: inline-flex; align-items: center; gap: .55rem; color: rgba(251,248,241,.88); font-size: .95rem; }
.foot-contact a:hover { color: var(--cream); }
.foot-contact svg { color: rgba(251,248,241,.75); flex-shrink: 0; }
.foot-col-title { font-family: var(--font-display); font-weight: 600; color: var(--cream); margin-bottom: .85rem; font-size: .95rem; }
.foot-links { display: grid; gap: .55rem; }
.foot-links a { color: rgba(251,248,241,.72); font-size: .95rem; }
.foot-links a:hover { color: var(--cream); }
.foot-disclaimer {
  max-width: var(--max-w); margin: 2rem auto 0; padding-inline: var(--pad);
}
.foot-disclaimer p {
  border-top: 1px solid rgba(251,248,241,.15); padding-top: 1.25rem;
  font-size: .85rem; color: rgba(251,248,241,.65);
}
.foot-bottom {
  max-width: var(--max-w); margin-inline: auto; padding: 1.25rem var(--pad) 1.75rem;
  display: flex; flex-direction: column; gap: .5rem;
  font-size: .82rem; color: rgba(251,248,241,.65);
}
.foot-made-by a { color: rgba(251,248,241,.9); font-weight: 600; }

/* ── FLOATING WHATSAPP ─────────────────────────────── */
.floating-whatsapp {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s;
}
.floating-whatsapp:hover { transform: scale(1.08); }

/* ── SITE MAIN ─────────────────────────────────────── */
.site-main { display: block; }

/* =====================================================
   RESPONSIVO — mobile-first: a partir daqui, telas maiores
   ===================================================== */
@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .content-list { grid-template-columns: repeat(2, 1fr); }
  .foot-in { grid-template-columns: 1.6fr 1fr 1fr; }
  .foot-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 860px) {
  .nav-links { display: flex; align-items: center; gap: 1.5rem; }
  .nav-cta { display: inline-flex; }
  .nav-hamburger { display: none; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .hero-media { min-height: 570px; }
  .hero { min-height: 680px; display: flex; align-items: center; }
  .page-hero { min-height: 460px; display: flex; align-items: center; }
  .split { grid-template-columns: .8fr 1.2fr; gap: 3rem; }
  .split--reverse .split-photo { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .mobile-menu, .mobile-overlay { display: none !important; }
}

@media (min-width: 1024px) {
  .content-list { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
}

/* =====================================================
   BLOG — LISTAGEM DE POSTS (Conteúdos)
   ===================================================== */
.post-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.post-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
/* Barra verde-oliva no topo do card (enfeite decorativo). */
.post-card::before {
  content: ''; position: absolute; top: 1.4rem; left: 1.4rem;
  width: 36px; height: 2px; background: var(--olive-dark);
  z-index: 1;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}
.post-card:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; }

.post-card-media { overflow: hidden; background: var(--surface-2); aspect-ratio: 16 / 9; }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-media img { transform: scale(1.04); }

.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 2rem 1.4rem 1.5rem; }

.post-card-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--ink-soft); margin-bottom: .7rem;
}
.post-card-cat {
  font-family: var(--font-body); font-weight: 600;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive-dark);
  background: var(--olive-tint);
  border: 1px solid var(--line);
  border-radius: 999px; padding: .2rem .6rem;
}
.post-card-dot { opacity: .5; }

.post-card h3 {
  font-family: var(--font-display); font-size: 1.12rem; line-height: 1.35;
  color: var(--olive-dark); margin-bottom: .55rem;
}
.post-card p { color: var(--ink-soft); font-size: .95rem; flex: 1; }

.post-card-more {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1.1rem;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  color: var(--olive-dark);
}
.post-card-more span { transition: transform .2s; }
.post-card:hover .post-card-more span { transform: translateX(3px); }

/* =====================================================
   BLOG — POST INDIVIDUAL
   ===================================================== */
.single-inner { max-width: 760px; }

.single-hero {
  padding-block: clamp(2.5rem, 8vw, 4.5rem) clamp(1.5rem, 4vw, 2.25rem);
  background: var(--cream-alt);
  border-bottom: 1px solid var(--line);
}
.single-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.85rem, 5vw, 2.75rem); line-height: 1.2;
  color: var(--olive-dark); margin-top: .75rem;
}
.single-breadcrumb {
  display: flex; flex-wrap: wrap; gap: .45rem;
  font-size: .85rem; color: var(--ink-soft); margin-bottom: 1rem;
}
.single-breadcrumb a:hover { color: var(--olive-dark); }
.single-lead { margin-top: 1rem; font-size: 1.12rem; color: var(--ink-soft); }
.single-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--ink-soft);
}

.single-thumb {
  margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.single-thumb img { width: 100%; }

.single-content {
  padding: 2.5rem 0 1rem;
  font-size: 1.06rem; line-height: 1.75; color: var(--ink);
}
.single-content > * { margin-bottom: 1.35rem; }
.single-content > *:last-child { margin-bottom: 0; }

.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: var(--font-display); font-weight: 600;
  color: var(--olive-dark); line-height: 1.3;
  margin-top: 2.6rem; margin-bottom: .9rem;
}
.single-content h2 { font-size: 1.65rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); }
.single-content h3 { font-size: 1.3rem; }
.single-content h4 { font-size: 1.1rem; }

.single-content a { color: var(--olive-dark); text-decoration: underline; text-underline-offset: 2px; }
.single-content a:hover { color: var(--olive); }
.single-content strong { color: var(--olive-dark); }

.single-content ul,
.single-content ol { padding-left: 1.4rem; }
.single-content ul { list-style: disc; }
.single-content ol { list-style: decimal; }
.single-content li { margin-bottom: .5rem; }
.single-content li::marker { color: var(--olive); }

.single-content blockquote {
  border-left: 3px solid var(--olive);
  background: var(--olive-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.35rem; color: var(--ink-soft); font-style: italic;
}
.single-content blockquote p:last-child { margin-bottom: 0; }

.single-content img,
.single-content figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.single-content figcaption {
  margin-top: .6rem; font-size: .85rem; color: var(--ink-soft); text-align: center;
}

.single-content table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.single-content th,
.single-content td { border: 1px solid var(--line); padding: .6rem .8rem; text-align: left; }
.single-content th { background: var(--surface); color: var(--olive-dark); font-family: var(--font-display); }

.single-content .alignwide { width: min(100%, 980px); margin-inline: auto; }
.single-content .alignfull { width: 100vw; margin-inline: calc(50% - 50vw); }
.single-content .aligncenter { margin-inline: auto; text-align: center; }
.single-content .alignright { float: right; margin: 0 0 1rem 1.5rem; max-width: 45%; }
.single-content .alignleft  { float: left;  margin: 0 1.5rem 1rem 0; max-width: 45%; }

/* Rodapé do post */
.single-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.single-tags a {
  display: inline-block; font-size: .82rem; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: .25rem .7rem;
  transition: border-color .2s, color .2s;
}
.single-tags a:hover { border-color: var(--olive); color: var(--olive-dark); }

.single-disclaimer {
  margin-top: 2rem; padding: 1rem 1.2rem;
  border-left: 3px solid var(--olive);
  background: var(--olive-tint); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .9rem; color: var(--ink-soft);
}

.single-nav { display: grid; gap: 1rem; margin: 2.5rem 0 1rem; }
.single-nav-link {
  display: block; padding: 1rem 1.2rem;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.single-nav-link:hover { border-color: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.single-nav-link span {
  display: block; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--olive-dark); margin-bottom: .25rem;
}
.single-nav-link strong {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--olive-dark);
}
.single-nav-link--next { text-align: right; }

@media (min-width: 620px) {
  .single-nav { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================
   LISTAS EXPANSÍVEIS (details/summary — FAQ)
   Sem JavaScript: funcionam com o navegador e o conteúdo
   fechado continua presente no HTML para os buscadores.
   ===================================================== */
.accordion-wrap { max-width: 820px; margin-inline: auto; }
.accordion { display: grid; gap: .75rem; }

.accordion-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
}
.accordion-item[open] { border-color: var(--olive); box-shadow: var(--shadow-md); }

.accordion-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--olive-dark); cursor: pointer;
  list-style: none;
}
.accordion-q::-webkit-details-marker { display: none; }
.accordion-q::after {
  content: '+'; flex-shrink: 0;
  font-size: 1.45rem; line-height: 1; color: var(--olive);
  transition: transform .2s;
}
.accordion-item[open] .accordion-q::after { transform: rotate(45deg); }
.accordion-q:hover { color: var(--olive); }
.accordion-q:focus-visible { outline: 3px solid var(--olive); outline-offset: -3px; }

.accordion-a { padding: 0 1.2rem 1.2rem; color: var(--ink-soft); }
.accordion-a > * + * { margin-top: .9rem; }
.accordion-a strong { color: var(--ink); }

@media (min-width: 620px) {
  .accordion-q { font-size: 1.05rem; padding: 1.15rem 1.4rem; }
  .accordion-a { padding: 0 1.4rem 1.4rem; }
}

/* ── TABELA DE HORÁRIOS ─────────────────────────────── */
.hours-wrap { max-width: 560px; margin-inline: auto; overflow-x: auto; }
.hours {
  width: 100%; border-collapse: collapse;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hours th, .hours td { padding: .8rem 1rem; text-align: left; font-size: .95rem; }
.hours thead th {
  background: var(--olive-dark); color: var(--cream);
  font-family: var(--font-display); font-weight: 600;
}
.hours tbody tr + tr { border-top: 1px solid var(--line); }
.hours tbody tr.is-closed td { color: var(--ink-soft); font-style: italic; }

/* ── PLACEHOLDER DE MAPA ────────────────────────────── */
.map-card-placeholder {
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
  border: 1px dashed var(--olive);
  background: var(--olive-tint);
}

/* ── FORMULÁRIO DE BUSCA ────────────────────────────── */
.search-form { display: flex; gap: .6rem; }
.search-field {
  flex: 1; min-height: 48px; padding: .6rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--ink); font-family: var(--font-body); font-size: .95rem;
}
.search-field:focus { outline: 2px solid var(--olive); outline-offset: 1px; }
