/* Fontes hospedadas no próprio site (licença SIL OFL) */
@font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/dm-serif-display-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 700; font-display: swap; src: url('../fonts/inter-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ==========================================================================
   Marcus Pereira | Psicólogo Clínico — site v3
   Paleta derivada da logo: azul-marinho, verde-sálvia e dourado
   ========================================================================== */

:root {
  --navy: #152d4e;
  --slate: #152d4e;            /* alias usado pelo blog */
  --slate-soft: #46566b;
  --green: #2b6b5a;
  --teal: #2b6b5a;             /* alias usado pelo blog */
  --teal-dark: #1f5142;
  --teal-light: #e5efe8;
  --sage: #86b08e;
  --sage-soft: #eef4ef;
  --cream: #f7f4ee;
  --white: #ffffff;
  --gold: #b8963f;
  --gold-light: #f5edd8;
  --border: #e6dfd0;

  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(21, 45, 78, 0.06);
  --shadow: 0 12px 36px rgba(21, 45, 78, 0.09);
  --shadow-lg: 0 28px 64px rgba(21, 45, 78, 0.17);
  --container: 1180px;
  --header-h: 66px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id], .hero { scroll-margin-top: calc(var(--header-h) - 40px); }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--navy); line-height: 1.14; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.35rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--slate-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); }
.section-head.center .eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--gold); }

.placeholder { background: var(--gold-light); border: 1px dashed var(--gold); color: var(--navy); font-size: 0.85rem; padding: 3px 10px; border-radius: 6px; font-weight: 600; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; font-family: var(--font-body);
  cursor: pointer; border: 2px solid transparent; line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 8px 22px rgba(43, 107, 90, 0.32); }
.btn-primary:hover { transform: translateY(-2px); background: var(--teal-dark); box-shadow: 0 14px 30px rgba(43, 107, 90, 0.38); }
.btn-outline { background: transparent; border-color: rgba(21, 45, 78, 0.35); color: var(--navy); }
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 36px; font-size: 1.04rem; }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 6px 24px rgba(21, 45, 78, 0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 54px; height: 50px; object-fit: contain; }
.brand-text { font-family: var(--font-display); line-height: 1.1; font-size: 1.4rem; color: var(--navy); }
.brand-text small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--green); font-weight: 700; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.93rem; font-weight: 500; color: var(--navy); position: relative; padding: 6px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 10px 22px; font-size: 0.9rem; }
.header-cta .short { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 12px 24px 26px; gap: 0;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform 0.3s ease; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 15px 0; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta .long { display: none; }
  .header-cta .short { display: inline; }
}
.brand-text small.crp { font-size: 0.56rem; letter-spacing: 0.16em; color: var(--slate-soft); font-weight: 600; margin-top: 2px; }
@media (max-width: 420px) { .brand-mark { width: 50px; height: 47px; } .brand-text { font-size: 1.18rem; } .brand-text small { font-size: 0.54rem; } .brand-text small.crp { font-size: 0.5rem; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 44px 0 64px; overflow: hidden; background:
  radial-gradient(900px 520px at 88% 8%, rgba(134, 176, 142, 0.26), transparent 60%),
  radial-gradient(700px 420px at 0% 100%, rgba(184, 150, 63, 0.14), transparent 60%),
  var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 72px; align-items: center; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .subhead { font-size: 1.12rem; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.hero-copy .lead { font-size: 1.12rem; margin-bottom: 34px; max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 0.86rem; color: var(--slate-soft); margin-top: 26px; }
.hero-note svg { width: 18px; height: 18px; stroke: var(--green); flex-shrink: 0; }

.hero-visual { position: relative; isolation: isolate; max-width: 470px; margin-left: auto; width: 100%; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--sage-soft); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.hero-visual::before { content: ''; position: absolute; inset: 20px -20px -20px 20px; background: var(--gold-light); border-radius: 24px; z-index: -1; }
.hero-badge {
  position: absolute; bottom: 26px; left: -34px;
  background: var(--white); border-radius: 16px; padding: 14px 20px 14px 16px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg);
}
.hero-badge .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.hero-badge .ico svg { width: 22px; height: 22px; stroke: var(--green); }
.hero-badge strong { font-size: 0.9rem; color: var(--navy); display: block; line-height: 1.3; }
.hero-badge span { font-size: 0.78rem; color: var(--slate-soft); }

@media (max-width: 980px) {
  .hero { padding: 28px 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { max-width: 560px; margin: 0; }
  .hero-visual::before { display: none; }
  .hero-photo { aspect-ratio: 4/3.4; border-radius: 20px; }
  .hero-photo img { object-position: 50% 18%; }
  .hero-badge { left: 14px; right: 14px; bottom: 14px; }
}
@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .hero-badge { padding: 12px 16px 12px 12px; }
}

/* ---------- Faixa de confiança ---------- */
.trust { background: var(--navy); padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 26px 22px; color: rgba(255,255,255,0.9); border-right: 1px solid rgba(255,255,255,0.1); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--gold); flex-shrink: 0; }
.trust-item strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.62); }
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 16px; }
  .trust-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 520px) { .trust-item { flex-direction: column; align-items: flex-start; gap: 8px; } }

/* ---------- Seções ---------- */
section { padding: 76px 0; }
.section-head { max-width: 660px; margin-bottom: 40px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p.sub { font-size: 1.06rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-white { background: var(--white); }
.bg-sage { background: var(--sage-soft); }
.bg-navy { background: var(--navy); }
@media (max-width: 720px) { section { padding: 52px 0; } .section-head { margin-bottom: 30px; } }

/* ---------- Grade e cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; } }
@media (max-width: 680px) { .grid-3, .grid-2 { grid-template-columns: 1fr; grid-auto-rows: auto; } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 54px; height: 54px; border-radius: 15px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.card-icon svg { width: 26px; height: 26px; stroke: var(--green); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.card.gold .card-icon { background: var(--gold-light); }
.card.gold .card-icon svg { stroke: var(--gold); }
.card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.card p { font-size: 0.97rem; }
.card-link { margin-top: auto; padding-top: 18px; font-size: 0.88rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: '→'; transition: transform 0.2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }
.card-link::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius); }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 80px; align-items: center; }
@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
.portrait { position: relative; isolation: isolate; max-width: 440px; }
.portrait-frame { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0%; }
.portrait::before { content: ''; position: absolute; inset: -18px 18px 18px -18px; background: var(--gold-light); border-radius: var(--radius); z-index: -1; }
.about-copy p { margin-bottom: 16px; }
.about-copy h2 { margin-bottom: 22px; }
.about-copy p strong { color: var(--navy); font-weight: 600; }
.creds { display: grid; gap: 12px; margin: 28px 0 26px; }
.cred { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--cream); border: 1px solid var(--border); }
.cred svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.cred strong { display: block; font-size: 0.95rem; color: var(--navy); line-height: 1.35; }
.cred span { font-size: 0.85rem; color: var(--slate-soft); }
.credential-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-light); color: var(--navy); font-size: 0.82rem; font-weight: 700; padding: 9px 18px; border-radius: 999px; }

/* ---------- Abordagens ---------- */
.approach { background: var(--navy); position: relative; overflow: hidden; }
.approach::before { content: ''; position: absolute; width: 620px; height: 620px; right: -220px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(134,176,142,0.22), transparent 68%); }
.approach .section-head h2 { color: var(--white); }
.approach .section-head p, .approach .section-head .sub { color: rgba(255,255,255,0.72); }
.approach .eyebrow { color: var(--gold); }
.approach-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.approach-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 38px 34px; }
.approach-card .tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.approach-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.approach-card p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.approach-card ul { margin-top: 18px; display: grid; gap: 10px; }
.approach-card li { color: rgba(255,255,255,0.86); font-size: 0.95rem; padding-left: 28px; position: relative; }
.approach-card li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 14px; height: 8px; border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg) translateY(-4px); }
@media (max-width: 820px) { .approach-grid { grid-template-columns: 1fr; } .approach-card { padding: 30px 24px; } }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; position: relative; }
.step { position: relative; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 30px 32px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 20px; }
.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { font-size: 0.97rem; }
.steps-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 46px; text-align: center; }
.steps-cta small { color: var(--slate-soft); font-size: 0.86rem; }
@media (min-width: 981px) {
  .step:not(:last-child)::after { content: ''; position: absolute; top: 59px; right: -29px; width: 30px; border-top: 2px dashed var(--gold); }
}
@media (max-width: 980px) { .steps { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; align-items: start; }
.faq-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 30px); }
.faq-aside { margin-top: 26px; padding: 22px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.faq-aside p { font-size: 0.95rem; margin-bottom: 14px; }
@media (max-width: 980px) { .faq-layout { grid-template-columns: 1fr; gap: 36px; } .faq-layout .section-head { position: static; } }

.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); line-height: 1.3;
}
.faq-q:hover { color: var(--green); }
.faq-q .icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding-bottom: 24px; font-size: 1rem; max-width: 720px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Contato ---------- */
.contact-section { background: var(--navy); color: var(--white); border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1.05fr 0.95fr; box-shadow: var(--shadow-lg); }
@media (max-width: 980px) { .contact-section { grid-template-columns: 1fr; } }
.contact-info { padding: 60px 52px; position: relative; }
.contact-info .eyebrow { color: var(--gold); }
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.74); margin-bottom: 30px; max-width: 460px; }
.contact-info .btn { margin-bottom: 34px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-detail .card-icon { width: 44px; height: 44px; margin: 0; border-radius: 12px; background: rgba(255,255,255,0.08); }
.contact-detail .card-icon svg { width: 21px; height: 21px; stroke: var(--gold); }
.contact-detail strong { display: block; font-size: 0.74rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.4; }
.contact-detail a, .contact-detail span.value { font-size: 1.02rem; font-weight: 500; color: var(--white); }
.contact-detail a:hover { color: var(--gold); }
.contact-form { background: var(--white); padding: 60px 48px; color: var(--navy); }
.contact-form h3 { margin-bottom: 6px; font-size: 1.5rem; }
.contact-form .hint { font-size: 0.9rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--navy); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); box-shadow: 0 0 0 4px rgba(43, 107, 90, 0.12); }
.form-note { font-size: 0.8rem; margin-top: 14px; text-align: center; }
@media (max-width: 720px) { .contact-info, .contact-form { padding: 40px 26px; } .contact-section { border-radius: 22px; } }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .brand-text { color: var(--white); }
.footer-brand .brand-text small { color: var(--gold); }
.footer-brand .brand-mark { background: var(--white); border-radius: 50%; padding: 5px; }
.footer-grid h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid a { font-size: 0.92rem; color: rgba(255,255,255,0.68); transition: color 0.2s; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid li { font-size: 0.92rem; color: rgba(255,255,255,0.68); }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.9rem; margin-top: 16px; max-width: 320px; }
.footer-crisis { margin-top: 30px; padding: 16px 20px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.footer-crisis a { color: #ecd28f; font-weight: 600; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 0.82rem; color: rgba(255,255,255,0.55); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.75); text-decoration: underline; }

/* ---------- Utilitários ---------- */
.text-center { text-align: center; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white); padding: 12px 20px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22); z-index: 90; transition: transform 0.2s ease, box-shadow 0.2s ease; color: var(--white);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

/* Revelar ao rolar (só quando há JavaScript) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: 0.08s; } .js .reveal.d2 { transition-delay: 0.16s; } .js .reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Blog ---------- */
.post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/8; background: linear-gradient(135deg, var(--teal-light), var(--gold-light)); display: flex; align-items: center; justify-content: center; }
.post-thumb svg { width: 44px; height: 44px; stroke: var(--slate); opacity: 0.5; }
.post-body { padding: 22px; }
.post-tag { font-size: 0.74rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; }
.post-body h3 { margin: 10px 0 8px; font-size: 1.08rem; }
.post-body p { font-size: 0.92rem; }
.post-meta { margin-top: 14px; font-size: 0.8rem; color: var(--slate-soft); }
article.post-content { max-width: 720px; margin: 0 auto; }
article.post-content h2 { margin-top: 38px; margin-bottom: 14px; }
article.post-content p { margin-bottom: 18px; font-size: 1.02rem; }
article.post-content ul { margin: 0 0 18px 20px; list-style: disc; color: var(--slate-soft); }
article.post-content ul li { margin-bottom: 8px; }
.disclaimer-box { background: var(--gold-light); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 18px 22px; font-size: 0.9rem; color: var(--slate); margin: 26px 0; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--slate); color: var(--white); padding: 12px 20px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); z-index: 90; transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ---------- Sticky sub-nav CTA strip ---------- */
.sticky-cta-strip {
  background: var(--teal); color: var(--white); text-align: center; padding: 10px 16px; font-size: 0.86rem;
}
.sticky-cta-strip a { text-decoration: underline; font-weight: 600; }

/* ---------- Blog (gerado pelo editor) ---------- */
.post-hero h1 { max-width: 820px; }
.post-hero .eyebrow a { text-decoration: underline; }
.post-desc { max-width: 720px; margin-top: 14px; font-size: 1.1rem; color: var(--slate-soft); }
.post-featured { display: block; width: 100%; max-width: 800px; height: auto; border-radius: 12px; margin: 2rem auto; }
.post-thumb { overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
article.post-content h3 { margin-top: 26px; margin-bottom: 10px; }
article.post-content ol { margin: 0 0 18px 22px; list-style: decimal; color: var(--slate-soft); }
article.post-content ol li { margin-bottom: 8px; }
article.post-content a { color: var(--teal-dark); text-decoration: underline; }
article.post-content figure { margin: 26px 0; }
article.post-content img { border-radius: 12px; }
article.post-content blockquote { border-left: 4px solid var(--gold); background: var(--gold-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 14px 20px; margin: 22px 0; }
article.post-content blockquote p { margin: 0; }
article.post-content hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }
.faq-item.open .faq-a { max-height: 600px; }

article.post-content ol.refs { font-size: 0.88rem; margin-top: 8px; }
article.post-content ol.refs li { margin-bottom: 10px; line-height: 1.55; word-break: break-word; }
article.post-content sup { font-size: 0.7em; color: var(--green); font-weight: 600; }

/* ---------- Carrossel do Instagram ---------- */
.ig-carousel { position: relative; }
.ig-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 14px; scrollbar-width: none; }
.ig-track::-webkit-scrollbar { display: none; }
.ig-card { position: relative; flex: 0 0 min(250px, 64vw); aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; box-shadow: var(--shadow-sm); background: var(--sage-soft); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.ig-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ig-card img { width: 100%; height: 100%; object-fit: cover; }
.ig-badge { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; color: var(--navy); }
.ig-badge svg, .btn svg { width: 18px; height: 18px; }
.ig-nav { position: absolute; top: 50%; transform: translateY(-60%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--white); color: var(--navy); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow); display: none; }
.ig-nav.prev { left: -14px; } .ig-nav.next { right: -14px; }
.ig-nav:hover { background: var(--navy); color: var(--white); }
@media (min-width: 720px) { .ig-nav { display: block; } }

/* ---------- Vídeos (Como funciona) ---------- */
.videos { margin-top: 56px; }
.videos-head { text-align: center; margin-bottom: 26px; }
.videos-head h3 { font-size: 1.5rem; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.video-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.video-card video { display: block; width: 100%; aspect-ratio: 16/9; background: var(--navy); object-fit: cover; }
.video-card figcaption { padding: 18px 22px 22px; }
.video-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; line-height: 1.25; }
.video-card p { font-size: 0.9rem; }
@media (max-width: 820px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- Bloco do autor (artigos) ---------- */
.author-box { display: flex; gap: 18px; align-items: center; margin: 34px 0 6px; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.author-box img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box p { margin: 0; font-size: 0.92rem; }
.author-box strong { color: var(--navy); }
.author-box .rev { display: block; margin-top: 4px; font-size: 0.8rem; color: var(--slate-soft); }

article.post-content a.btn { text-decoration: none; }
article.post-content a.btn-primary { color: var(--white); }
article.post-content a.btn-outline { color: var(--navy); }
article.post-content a.btn-outline:hover { color: var(--white); }

/* Instagram: seção branca, cartões com borda discreta */
#instagram .ig-card { box-shadow: 0 0 0 1px var(--border), var(--shadow-sm); }
#instagram .ig-track { padding: 10px 8px 18px; }
