/* =====================================================
   Grasiele — Main Stylesheet
   ===================================================== */

/* ── PALETA DA MARCA ─────────────────────────────────
   Altere APENAS este bloco para trocar as cores do site.
   Todos os componentes derivam destas variáveis.
   ──────────────────────────────────────────────────── */
:root {
  --brand:          #0f290e;  /* cor principal (verde profundo) */
  --brand-strong:   #081b06;  /* hover / textos de marca */
  --brand-soft:     #eae5dc;  /* fundos suaves da marca (creme) */
  --brand-softer:   #f5f2ea;

  --accent:         #9d6808;  /* cor de destaque / CTA (dourado) */
  --accent-strong:  #915f0a;
  --accent-ink:     #ffffff;  /* texto sobre o accent */
  --gold-light:     #f3d380;  /* dourado claro para destaques em fundo escuro */
  --gold-gradient:  linear-gradient(90deg, #9d6808, #f3d380, #915f0a);  /* dourado que passa pelas 3 cores */

  --ink:            #1a1712;  /* texto principal */
  --ink-soft:       #8a6540;  /* texto secundário (marrom) */
  --bg:             #ffffff;  /* fundo da página */
  --surface:        #f7f4ee;  /* seções alternadas */
  --surface-2:      #eae5dc;
  --line:           #e2d9c6;  /* bordas / divisórias */
  --white:          #ffffff;
}

/* ── TOKENS DERIVADOS ────────────────────────────────
   Mapeiam a paleta para nomes usados pelos templates.
   ──────────────────────────────────────────────────── */
:root {
  --color-primary:           var(--brand);
  --color-primary-dark:      var(--brand-strong);
  --color-primary-container: var(--accent);
  --color-secondary:         var(--brand);
  --color-bg:                var(--bg);
  --color-surface:           var(--surface);
  --color-surface-low:       var(--surface-2);
  --color-white:             var(--white);
  --color-on-surface:        var(--ink);
  --color-on-surface-var:    var(--ink-soft);
  --color-outline:           var(--ink-soft);
  --color-outline-var:       var(--line);

  --font-display:   'Manrope', sans-serif;
  --font-body:      'Inter', sans-serif;

  --nav-h:          72px;
  --max-w:          1180px;
  --pad:            clamp(1rem, 5vw, 2rem);
  --section-gap:    clamp(3.5rem, 8vw, 6.5rem);
  --radius:         0.5rem;
  --radius-lg:      0.875rem;
  --radius-xl:      1.25rem;
  --shadow-sm:      0 2px 12px rgba(15, 41, 14, .07);
  --shadow-md:      0 8px 30px rgba(15, 41, 14, .12);
  --shadow-lg:      0 20px 50px rgba(15, 41, 14, .16);
}

/* ── 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); line-height: 1.2; color: var(--ink); }

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

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--brand); color: #fff; 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ÇÕES DE COR CHEIA ───────────────────────────────
   Fundos escuros da marca com texto claro.
   --dark  = verde profundo (#0f290e)
   --brown = marrom (#8a6540)
   ──────────────────────────────────────────────────── */
.section--dark  { background: var(--brand); color: #ece7dd; }
.section--brown { background: #8a6540; color: #f4ede1; }

.section--dark  .section-header h2,
.section--brown .section-header h2 { color: #fff; }
.section--dark  .section-header p,
.section--brown .section-header p { color: rgba(255,255,255,.82); }
.section--dark  .eyebrow  { color: var(--gold-light); }
.section--brown .eyebrow  { color: #f3d380; }
.section--dark  .prose,
.section--brown .prose,
.section--dark  .prose p,
.section--brown .prose p { color: rgba(255,255,255,.85); }
.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4,
.section--brown h1, .section--brown h2, .section--brown h3, .section--brown h4 { color: #fff; }

/* Cards e etapas sobre fundo escuro */
.section--dark  .card,
.section--brown .card,
.section--dark  .step,
.section--brown .step {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
.section--dark  .card:hover,
.section--brown .card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-light);
}
.section--dark  .card h3,  .section--brown .card h3,
.section--dark  .step h3,  .section--brown .step h3 { color: #fff; }
.section--dark  .card p,   .section--brown .card p,
.section--dark  .step p,   .section--brown .step p { color: rgba(255,255,255,.8); }
.section--dark  .card-icon,
.section--brown .card-icon {
  background: var(--gold-gradient); color: #2b1c02;
}
.section--dark  .step::before,
.section--brown .step::before {
  background: var(--gold-gradient); color: #2b1c02;
}

/* Listas de checagem sobre fundo escuro */
.section--dark  .check-list li,
.section--brown .check-list li { color: rgba(255,255,255,.85); }
.section--dark  .check-list li strong,
.section--brown .check-list li strong { color: #fff; }
.section--dark  .check-list li::before,
.section--brown .check-list li::before {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--gold-light);
}

.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: 700;
  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-display);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}
.eyebrow::before { content: ''; width: 1.75rem; height: 2px; background: var(--gold-gradient); 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-display);
  font-size: .95rem; font-weight: 700; letter-spacing: .01em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap; text-align: center; border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-strong); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary { background: transparent; color: var(--brand-strong); border-color: var(--brand); }
.btn-secondary:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-strong); }

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

/* ── NAV ───────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(245, 242, 234, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.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: 42px; width: auto; max-height: 42px; max-width: 200px; object-fit: contain; }
@media (max-width: 640px) { .nav-logo-img { height: 34px; max-height: 34px; max-width: 150px; } }
.nav-logo-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.nav-logo-sub  { font-size: .72rem; color: var(--ink-soft); letter-spacing: .02em; }

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

.nav-cta {
  display: none;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 700; 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: var(--accent-strong); 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: #fff; color: var(--ink);
  font-size: 1.35rem;
}

/* CTA fixo no header em mobile (sempre visível ao rolar) */
.nav-inner .nav-cta-mobile { display: none; }

/* ── MOBILE MENU ───────────────────────────────────── */
/* O atributo [hidden] precisa vencer o display: flex/fixed abaixo */
.mobile-menu[hidden], .mobile-overlay[hidden] { display: none !important; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(10, 30, 27, .5);
  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: #fff;
  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(--surface);
  border-radius: var(--radius); font-size: 1.15rem; color: var(--ink);
}
.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-display); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.mobile-menu a[aria-current="page"] { color: var(--brand-strong); }
.mobile-menu .btn-primary { margin-top: 1.25rem; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(3rem, 9vw, 6rem);
  background:
    radial-gradient(1200px 600px at 100% -10%, var(--brand-soft), transparent 60%),
    linear-gradient(180deg, var(--brand-softer), var(--bg));
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line);
  color: var(--brand-strong); font-weight: 600; 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(--accent); }
.hero h1 {
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink);
}
.hero h1 .hl { color: var(--brand); }
.hero-lead {
  margin-top: 1.25rem; font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: var(--ink-soft); max-width: 46ch;
}
.hero-meta {
  margin-top: 1rem; font-size: .95rem; color: var(--ink-soft);
  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(--brand); }
.hero .btn-row { margin-top: 1.75rem; }

.hero-media {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--brand), var(--brand-strong));
  min-height: 300px; box-shadow: var(--shadow-lg);
  display: flex; align-items: flex-end; padding: 1.75rem;
  overflow: hidden;
}
/* object-position ancora o corte perto do topo da foto: o rosto fica no alto
   do arquivo original e o padrão (center) cortaria a cabeça. */
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 10%;
}
.hero-media .hero-card {
  position: relative; background: rgba(255,255,255,.95);
  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); }
/* placeholder quando não há imagem */
.hero-media--placeholder::after {
  content: 'Dra. Grasiele Mattei';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: .04em; padding: 1rem; text-align: center;
}

/* ── 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;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
/* Largura reduzida — o aspect-ratio reduz a altura na mesma proporção. */
.split-photo--sm img { max-width: 70%; margin-inline: auto; }
.split-photo figcaption {
  margin-top: .75rem; font-size: .85rem; color: var(--ink-soft); text-align: center;
}
.split .prose { margin-inline: 0; }

/* ── PAGE HERO (páginas internas) ──────────────────── */
.page-hero {
  padding-block: clamp(2.5rem, 8vw, 4.5rem) clamp(2rem, 6vw, 3rem);
  background:
    radial-gradient(900px 400px at 100% -20%, var(--brand-soft), transparent 60%),
    var(--brand-softer);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 760px; }
.page-hero h1 {
  font-size: clamp(1.75rem, 6vw, 2.75rem); font-weight: 800; letter-spacing: -.015em;
}
.page-hero .crm { margin-top: .6rem; font-weight: 600; color: var(--brand-strong); font-size: .95rem; }
.page-hero-lead { margin-top: 1.1rem; font-size: 1.1rem; color: var(--ink-soft); }

/* ── 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); }

/* ── 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: #fff; 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(--brand-soft); }
.card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand-strong);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.card p  { color: var(--ink-soft); font-size: .975rem; }

/* Bloco de item com título forte + descrição (áreas de atuação, etapas) */
.info-block { padding-block: .25rem; }
.info-block h3 { font-size: 1.15rem; margin-bottom: .4rem; color: var(--ink); }
.info-block p { color: var(--ink-soft); }

/* 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: .35em;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.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: #fff; 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(--brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800;
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); font-size: .975rem; }

/* ── AVISO / CALLOUT ───────────────────────────────── */
.callout {
  border-left: 4px solid var(--accent);
  background: #faf3e0; border-radius: var(--radius);
  padding: 1.1rem 1.25rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.callout strong { color: var(--accent-strong); }

/* ── FAQ ───────────────────────────────────────────── */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: .75rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 1.1rem 1.25rem; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--brand); transition: transform .2s; }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding-inline: 1.25rem; color: var(--ink-soft);
}
.faq-answer.open { max-height: 600px; padding-bottom: 1.15rem; }

/* ── LISTA DE CONTEÚDOS (guia) ─────────────────────── */
.content-list { display: grid; gap: 1rem; }
.content-card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
a.content-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.content-card h3 { font-size: 1.08rem; margin-bottom: .35rem; color: var(--brand-strong); }
.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: linear-gradient(160deg, var(--brand), var(--brand-strong));
  color: #fff; border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 3.25rem);
  text-align: center; box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--gold-gradient);
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 4.5vw, 2.15rem); }
.cta-band p { color: rgba(255,255,255,.9); 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: #fff; color: var(--brand-strong); }
.cta-band .btn-primary:hover { background: var(--brand-softer); }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer { background: #0f290e; color: #d7c7a2; 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: 800; font-size: 1.2rem; color: #fff; }
.foot-byline { color: var(--gold-light); font-weight: 600; font-size: .85rem; margin-top: .25rem; }
.foot-desc { margin-top: .75rem; font-size: .95rem; color: #c3b48f; }
.foot-contact { margin-top: 1.1rem; display: grid; gap: .6rem; }
.foot-contact a { display: inline-flex; align-items: center; gap: .55rem; color: #d7c7a2; font-size: .95rem; }
.foot-contact a:hover { color: #fff; }
.foot-contact svg { color: var(--gold-light); flex-shrink: 0; }
.foot-col-title { font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: .85rem; font-size: .95rem; }
.foot-links { display: grid; gap: .55rem; }
.foot-links a { color: #c3b48f; font-size: .95rem; }
.foot-links a:hover { color: #fff; }
.foot-disclaimer {
  max-width: var(--max-w); margin: 2rem auto 0; padding-inline: var(--pad);
}
.foot-disclaimer p {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.25rem;
  font-size: .85rem; color: #9a8a63;
}
.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: #9a8a63;
}
.foot-made-by a { color: var(--gold-light); 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,.45);
  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: 440px; }
  .split { grid-template-columns: .8fr 1.2fr; gap: 3rem; }
  .split--reverse .split-photo { order: 2; }
  .steps { grid-template-columns: 1fr; }
  /* Menu lateral direito é exclusivo do mobile — nunca no desktop */
  .mobile-menu, .mobile-overlay { display: none !important; }
}

@media (min-width: 1024px) {
  .content-list { grid-template-columns: repeat(2, 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: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
/* Detalhe dourado no topo do card */
.post-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-gradient);
  opacity: .75; transition: opacity .2s;
  z-index: 1;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.post-card:hover::before { opacity: 1; }
.post-card:focus-visible { outline: 2px solid var(--accent); 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: 1.4rem 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-display); font-weight: 600;
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(157, 104, 8, .09);
  border: 1px solid rgba(157, 104, 8, .22);
  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(--brand-strong); 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-display); font-weight: 600; font-size: .9rem;
  color: var(--accent-strong);
}
.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:
    radial-gradient(900px 400px at 100% -20%, var(--brand-soft), transparent 60%),
    var(--brand-softer);
  border-bottom: 1px solid var(--line);
}
.single-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.85rem, 5vw, 2.75rem); line-height: 1.2;
  color: var(--brand-strong); 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(--accent-strong); }
.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%; }

/* Conteúdo do editor: mesma medida e ritmo do editor do WordPress. */
.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: 700;
  color: var(--brand-strong); 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(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.single-content a:hover { color: var(--brand); }
.single-content strong { color: var(--brand-strong); }

.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(--accent); }

.single-content blockquote {
  border-left: 3px solid var(--accent);
  background: var(--brand-softer);
  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 code {
  background: var(--surface-2); border-radius: 4px;
  padding: .12rem .38rem; font-size: .92em;
}
.single-content pre {
  background: var(--brand-strong); color: #f3ede0;
  border-radius: var(--radius-lg); padding: 1.1rem 1.25rem; overflow-x: auto;
}
.single-content pre code { background: none; color: inherit; padding: 0; }

.single-content hr { border: 0; height: 1px; background: var(--line); margin: 2.5rem 0; }

.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(--brand-strong); font-family: var(--font-display); }

/* Alinhamentos do editor */
.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(--accent); color: var(--accent-strong); }

.single-disclaimer {
  margin-top: 2rem; padding: 1rem 1.2rem;
  border-left: 3px solid var(--accent);
  background: var(--brand-softer); 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: #fff; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.single-nav-link:hover { border-color: var(--accent); 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(--accent-strong); margin-bottom: .25rem;
}
.single-nav-link strong {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--brand-strong);
}
.single-nav-link--next { text-align: right; }

/* Botão secundário sobre o fundo escuro do CTA */
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,.55); }
.cta-band .btn-secondary:hover { background: #fff; color: var(--brand-strong); }

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