/* ==========================================================================
   INSTITUTO MAIA — Design System
   Paleta e tipografia herdadas da marca (tokens originais do Elementor).
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Cores da marca (extraídas do site atual) */
  --nude:        #EAD5CD;
  --nude-soft:   #F5E9E4;
  --peach:       #EACCBF;
  --taupe:       #B49083;
  --terracotta:  #A8715D;
  --espresso:    #4A2F26;
  --espresso-dp: #33201A;
  --cream:       #F0EEE4;
  --green:       #1A5F5A;
  --green-soft:  #E3EDEB;

  /* Neutros */
  --ink:    #2E2320;
  --body:   #554944;
  --muted:  #857873;
  --line:   #E6DDD8;
  --white:  #FFFFFF;

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Escala fluida */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-lg:   clamp(1.05rem, 0.98rem + 0.35vw, 1.25rem);
  --fs-xl:   clamp(1.3rem, 1.15rem + 0.7vw, 1.75rem);
  --fs-2xl:  clamp(1.7rem, 1.4rem + 1.4vw, 2.5rem);
  --fs-3xl:  clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  --fs-4xl:  clamp(2.35rem, 1.7rem + 2.6vw, 3.85rem);

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 780px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --sec-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(74, 47, 38, .06);
  --shadow-md: 0 12px 32px rgba(74, 47, 38, .10);
  --shadow-lg: 0 24px 60px rgba(74, 47, 38, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; line-height: 1.12; color: var(--ink); letter-spacing: -0.015em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ---------- 3. Utilitários ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sec-y); }
.section--cream { background: var(--cream); }
.section--nude { background: var(--nude-soft); }
.section--dark { background: var(--espresso); color: rgba(255,255,255,.82); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.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; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .9rem;
}
.section--dark .eyebrow { color: var(--nude); }

.h-sec { font-size: var(--fs-2xl); }
.h-hero { font-size: var(--fs-4xl); }
.lede { font-size: var(--fs-lg); color: var(--body); max-width: 62ch; }
.section--dark .lede { color: rgba(255,255,255,.78); }

.sec-head { max-width: 68ch; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .lede { margin-top: 1rem; }
.sec-head--center .lede { margin-inline: auto; }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .01em;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--espresso); box-shadow: var(--shadow-md); }

.btn--light { background: var(--nude); color: var(--espresso); }
.btn--light:hover { background: var(--white); }

.btn--ghost { border: 1.5px solid currentColor; color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--white); border-color: var(--espresso); }
.section--dark .btn--ghost, .hero .btn--ghost, .cta .btn--ghost { color: var(--nude); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .cta .btn--ghost:hover { background: var(--nude); color: var(--espresso); border-color: var(--nude); }

.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb457; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: var(--fs-sm); color: var(--terracotta);
  transition: gap .25s var(--ease);
}
.link-arrow:hover { gap: .85rem; }
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }

/* ---------- 5. Header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
/* Véu para garantir leitura do menu sobre fotos claras */
.header::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(51, 32, 26, .55), rgba(51, 32, 26, 0));
  transition: opacity .35s var(--ease);
}
.header.is-stuck::before { opacity: 0; }
.header.is-stuck {
  background: rgba(74, 47, 38, .93);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.header__inner {
  display: flex; align-items: center; gap: 2rem;
  height: var(--header-h);
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
}
.header__logo { flex-shrink: 0; }
.header__logo img { height: 46px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: var(--fs-sm); font-weight: 500; color: rgba(255,255,255,.9);
  padding: .5rem 0; position: relative; white-space: nowrap;
  transition: color .2s var(--ease);
}
/* O CTA dentro do menu existe só para o mobile */
.nav__cta { display: none; }
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--white); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: .1rem; height: 1.5px; width: 0;
  background: var(--nude); transition: width .3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__caret { width: 10px; height: 10px; transition: transform .25s var(--ease); }
.nav__item--has-sub[data-open="true"] .nav__caret { transform: rotate(180deg); }

.nav__sub {
  position: absolute; top: calc(100% + .55rem); left: 50%; transform: translate(-50%, -8px);
  min-width: 250px; padding: .6rem;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.nav__item { position: relative; }
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub[data-open="true"] .nav__sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__sub a {
  display: block; padding: .65rem .9rem; border-radius: 9px;
  font-size: var(--fs-sm); color: var(--body); transition: background-color .2s, color .2s;
}
.nav__sub a:hover { background: var(--cream); color: var(--espresso); }

.header__cta { flex-shrink: 0; padding: .75rem 1.5rem; }

.burger { display: none; margin-left: auto; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--white); position: relative; transition: background-color .2s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--white); transition: transform .3s var(--ease); }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero { position: relative; background: var(--espresso); color: var(--white); }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; min-height: min(88vh, 780px); }
.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 6rem)) clamp(1.5rem, 5vw, 5rem) clamp(3.5rem, 7vw, 6rem);
  margin-left: auto; width: 100%; max-width: calc(var(--wrap) / 2);
}
.hero__title { color: var(--white); font-size: var(--fs-4xl); text-wrap: balance; }
.hero__title em { font-style: italic; color: var(--nude); }
.hero__text { margin-top: 1.4rem; font-size: var(--fs-lg); color: rgba(255,255,255,.8); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.hero__media { position: relative; overflow: hidden; background: var(--taupe); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1.3rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  font-size: var(--fs-xs); font-weight: 600; color: var(--espresso); box-shadow: var(--shadow-md);
}
.hero__badge img { height: 26px; width: auto; }

/* ---------- 7. Faixa de credibilidade ---------- */
.trust { background: var(--cream); padding-block: clamp(2rem, 4vw, 3rem); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.trust__n { font-family: var(--font-display); font-size: var(--fs-2xl); color: var(--terracotta); line-height: 1; }
.trust__l { margin-top: .5rem; font-size: var(--fs-sm); color: var(--muted); }

/* ---------- 8. Cards genéricos ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.4vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.2rem;
  border-radius: 16px; background: var(--nude-soft); color: var(--terracotta);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: var(--fs-xl); margin-bottom: .7rem; }
.card__text { font-size: var(--fs-sm); color: var(--muted); }
.card__list { margin: 1.2rem 0 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.card__list li {
  font-size: var(--fs-xs); padding: .35rem .8rem; border-radius: var(--radius-pill);
  background: var(--cream); color: var(--body);
}
.card__foot { margin-top: 1.5rem; }

/* ---------- 9. Fundador ---------- */
.founder__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.founder__media { position: relative; }
.founder__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top center; }
.founder__crm { font-size: var(--fs-sm); color: var(--terracotta); font-weight: 600; margin-top: .5rem; }
.founder__quote {
  margin: 1.8rem 0 0; padding-left: 1.4rem; border-left: 3px solid var(--nude);
  font-family: var(--font-display); font-size: var(--fs-lg); font-style: italic; color: var(--ink);
}

/* ---------- 10. Equipe ---------- */
.doc { text-align: left; }
.doc__photo {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 1/1; background: var(--nude-soft); margin-bottom: 1.1rem;
}
.doc__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.doc:hover .doc__photo img { transform: scale(1.05); }
.doc__name { font-size: var(--fs-lg); margin-bottom: .25rem; }
.doc__crm { font-size: var(--fs-xs); color: var(--terracotta); font-weight: 600; letter-spacing: .02em; }
.doc__spec { font-size: var(--fs-sm); color: var(--muted); margin-top: .45rem; }

/* ---------- 11. Unidades ---------- */
.unit { display: flex; flex-direction: column; height: 100%; }
.unit__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/11; margin-bottom: 1.2rem; background: var(--nude-soft); }
.unit__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.unit:hover .unit__img img { transform: scale(1.04); }
.unit__name { font-size: var(--fs-xl); margin-bottom: .6rem; }
.unit__addr { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1rem; }
.unit__tels { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.unit__tel { font-size: var(--fs-xs); font-weight: 600; color: var(--espresso); background: var(--cream); padding: .4rem .85rem; border-radius: var(--radius-pill); transition: background-color .2s; }
.unit__tel:hover { background: var(--nude); }

/* ---------- 12. Blog ---------- */
.post { display: flex; flex-direction: column; height: 100%; }
.post__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; margin-bottom: 1.1rem; background: var(--nude-soft); }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__cat { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); }
.post__title { font-size: var(--fs-lg); margin: .55rem 0 .6rem; }
.post__excerpt { font-size: var(--fs-sm); color: var(--muted); }
.post__date { margin-top: auto; padding-top: 1rem; font-size: var(--fs-xs); color: var(--muted); }

/* ---------- 13. Imprensa ---------- */
.press { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 4rem); }
/* Logos vêm em proporções muito diferentes: limita altura E largura
   para que nenhum domine a faixa. */
.press img {
  height: clamp(28px, 3.4vw, 40px); width: auto;
  max-width: clamp(110px, 14vw, 165px); object-fit: contain;
  opacity: .55; filter: grayscale(1); transition: opacity .3s, filter .3s;
}
.press img:hover { opacity: 1; filter: none; }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--font-display); font-size: var(--fs-lg); color: var(--ink);
  transition: color .2s;
}
.faq__q:hover { color: var(--terracotta); }
.faq__sign { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 2px; background: var(--terracotta);
  transition: transform .3s var(--ease);
}
.faq__sign::after { transform: rotate(90deg); }
.faq__item[data-open="true"] .faq__sign::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq__item[data-open="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.4rem; font-size: var(--fs-sm); color: var(--muted); max-width: 68ch; }

/* ---------- 15. CTA final ---------- */
.cta { background: var(--espresso); color: var(--white); text-align: center; }
.cta h2 { color: var(--white); font-size: var(--fs-3xl); }
.cta p { margin: 1.2rem auto 2.2rem; max-width: 54ch; color: rgba(255,255,255,.8); font-size: var(--fs-lg); }
.cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ---------- 16. Footer ---------- */
.footer { background: var(--espresso-dp); color: rgba(255,255,255,.72); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; font-size: var(--fs-sm); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer__logo img { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { transition: color .2s; }
.footer a:hover { color: var(--nude); }
.footer__list li + li { margin-top: .6rem; }
.footer__unit + .footer__unit { margin-top: 1.2rem; }
.footer__unit strong { display: block; color: var(--white); font-weight: 600; margin-bottom: .2rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); transition: background-color .25s, transform .25s; }
.footer__social a:hover { background: var(--terracotta); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: var(--fs-xs); color: rgba(255,255,255,.5);
}

/* ---------- 17. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem); z-index: 90;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- 18. Animação de entrada ----------
   Só esconde o conteúdo se o JS estiver ativo (a classe .js é adicionada
   no <head>). Sem JS, a página continua 100% legível. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- 19. Responsivo ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  /* A imagem sobe para o topo, então o espaço do header fixo não é mais
     necessário aqui — só o respiro normal da seção. */
  .hero__content {
    max-width: var(--wrap); margin-inline: auto;
    padding: clamp(2.5rem, 7vw, 4rem) var(--gutter) clamp(3rem, 8vw, 4.5rem);
  }
  .hero__media { aspect-ratio: 16/10; order: -1; }
  .hero__media img { min-height: 100%; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media img { aspect-ratio: 16/11; max-width: 520px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .header { background: rgba(74, 47, 38, .93); backdrop-filter: blur(14px); }
  .nav {
    position: fixed; inset: var(--header-h) 0 0; margin: 0;
    background: var(--espresso); padding: 2rem var(--gutter) 3rem;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav[data-open="true"] { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__link { padding: 1.05rem 0; font-size: var(--fs-lg); justify-content: space-between; width: 100%; }
  .nav__link::after { display: none; }
  .nav__sub {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; background: none; box-shadow: none; padding: 0 0 .8rem;
    display: none;
  }
  .nav__item--has-sub[data-open="true"] .nav__sub { display: block; }
  .nav__sub a { color: rgba(255,255,255,.7); padding: .6rem 0 .6rem 1rem; }
  .nav__sub a:hover { background: none; color: var(--nude); }
  .nav__cta { display: inline-flex; margin-top: 1.8rem; width: 100%; }
  .nav__item:last-child { border-bottom: 0; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 540px) {
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .doc__name { font-size: var(--fs-base); }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
}

/* ---------- 20. Impressão ---------- */
@media print {
  .header, .wa-float, .cta, .footer__social { display: none; }
  body { color: #000; }
}
