/* =========================================================
   ÉDIA TORRES · Psicóloga — Sistema de Design v2
   Identidade "Calma Sofisticada": evergreen + terracota + osso
   Mobile-first · motion-ready (Lenis + GSAP + three.js)
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Neutros quentes */
  --bone:      #F7F3EC;   /* fundo principal */
  --bone-2:    #F1EADD;   /* fundo alternado */
  --linen:     #E8DECE;   /* superfícies quentes */
  --surface:   #FFFFFF;

  /* Marca */
  --evergreen:   #163F39;  /* verde profundo (texto/seções escuras) */
  --evergreen-2: #1F564E;  /* variação */
  --sage:        #8FA89B;  /* sálvia/eucalipto */
  --sage-soft:   #C4D2C8;

  /* Acentos quentes (CTA) */
  --clay:    #C06A4C;   /* terracota — COR PRINCIPAL DE CTA */
  --clay-2:  #A9583E;   /* hover */
  --clay-soft:#E7B49E;
  --ochre:   #C9A368;   /* dourado/ocre — detalhes finos */

  /* Texto */
  --ink:      #1C2723;
  --ink-soft: #5A655F;
  --ink-mute: #8A938D;
  --line:     rgba(28,39,35,0.12);
  --line-2:   rgba(28,39,35,0.20);

  /* Tipografia */
  --display: "Fraunces", Georgia, serif;
  --body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Medidas */
  --maxw: 1240px;
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow: 0 18px 50px -20px rgba(22, 63, 57, 0.35);
  --shadow-soft: 0 10px 30px -16px rgba(22, 63, 57, 0.25);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--clay); color: #fff; }

/* ---------- 3. Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--evergreen);
}
h1 { font-size: clamp(2.6rem, 9vw, 5.4rem); }
h2 { font-size: clamp(2rem, 6vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 500; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--clay); display: inline-block; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--ochre); }
.eyebrow--light::before { background: var(--ochre); }

.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; max-width: 56ch; }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 12vw, 150px) 0; position: relative; }
.bg-2 { background: var(--bone-2); }
.bg-linen { background: var(--linen); }
.bg-evergreen { background: var(--evergreen); color: #E7EDE9; }
.bg-evergreen h1, .bg-evergreen h2, .bg-evergreen h3 { color: #FBF7EF; }
.center { text-align: center; }
.center .lead, .lead.mx { margin-left: auto; margin-right: auto; }
.maxw-head { max-width: 720px; }
.center .maxw-head { margin: 0 auto; }

/* ---------- 5. Botões ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 17px 30px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; will-change: transform;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--clay); color: #fff; box-shadow: 0 10px 24px -12px rgba(192,106,76,0.9); }
.btn--primary:hover { background: var(--clay-2); }
.btn--dark { background: var(--evergreen); color: #FBF7EF; }
.btn--dark:hover { background: var(--evergreen-2); }
.btn--ghost { background: transparent; color: var(--evergreen); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--evergreen); background: rgba(22,63,57,0.04); }
.btn--light { background: #FBF7EF; color: var(--evergreen); }
.btn--light:hover { background: #fff; }
.btn--lg { padding: 19px 36px; font-size: 1.05rem; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* link sublinhado animado */
.link-u { position: relative; color: var(--evergreen); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.link-u::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%; background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.link-u:hover::after { transform: scaleX(1); }

/* ---------- 6. Cursor personalizado (desktop) ---------- */

/* ---------- 7. Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform .5s var(--ease), background .4s, backdrop-filter .4s, box-shadow .4s;
}
.site-header.hide { transform: translateY(-105%); }
.site-header.solid { background: rgba(247,243,236,0.82); backdrop-filter: saturate(180%) blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 42px; height: 42px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-weight: 500; font-size: 1.2rem; color: var(--evergreen); letter-spacing: -0.01em; }
.brand__role { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.nav__links { display: none; gap: clamp(18px, 2.4vw, 30px); white-space: nowrap; }
.nav__links a { font-weight: 500; font-size: 0.93rem; color: var(--ink-soft); position: relative; transition: color .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 100%; background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__links a:hover { color: var(--evergreen); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { display: none; }
.nav__burger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; background: none; border: 0; cursor: pointer; padding: 13px; min-width: 44px; min-height: 44px; }
.nav__burger span { width: 26px; height: 2px; background: var(--evergreen); border-radius: 2px; transition: .35s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--evergreen); color: #FBF7EF; padding: 110px 28px 40px; transform: translateY(-100%); transition: transform .6s var(--ease); display: flex; flex-direction: column; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; font-family: var(--display); font-size: 2rem; color: #FBF7EF; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { animation: menuIn .6s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.1s}.mobile-menu.open a:nth-child(2){animation-delay:.16s}.mobile-menu.open a:nth-child(3){animation-delay:.22s}.mobile-menu.open a:nth-child(4){animation-delay:.28s}.mobile-menu.open a:nth-child(5){animation-delay:.34s}
.mobile-menu .btn { margin-top: 30px; justify-content: center; opacity: 0; transform: translateY(20px); white-space: normal; text-align: center; width: 100%; }
.mobile-menu.open .btn { animation: menuIn .6s var(--ease) .4s forwards; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

/* ---------- 8. Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; padding: 120px 0 104px; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  background:
    radial-gradient(80% 70% at 78% 18%, rgba(192,106,76,0.30) 0%, rgba(192,106,76,0) 55%),
    radial-gradient(70% 80% at 20% 75%, rgba(143,168,155,0.45) 0%, rgba(143,168,155,0) 60%),
    radial-gradient(100% 90% at 50% 10%, rgba(22,63,57,0.10) 0%, rgba(22,63,57,0) 60%),
    var(--bone);
}
.hero__veil { position: absolute; inset: 0; z-index: 1; background:
   radial-gradient(120% 90% at 15% 20%, rgba(247,243,236,0.0) 0%, rgba(247,243,236,0.55) 60%, rgba(247,243,236,0.9) 100%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__tag { margin-bottom: 26px; }
.hero h1 { color: var(--evergreen); }
.hero h1 .ln { display: block; overflow: hidden; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.hero h1 .ln > span { display: block; }
.hero h1 em { color: var(--clay); font-style: italic; }
.hero__sub { margin-top: 28px; max-width: 50ch; }
.hero__cta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); pointer-events: none; }
/* Em janelas baixas, o indicador de rolagem pode colidir com o CTA do hero — some com segurança */
@media (max-height: 760px) { .hero__scroll { display: none; } }
.hero__scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--clay), transparent); position: relative; overflow: hidden; }
.hero__scroll .line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--clay); animation: scrolldown 1.8s var(--ease) infinite; }
@keyframes scrolldown { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- 9. Marquee de especialidades ---------- */
.marquee { background: var(--evergreen); color: #FBF7EF; padding: 22px 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 0; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--display); font-size: 1.5rem; font-style: italic; padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.marquee__track span::after { content: "✦"; color: var(--ochre); font-size: 0.8rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Stats (significativas, sem enchimento) ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--bone); padding: 32px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat b { font-family: var(--display); font-size: clamp(2.2rem, 6vw, 3.2rem); color: var(--clay); display: flex; align-items: center; justify-content: center; line-height: 1.08; min-height: 2.16em; }
.stat > span { font-size: 0.9rem; color: var(--ink-soft); display: block; margin-top: 10px; }

/* ---------- 11. Especialidades (cards) ---------- */
.grid { display: grid; gap: 18px; }
.spec-grid { grid-template-columns: 1fr; }
.spec {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 32px 28px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.spec::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--clay); transform: scaleY(0); transform-origin: top; transition: transform .5s var(--ease); }
.spec:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.spec:hover::before { transform: scaleY(1); }
.spec__ico { width: 52px; height: 52px; margin: 14px 0 18px; color: var(--evergreen); }
.spec__ico svg { width: 100%; height: 100%; }
.spec h3 { margin-bottom: 10px; color: var(--evergreen); }
.spec p { color: var(--ink-soft); font-size: 0.97rem; }
.spec__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 0.95rem; color: var(--clay); }
.spec__link .arrow { transition: transform .35s var(--ease); }
.spec__link:hover { color: var(--clay-2); }
.spec__link:hover .arrow { transform: translateX(4px); }

/* ---------- 11b. Isso soa familiar? ---------- */
.familiar { display: grid; gap: 14px; grid-template-columns: 1fr; }
.familiar__item { display: grid; grid-template-columns: 30px 1fr; gap: 16px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.familiar__item svg { width: 30px; height: 30px; color: var(--clay); margin-top: 3px; }
.familiar__item p { color: var(--ink-soft); font-size: 1rem; }
.familiar__item b { color: var(--evergreen); }
.familiar__fecho { margin-top: 34px; max-width: 58ch; }
.familiar__fecho b { color: var(--evergreen); }
@media (min-width: 700px) { .familiar { grid-template-columns: 1fr 1fr; gap: 18px; } }

/* ---------- 12. Sobre ---------- */
.about__grid { display: grid; gap: 40px; align-items: center; }
.about__text p { font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); max-width: 62ch; margin-top: 14px; }
.about__text p:first-of-type { margin-top: 22px; }
.about__media { position: relative; }
.about__img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.about__chip { position: absolute; left: -10px; bottom: 26px; background: var(--clay); color: #fff; padding: 16px 22px; border-radius: var(--r-sm); box-shadow: var(--shadow-soft); }
.about__chip b { font-family: var(--display); font-size: 1.6rem; display: block; line-height: 1; }
.about__chip span { font-size: 0.75rem; opacity: .9; }
.about__quote { font-family: var(--display); font-style: italic; font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--evergreen); line-height: 1.4; margin: 26px 0; padding-left: 22px; border-left: 2px solid var(--ochre); }
.about__creds { display: grid; gap: 10px; margin: 26px 0; }
.cred { display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); }
.cred svg { width: 19px; height: 19px; color: var(--clay); flex-shrink: 0; }
.about__sign { font-family: var(--display); font-size: 1.5rem; color: var(--clay); }
.about__crp { font-size: 0.85rem; color: var(--ink-mute); margin-top: 2px; }

/* ---------- 12b. Barra de ação fixa (mobile) ---------- */
.barra-acao {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: auto 1fr; gap: 10px;
  padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
  background: rgba(247, 243, 236, 0.92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .3s ease;
}
.barra-acao.visivel { transform: translateY(0); }
.barra-acao .btn { padding: 14px 18px; font-size: 0.95rem; justify-content: center; }
.barra-acao .btn svg { width: 19px; height: 19px; }
@media (min-width: 920px) { .barra-acao { display: none; } }
@media (max-width: 919px) {
  body.com-barra { padding-bottom: 76px; }
  /* Com a barra fixa, o botão flutuante duplicaria o CTA no mobile */
  body.com-barra .wfloat { display: none; }
}

/* ---------- 13. Processo (passos) ---------- */
.process { display: grid; gap: 0; }
.pstep { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.16); align-items: start; }
.pstep:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.pstep__n { font-family: var(--display); font-size: 1.1rem; color: var(--ochre); padding-top: 6px; }
.pstep h3 { color: #FBF7EF; margin-bottom: 6px; }
.pstep p { color: rgba(231,237,233,0.8); font-size: 0.98rem; max-width: 60ch; }

/* ---------- 14. Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gallery figure { overflow: hidden; border-radius: var(--r); }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .9s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:first-child { grid-column: span 2; }
.gallery figure:first-child img { aspect-ratio: 16/10; }

/* ---------- 15. Blog ---------- */
.posts { display: grid; gap: 26px; grid-template-columns: 1fr; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { overflow: hidden; }
.post-card__img { aspect-ratio: 16/11; object-fit: cover; width: 100%; transition: transform .9s var(--ease); }
.post-card:hover .post-card__img { transform: scale(1.05); }
.post-card__body { padding: 24px 26px 28px; }
.post-card__tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); font-weight: 700; }
.post-card h3 { font-size: 1.25rem; margin: 12px 0 10px; color: var(--evergreen); }
.post-card p { color: var(--ink-soft); font-size: 0.95rem; }
.post-card__more { margin-top: 16px; }

/* ---------- 16. FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 26px 4px; display: flex; justify-content: space-between; gap: 18px; align-items: center; font-family: var(--display); font-size: clamp(1.1rem,2.4vw,1.35rem); color: var(--evergreen); }
.faq__icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--clay); border-radius: 2px; transition: transform .4s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--ink-soft); }

/* ---------- 17. CTA final ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-final .wrap { position: relative; z-index: 2; }
.cta-final__bg { position: absolute; inset: 0; z-index: 1; opacity: .16; object-fit: cover; width: 100%; height: 100%; }

/* ---------- 18. Rodapé ---------- */
.footer { background: var(--evergreen); color: #BFCFC8; padding: 80px 0 36px; }
.footer a { color: #BFCFC8; transition: color .25s; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer__big { font-family: var(--display); font-size: clamp(2rem,7vw,3.4rem); color: #FBF7EF; line-height: 1.05; letter-spacing: -0.02em; }
.footer h4 { color: #fff; font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer__row { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 0.96rem; }
.footer__row svg { width: 18px; height: 18px; color: var(--ochre); flex: none; margin-top: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 50px; padding-top: 26px; font-size: 0.82rem; color: #8AA199; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* ---------- 19. WhatsApp flutuante (refinado, sem verde berrante) ---------- */
.wfloat { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: inline-flex; align-items: center; gap: 0; height: 58px; background: var(--evergreen); color: #FBF7EF; border-radius: var(--r-pill); padding: 0 6px; box-shadow: var(--shadow); overflow: hidden; transition: padding .4s var(--ease), background .3s, opacity .3s var(--ease), transform .3s var(--ease); }
.wfloat.wfloat--hidden { opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none; }
.wfloat__ico { width: 46px; height: 46px; display: grid; place-items: center; flex: none; }
.wfloat__ico svg { width: 26px; height: 26px; color: var(--ochre); }
.wfloat__label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 600; font-size: 0.92rem; transition: max-width .45s var(--ease), opacity .35s, padding .45s; }
.wfloat:hover { background: var(--evergreen-2); padding-right: 22px; }
.wfloat:hover .wfloat__label { max-width: 220px; opacity: 1; padding-right: 6px; }

/* ---------- 20. Animação base (GSAP define estados; isto é fallback) ---------- */
.split-line { overflow: hidden; }

/* ---------- 21. Artigo ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article__head { padding: 40px 0 8px; }
.article__meta { font-size: 0.85rem; color: var(--ink-mute); margin-top: 16px; }
.article__cover { border-radius: var(--r); aspect-ratio: 16/9; object-fit: cover; margin: 30px 0; box-shadow: var(--shadow); }
.article__body p { margin-bottom: 1.35rem; font-size: 1.08rem; color: #2a342f; }
.article__body h2 { margin: 2.4rem 0 1rem; font-size: clamp(1.5rem,3.5vw,2rem); }
.article__body ul.bullets { margin: 0 0 1.4rem 1.1rem; list-style: disc; }
.article__body ul.bullets li { margin-bottom: .5rem; }
.article__cta { background: var(--evergreen); color: #E7EDE9; border-radius: var(--r); padding: 36px; text-align: center; margin: 40px 0; }
.article__cta h3 { color: #FBF7EF; }

/* ---------- 22. Mobile (< 860px) ---------- */
@media (max-width: 859px) {
  /* Tipografia: mínimo menor para não vazar em telas estreitas */
  h1 { font-size: clamp(1.85rem, 7.5vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Hero: eliminar espaço vazio — alinhar ao topo, não ao centro */
  .hero { align-items: flex-start; padding: 96px 0 80px; }
  .hero__sub { margin-top: 20px; }
  .hero__cta { margin-top: 28px; }

  /* Botões: tamanho mais apropriado para polegadas */
  .btn--lg { padding: 16px 26px; font-size: 0.97rem; }

  /* Sobre: chip não vaza lateralmente */
  .about__chip { left: 0; }

  /* Stats: padding compacto em mobile */
  .stat { padding: 22px 14px; }
  .stat b { font-size: clamp(1.8rem, 5vw, 2.4rem); }

  /* Especialidades: 2 colunas — evita scroll excessivo com 8 cards */
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .spec { padding: 22px 16px; }
  .spec__ico { width: 40px; height: 40px; margin: 8px 0 12px; }
  .spec h3 { font-size: 1.05rem; }
  .spec p { font-size: 0.9rem; }

  /* Gallery: gaps menores */
  .gallery { gap: 10px; }

  /* Seções: padding vertical reduzido */
  .section { padding: clamp(52px, 10vw, 72px) 0; }

  /* Footer: menos espaço no mobile */
  .footer { padding: 56px 0 28px; }
  .footer__big { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .footer__grid { gap: 32px; }
  .footer__bottom { margin-top: 36px; }

  /* FAQ: área clicável mais generosa */
  .faq__q { padding: 22px 4px; }
}

/* ---------- 23. Desktop ---------- */
@media (min-width: 860px) {
  .hero { align-items: center; }
  .hero__sub { font-size: 1.3rem; }
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery figure:first-child img { aspect-ratio: 1/1; height: 100%; }
  .posts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
}
/* Nav completa exige mais largura que o resto do layout desktop (6 links + CTA):
   troca para o burger só entre 860–1039px evita o menu quebrar linha. */
@media (min-width: 1040px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}
@media (min-width: 1080px) {
  .spec-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- 23. Reduzir movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .marquee__track { animation: none; }
}
