/* =====================================================================
   SOROMARCA — Design System
   Sóbrio, institucional e premium. Paleta extraída da marca:
   vinho/bordô profundo + acento dourado discreto + neutros quentes.
   (Mesma família de acabamento do GovMarcas, identidade própria.)
   ===================================================================== */

:root {
  /* Brand — vinho/bordô */
  --wine-900: #2a0a0a;
  --wine-800: #46100f;
  --wine-700: #5e1513;
  --wine-600: #800000;   /* primário (logo) */
  --wine-500: #9c2420;
  --wine-400: #b94d49;
  --wine-300: #e6b9b6;

  /* Acento secundário discreto (vinho claro p/ usos sobre fundo vinho) */
  --gold: #e9c9c7;
  --gold-600: #9c2420;

  /* Neutros frios/limpos (leves, sem tom rosado) */
  --ink: #1f2430;        /* títulos / texto forte */
  --body: #4b5563;       /* texto corpo */
  --muted: #8a9099;
  --line: #e9eaee;
  --paper: #f6f7f9;      /* off-white neutro */
  --paper-2: #eef0f4;
  --white: #ffffff;
  --wa: #1faf54;

  /* Tipografia */
  --display: "Sora", "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(31, 36, 48, .05);
  --shadow: 0 18px 46px -24px rgba(31, 36, 48, .26);
  --shadow-lg: 0 38px 84px -42px rgba(31, 36, 48, .34);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
iframe { border: 0; display: block; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); line-height: 1.14; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.6rem); }

/* ---------- Utilidades ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--paper { background: var(--paper); }
.section--navy { background: linear-gradient(160deg, var(--wine-800), var(--wine-900)); color: #f3dedd; }
.text-center { text-align: center; }
.lead { font-size: 1.16rem; color: var(--body); line-height: 1.7; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--wine-600);
  margin-bottom: 16px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--wine-500); border-radius: 2px; }
.kicker svg { width: 16px; height: 16px; }
.section--navy .kicker { color: var(--gold); }
.text-center .kicker::before { display: none; }

.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section:not(.text-center) .section-head:not(.text-center) { margin-left: 0; }
.section-head .lead { margin-top: 14px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Logo (imagem real da marca) */
.brand__logo { height: 36px; width: auto; display: block; }
.brand__logo--footer { height: 32px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap; letter-spacing: .01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--wine-500), var(--wine-700));
  color: #fff; box-shadow: 0 14px 30px -12px rgba(128, 0, 0, .6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(128, 0, 0, .75); }
.btn-ghost { background: transparent; color: var(--wine-700); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--wine-500); color: var(--wine-600); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--wine-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { transform: translateY(-3px); background: #1c9d4c; box-shadow: 0 18px 34px -16px rgba(31, 175, 84, .8); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.04rem; }

/* =====================================================================
   TOPBAR
   ===================================================================== */
.topbar { background: var(--paper); color: var(--body); font-size: .82rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar__list { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__list li { display: inline-flex; align-items: center; gap: 7px; }
.topbar__list svg { width: 15px; height: 15px; color: var(--wine-600); }
.topbar__list a:hover { color: var(--wine-700); }
.topbar__tag { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.topbar__tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wine-500); box-shadow: 0 0 0 4px rgba(128,0,0,.12); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .3s, background .3s; }
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--wine-600), var(--wine-800)); color: #fff; }
.brand__mark svg { width: 22px; height: 22px; }
.brand__word { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.brand__word strong { color: var(--wine-600); font-weight: 700; }
.brand__word sup { font-size: .5em; color: var(--gold-600); top: -.9em; }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link { display: inline-block; padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: .98rem; color: var(--ink); white-space: nowrap; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--wine-600); }
.nav__link.active { color: var(--wine-600); background: var(--paper-2); }
.nav__close, .nav__drawer-cta { display: none; }

.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .btn { padding: 11px 20px; font-size: .92rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: var(--wine-700); box-shadow: inset 0 0 0 1.5px var(--line); }
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }
.nav-backdrop { display: none; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 88px); background: linear-gradient(170deg, var(--paper) 0%, #fff 60%); overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -160px; right: -120px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(128,0,0,.04), transparent 70%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); font-size: .82rem; font-weight: 700; color: var(--wine-700); margin-bottom: 22px; }
.hero__badge svg { width: 16px; height: 16px; color: var(--wine-600); }
.hero__content h1 { margin-bottom: 16px; }
.hero__content h1 .accent { color: var(--wine-600); }
.hero__slogan { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.hero__sub { color: var(--body); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* =====================================================================
   BUSCA (search card)
   ===================================================================== */
.search-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: clamp(22px, 3vw, 32px); }
.search-card__intro { margin-bottom: 18px; }
.search-card__intro h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.search-card__intro p { margin-top: 10px; font-size: .98rem; color: var(--body); }
.search-row { display: flex; gap: 12px; }
.search-field { position: relative; flex: 1; display: flex; align-items: center; }
.search-field svg { position: absolute; left: 16px; width: 19px; height: 19px; color: var(--muted); pointer-events: none; }
.search-field input { width: 100%; padding: 15px 16px 15px 44px; border-radius: 12px; border: 1.5px solid var(--line); font: inherit; color: var(--ink); background: var(--paper); transition: border-color .2s, background .2s; }
.search-field input:focus { outline: 0; border-color: var(--wine-500); background: #fff; }
.search-form .btn { padding-inline: 22px; }
.search-note { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: .85rem; color: var(--muted); }
.search-note svg { width: 14px; height: 14px; }
.search-lead { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.search-lead__head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); margin-bottom: 12px; font-size: .96rem; }
.search-lead__head svg { width: 18px; height: 18px; color: var(--wine-600); flex: none; }
.search-lead .search-row { margin-bottom: 12px; }
.search-lead__erro { color: var(--wine-500); }

/* Consentimento LGPD. Alvo de toque de 20px no checkbox e o texto inteiro clicável pelo
   <label> — em telas pequenas uma caixinha de 13px é o campo mais difícil do formulário. */
.search-lead__consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 12px; font-size: .86rem; line-height: 1.45; color: var(--muted); }
.search-lead__consent input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; accent-color: var(--wine-600); cursor: pointer; }
.search-lead__consent a { color: var(--wine-600); text-decoration: underline; text-underline-offset: 2px; }
.search-lead__consent:hover { color: var(--ink); }

.search-result { display: none; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.search-result.show { display: block; animation: fade-up .5s var(--ease); }
.search-result__head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.search-result__head svg { width: 18px; height: 18px; color: var(--wine-600); }
.search-result > p { font-size: .92rem; color: var(--muted); margin-top: 14px; }
.search-verdict { padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: .96rem; margin-bottom: 14px; }
.search-verdict--alerta { background: #fbeaea; color: #8e1b1b; box-shadow: inset 0 0 0 1px #f0caca; }
.search-verdict--neutro { background: var(--paper-2); color: var(--wine-800); box-shadow: inset 0 0 0 1px var(--line); }
.search-verdict--ok { background: #e8f6ec; color: #1b6e38; box-shadow: inset 0 0 0 1px #c4e6cf; }
.search-hits { display: grid; gap: 8px; margin-bottom: 8px; }
.search-hits li { display: flex; flex-direction: column; padding: 11px 14px; border-radius: 10px; background: var(--paper); border: 1px solid var(--line); }
.search-hits strong { color: var(--ink); font-size: .98rem; }
.search-hits span { color: var(--muted); font-size: .84rem; }
.search-more { width: 100%; padding: 12px; border-radius: 10px; font-weight: 700; color: var(--wine-700); background: var(--paper-2); transition: background .2s; }
.search-more:hover { background: #e3e6ec; }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust { background: #fff; color: var(--body); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; padding: 22px 0; }
.trust__item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .94rem; }
.trust__item svg { width: 19px; height: 19px; color: var(--wine-600); }

/* =====================================================================
   SPLIT (quem somos)
   ===================================================================== */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.about-stats { display: grid; gap: 16px; }
.about-stat { padding: 24px 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.about-stat .n { font-family: var(--display); font-weight: 700; font-size: 2.4rem; color: var(--wine-600); line-height: 1; }
.about-stat .l { color: var(--muted); font-weight: 600; margin-top: 6px; }

/* =====================================================================
   CARDS (serviços resumo)
   ===================================================================== */
.card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 30px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--paper-2); color: var(--wine-600); margin-bottom: 18px; }
.card__ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; color: var(--wine-600); }
.card__link svg { width: 17px; height: 17px; transition: transform .25s; }
.card__link:hover svg { transform: translateX(4px); }
.card__link--lg { font-size: 1.05rem; }

/* =====================================================================
   SERVIÇOS — blocos de conteúdo
   ===================================================================== */
.svc-block { margin-top: clamp(40px, 6vw, 64px); }
.svc-block > h3 { margin-bottom: 8px; }
.svc-block > .lead { margin-bottom: 26px; max-width: 70ch; }
.svc-note { margin-top: 22px; padding: 16px 20px; border-left: 3px solid var(--wine-500); background: var(--paper); border-radius: 0 10px 10px 0; color: var(--body); font-size: .96rem; }
.svc-cta { margin-top: 40px; text-align: center; }

/* Steps (processo) */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 26px 20px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.section--paper .step { background: #fff; }
.step__n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--wine-600), var(--wine-800)); color: #fff; font-family: var(--display); font-weight: 700; margin-bottom: 14px; }
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--muted); }

/* Tipos de marca */
.type-card { padding: 26px 22px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s; }
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: #fff; }
.type-card__ic { color: var(--wine-600); margin-bottom: 12px; }
.type-card__ic svg { width: 26px; height: 26px; }
.type-card h4 { font-size: 1.12rem; margin-bottom: 6px; }
.type-card p { font-size: .92rem; color: var(--muted); }

/* Documentos */
.docs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.docs__col { padding: 28px 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.docs__col h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--wine-700); }
.docs__col h4 svg { width: 20px; height: 20px; }
.docs__col li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.docs__col li:last-child { border-bottom: 0; }
.docs__col li svg { width: 18px; height: 18px; color: var(--wa); flex: none; margin-top: 3px; }

/* =====================================================================
   ASSOCIAÇÕES (badges)
   ===================================================================== */
.assoc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.assoc__badge { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.assoc__badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.assoc__sigla { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--wine-600); letter-spacing: .02em; }
.assoc__nome { font-size: .82rem; color: var(--muted); line-height: 1.4; }

/* =====================================================================
   PAGE HERO (servicos.php)
   ===================================================================== */
.page-hero { padding: clamp(40px, 6vw, 72px) 0; background: linear-gradient(170deg, var(--paper), #fff); }
.page-hero h1 { margin: 6px 0 14px; max-width: 16ch; }
.page-hero .lead { max-width: 64ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--wine-600); margin-bottom: 18px; }
.back-link svg { width: 17px; height: 17px; }
.back-link svg.flip { transform: rotate(180deg); }
.back-link:hover { color: var(--wine-800); }

/* =====================================================================
   CTA BAND + CONTATO
   ===================================================================== */
.cta-band { background: linear-gradient(155deg, var(--wine-600), var(--wine-800)); color: #f3dedd; padding: clamp(48px, 7vw, 88px) 0; }
.cta-band__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(243,222,221,.85); max-width: 48ch; }
.cta-band .kicker { color: var(--gold); }
.contact-list { margin-top: 22px; display: grid; gap: 10px; }
.contact-list li { display: flex; align-items: center; gap: 11px; font-weight: 600; }
.contact-list svg { width: 19px; height: 19px; color: var(--gold); flex: none; }
.contact-list a:hover { color: #fff; }
.cta-band__side { display: grid; gap: 18px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,.1); }
.map-embed iframe { width: 100%; height: 240px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--paper); color: var(--body); padding: clamp(48px, 6vw, 72px) 0 28px; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer__brand .brand--footer { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand p { font-size: .92rem; color: var(--muted); max-width: 38ch; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: #fff; color: var(--wine-700); box-shadow: var(--shadow-sm); transition: background .2s, color .2s, transform .2s; }
.footer__social a:hover { background: var(--wine-600); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__social a .brand-ico { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 19px; line-height: 1; }
.footer h5 { color: var(--ink); font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links li, .footer__contact li { padding: 6px 0; font-size: .92rem; }
.footer__links a:hover { color: var(--wine-700); }
.footer__contact li { display: flex; align-items: flex-start; gap: 9px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--wine-600); flex: none; margin-top: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; font-size: .84rem; color: var(--muted); }
.footer__credit a { color: var(--wine-700); font-weight: 600; }

/* =====================================================================
   WHATSAPP FLOAT
   ===================================================================== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); color: #fff; box-shadow: 0 14px 30px -8px rgba(31,175,84,.6); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float .brand-ico { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-size: 30px; line-height: 1; }

/* =====================================================================
   REVEAL
   ===================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .split, .cta-band__inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* No mobile o header não pode ter backdrop-filter: ele criaria um containing
     block e prenderia o .nav (position:fixed) à altura do header, cortando o drawer. */
  .header { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; }

  /* Mobile nav drawer */
  .nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 340px); background: #fff; box-shadow: var(--shadow-lg); padding: 78px 24px 28px; flex-direction: column; align-items: stretch; gap: 6px; transform: translateX(100%); transition: transform .35s var(--ease); z-index: 70; overflow-y: auto; display: flex; }
  .nav.open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link { display: block; padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav__close { display: grid; place-items: center; position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 12px; color: var(--wine-700); box-shadow: inset 0 0 0 1.5px var(--line); }
  .nav__close svg { width: 22px; height: 22px; }
  .nav__drawer-cta { display: grid; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
  .nav-toggle { display: grid; }
  .header__cta .btn-text-hide, .header__cta-main { display: none; }
  .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(42,10,10,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 65; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
  .header.menu-open { z-index: 80; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .topbar { display: none; }
  .grid-3, .grid-4, .assoc { grid-template-columns: 1fr; }
  .steps, .docs { grid-template-columns: 1fr; }
  .search-row { flex-direction: column; }
  .search-form .btn { width: 100%; }
  .hero__actions .btn, .page-hero__actions .btn, .cta-band__actions .btn { flex: 1; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (min-width: 561px) and (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .assoc { grid-template-columns: repeat(2, 1fr); }
}

/* Páginas de texto corrido (Política de Privacidade). */
.container--narrow { max-width: 820px; }
.prose { max-width: 760px; }
.prose h3 { margin: 32px 0 12px; color: var(--ink); font-size: 1.12rem; }
.prose p { margin-bottom: 18px; color: var(--muted); line-height: 1.7; }
.prose ul { margin: 0 0 18px; padding-left: 22px; list-style: disc; color: var(--muted); }
.prose ul li { margin-bottom: 10px; line-height: 1.65; }
.prose li strong, .prose p strong { color: var(--ink); }
.prose a { color: var(--wine-600); text-decoration: underline; text-underline-offset: 2px; }
.prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; background: var(--paper, #f6f3f3); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; }
