/* =========================================================================
   CONTABILIDADE FREIRE — styles.css
   Mobile-first. Para trocar de cliente/paleta, edite SÓ o bloco :root abaixo.
   ========================================================================= */

/* ---------- Fontes (hospedadas localmente: nada é pedido ao Google antes do consentimento) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../assets/fonts/figtree-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- DESIGN TOKENS (personalização) ---------- */
:root {
  /* Cores da marca — paleta do briefing (validar com o logo oficial) */
  --c-ink: #132a3a;          /* azul-marinho: texto, seções escuras */
  --c-ink-deep: #0d1f2b;     /* rodapé */
  --c-ink-soft: #40566a;     /* texto secundário */
  --c-accent: #1f7a6b;       /* verde-azulado: botões e destaques */
  --c-accent-dark: #17614f;  /* hover do botão */
  --c-accent-light: #6fcdb8; /* destaque sobre fundo escuro */
  --c-sand: #f3efe7;         /* areia: fundo de acolhimento */
  --c-sand-deep: #e6dfd0;    /* bordas/divisórias sobre areia */
  --c-white: #ffffff;
  --c-line: rgba(19, 42, 58, 0.14);
  --c-danger: #a3271f;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Escala e espaçamento */
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-h1: clamp(2.125rem, 6.4vw, 3.6rem);
  --fs-h2: clamp(1.75rem, 4.2vw, 2.6rem);
  --fs-h3: 1.25rem;
  --space-section: clamp(3.5rem, 8vw, 6.5rem);
  --container: 1120px;
  --gutter: 1.25rem;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(19, 42, 58, 0.06), 0 12px 32px -12px rgba(19, 42, 58, 0.22);

  /* Alturas fixas (usadas para compensar header e barra de CTA) */
  --header-h: 64px;
  --cta-bar-h: 76px;
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  padding-top: var(--header-h);
  padding-bottom: var(--cta-bar-h); /* espaço para a barra fixa no mobile */
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Foco visível para navegação por teclado */
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .site-footer :focus-visible { outline-color: var(--c-accent-light); }

.skip-link {
  position: fixed; left: 0.75rem; top: -4rem; z-index: 200;
  background: var(--c-ink); color: var(--c-white); padding: 0.7rem 1rem; border-radius: 8px;
  transition: top 0.15s;
}
.skip-link:focus { top: 0.75rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout base ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-section); }
.section--sand { background: var(--c-sand); }
.section--dark { background: var(--c-ink); color: var(--c-white); }
.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  display: inline-block; margin-bottom: 0.9rem;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-accent);
}
.on-dark .eyebrow { color: var(--c-accent-light); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
.lead { font-size: clamp(1.0625rem, 2.2vw, 1.25rem); color: var(--c-ink-soft); margin-top: 1rem; }
.on-dark .lead { color: rgba(255, 255, 255, 0.82); }

/* ---------- Ícones (sprite inline no HTML) ---------- */
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.85rem 1.5rem;
  font-weight: 700; font-size: 1rem; line-height: 1.25; text-align: center; text-decoration: none;
  border: 2px solid transparent; border-radius: 999px; cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-accent); color: var(--c-white); }
.btn--primary:hover { background: var(--c-accent-dark); }
.btn--light { background: var(--c-accent-light); color: var(--c-ink); }
.btn--light:hover { background: #8fdccb; }
.btn--ghost { border-color: var(--c-ink); color: var(--c-ink); background: transparent; }
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); }
.on-dark .btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: var(--c-white); }
.on-dark .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: 0.55rem 1.15rem; font-size: 0.9375rem; }
.text-link { font-weight: 600; text-decoration: underline; text-underline-offset: 0.2em; text-decoration-thickness: 1.5px; }
.text-link:hover { color: var(--c-accent); }
.on-dark .text-link:hover { color: var(--c-accent-light); }

/* ---------- Header fixo ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 255, 255, 0.94); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__mark { width: 38px; height: 38px; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name strong { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; letter-spacing: -0.01em; }
.brand__name span { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-accent); margin-top: 3px; }
.site-header__cta { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--c-sand); padding-block: clamp(2.25rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem); overflow: hidden; position: relative; }
.hero::before { /* trama discreta de linhas de razão contábil */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(to bottom, transparent calc(100% - 1px), rgba(19, 42, 58, 0.06) 0);
  background-size: 100% 44px; mask-image: linear-gradient(to left, #000 0%, transparent 70%);
}
.hero__grid { position: relative; display: grid; gap: 2.5rem; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.4rem 0.9rem;
  border: 1px solid var(--c-line); border-radius: 999px; background: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-small); font-weight: 600; margin-bottom: 1.4rem;
}
.hero__badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c-accent); }
.hero h1 { font-size: var(--fs-h1); }
.hero h1 em { font-style: normal; color: var(--c-accent); }
.hero .lead { max-width: 36rem; }
.hero__actions { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2rem; }
.hero__offer { margin-top: 1.25rem; font-size: var(--fs-small); color: var(--c-ink-soft); max-width: 34rem; }
.hero__offer strong { color: var(--c-ink); }

/* Cartão "Raio-X" (ilustração funcional da oferta) */
.xray { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.25rem, 3vw, 1.75rem); }
.xray__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--c-line); }
.xray__title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; line-height: 1.2; }
.xray__tag { flex: none; padding: 0.3rem 0.7rem; border-radius: 999px; background: #e3f2ef; color: var(--c-accent-dark); font-size: 0.8125rem; font-weight: 700; white-space: nowrap; }
.xray__list { margin-block: 0.4rem; }
.xray__list li { display: flex; align-items: center; gap: 0.85rem; padding: 0.8rem 0; border-bottom: 1px dashed var(--c-line); font-weight: 500; }
.xray__list li:last-child { border-bottom: 0; }
.xray__dot { flex: none; width: 22px; height: 22px; border: 2px solid var(--c-accent); border-radius: 7px; }
.xray__foot { margin-top: 0.6rem; padding: 0.9rem 1rem; border-radius: var(--radius); background: var(--c-sand); font-size: var(--fs-small); color: var(--c-ink-soft); }
.xray__foot strong { color: var(--c-ink); }

/* ---------- Sinais de dor ---------- */
.signs { display: grid; gap: 1rem; counter-reset: sign; }
.signs li { counter-increment: sign; position: relative; padding: 1.35rem 1.35rem 1.35rem 4.1rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-white); font-weight: 500; }
.signs li::before {
  content: counter(sign, decimal-leading-zero);
  position: absolute; left: 1.25rem; top: 1.2rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1; color: var(--c-accent);
}
.signs__close { margin-top: 2rem; font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.6rem); font-weight: 500; max-width: 40rem; }

/* ---------- Método ---------- */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding: 1.5rem; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); }
.steps li::before {
  content: counter(step);
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem;
  border-radius: 50%; background: var(--c-accent-light); color: var(--c-ink);
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem;
}
.steps h3 { margin-bottom: 0.5rem; }
.steps p { color: rgba(255, 255, 255, 0.82); font-size: var(--fs-small); }
.method__note { margin-top: 1.75rem; max-width: 46rem; font-size: var(--fs-small); color: rgba(255, 255, 255, 0.72); }
.method__cta { margin-top: 2rem; }

/* ---------- Serviços ---------- */
.service-focus { display: grid; gap: 0.75rem; padding: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1.5rem; border-radius: var(--radius-lg); background: var(--c-ink); color: var(--c-white); }
.service-focus__tag { justify-self: start; padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--c-accent-light); color: var(--c-ink); font-size: 0.8125rem; font-weight: 700; }
.service-focus h3 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); }
.service-focus p { color: rgba(255, 255, 255, 0.82); max-width: 40rem; }
.service-groups { display: grid; gap: 1rem; }
.service-group { padding: 1.5rem; border: 1px solid var(--c-sand-deep); border-radius: var(--radius); background: var(--c-white); }
.service-group h3 { margin-bottom: 0.9rem; font-size: 1.125rem; }
.service-group li { position: relative; padding: 0.45rem 0 0.45rem 1.5rem; font-size: var(--fs-small); }
.service-group li::before { content: ""; position: absolute; left: 0; top: 1rem; width: 8px; height: 8px; border-radius: 2px; background: var(--c-accent); }
.services__note { margin-top: 1.5rem; font-size: var(--fs-small); color: var(--c-ink-soft); }

/* ---------- Nichos ---------- */
.niches { display: grid; gap: 1rem; }
.niche { padding: 1.75rem; border-radius: var(--radius); border: 1px solid var(--c-line); background: var(--c-white); }
.niche__n { display: block; margin-bottom: 1rem; font-family: var(--font-display); font-size: 2.25rem; line-height: 1; color: var(--c-accent); }
.niche h3 { margin-bottom: 0.6rem; }
.niche p { font-size: var(--fs-small); color: var(--c-ink-soft); }
.niches__note { margin-top: 1.5rem; max-width: 42rem; color: var(--c-ink-soft); }

/* ---------- Sobre ---------- */
.about { display: grid; gap: 2.5rem; }
.about__text p + p { margin-top: 1rem; }
.about__text p { color: var(--c-ink-soft); }
.about__text .lead { color: var(--c-ink); }
.facts { padding: 1.5rem; border-radius: var(--radius-lg); background: var(--c-white); border: 1px solid var(--c-sand-deep); box-shadow: var(--shadow); align-self: start; }
.facts h3 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.facts dl { display: grid; }
.facts div { padding: 0.8rem 0; border-bottom: 1px dashed var(--c-line); }
.facts div:last-child { border-bottom: 0; }
.facts dt { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-accent); }
.facts dd { font-weight: 500; overflow-wrap: anywhere; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 52rem; }
.faq details { border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-white); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; font-size: 1.6rem; line-height: 1; font-weight: 500; color: var(--c-accent); transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] { border-color: var(--c-accent); }
.faq__body { padding: 0 1.35rem 1.35rem; color: var(--c-ink-soft); }
.faq__body p + p { margin-top: 0.75rem; }

/* ---------- Formulário ---------- */
.lead-grid { display: grid; gap: 2.5rem; align-items: start; }
.lead-points { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.lead-points li { display: flex; gap: 0.7rem; align-items: flex-start; color: rgba(255, 255, 255, 0.86); }
.lead-points .icon { margin-top: 0.2em; color: var(--c-accent-light); }
.form-card { padding: clamp(1.25rem, 4vw, 2rem); border-radius: var(--radius-lg); background: var(--c-white); color: var(--c-ink); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5); }
.field { margin-bottom: 1rem; }
.field label, .field .label { display: block; margin-bottom: 0.35rem; font-weight: 600; font-size: var(--fs-small); }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 0.65rem 0.9rem;
  border: 1.5px solid #8b9aa6; border-radius: 10px; background: var(--c-white);
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--c-ink) 50%), linear-gradient(135deg, var(--c-ink) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 2.5rem; }
.field input:hover, .field select:hover { border-color: var(--c-ink); }
.field input:focus-visible, .field select:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 1px; border-color: var(--c-accent); }
.field [aria-invalid="true"] { border-color: var(--c-danger); }
.field__error { margin-top: 0.3rem; font-size: 0.875rem; color: var(--c-danger); font-weight: 600; min-height: 0; }
.field__hint { margin-top: 0.3rem; font-size: 0.8125rem; color: var(--c-ink-soft); }
.form-row { display: grid; gap: 0 1rem; }
.field label.consent, .consent { display: flex; font-weight: 400; gap: 0.75rem; align-items: flex-start; margin: 0.5rem 0 1rem; font-size: 0.875rem; color: var(--c-ink-soft); }
.nowrap { white-space: nowrap; }
.consent input { flex: none; width: 22px; height: 22px; margin: 0.15rem 0 0; accent-color: var(--c-accent); }
.consent a { color: var(--c-ink); font-weight: 600; }
.form-purpose { margin-top: 1rem; font-size: 0.8125rem; color: var(--c-ink-soft); }
.form-purpose a { font-weight: 600; }

/* ---------- Contato ---------- */
.contact { display: grid; gap: 2rem; }
.contact__list { display: grid; gap: 1.25rem; }
.contact__item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact__item .icon { margin-top: 0.15em; color: var(--c-accent); width: 1.5em; height: 1.5em; }
.contact__item h3 { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 0.2rem; }
.contact__item a { text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
.contact__item address { font-style: normal; }
.contact__schedule { margin-top: 1.5rem; font-size: var(--fs-small); color: var(--c-ink-soft); }
.map { position: relative; min-height: 320px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-sand-deep); background: var(--c-white); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 0.9rem; padding: 1.5rem; text-align: center; background-image: linear-gradient(rgba(19, 42, 58, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(19, 42, 58, 0.06) 1px, transparent 1px); background-size: 28px 28px; }
.map__placeholder[hidden] { display: none; }
.map__placeholder p { font-size: var(--fs-small); color: var(--c-ink-soft); max-width: 22rem; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--c-ink-deep); color: rgba(255, 255, 255, 0.82); padding-block: 3rem 2rem; font-size: var(--fs-small); }
.footer__grid { display: grid; gap: 2rem; }
.site-footer .brand__name strong { color: var(--c-white); }
.site-footer .brand__name span { color: var(--c-accent-light); }
.site-footer h3 { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-accent-light); margin-bottom: 0.75rem; }
.site-footer address { font-style: normal; }
.site-footer a { text-underline-offset: 0.2em; }
.site-footer a:hover { color: var(--c-white); }
.footer__links li + li { margin-top: 0.5rem; }
.linklike { padding: 0; border: 0; background: none; cursor: pointer; text-decoration: underline; text-underline-offset: 0.2em; }
.linklike:hover { color: var(--c-white); }
.footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.16); display: grid; gap: 0.6rem; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.68); }

/* ---------- Barra de CTA fixa (mobile) ---------- */
.cta-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  padding: 0.75rem var(--gutter) calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97); border-top: 1px solid var(--c-line);
  box-shadow: 0 -8px 24px -12px rgba(19, 42, 58, 0.25);
}

/* ---------- Banner de cookies ---------- */
.cookie {
  position: fixed; z-index: 150; left: 0.75rem; right: 0.75rem; bottom: calc(var(--cta-bar-h) + 0.75rem);
  max-width: 34rem; padding: 1.25rem; border-radius: var(--radius-lg);
  background: var(--c-white); color: var(--c-ink); border: 1px solid var(--c-line);
  box-shadow: 0 20px 50px -15px rgba(19, 42, 58, 0.45);
}
.cookie[hidden] { display: none; }
.cookie h2 { font-family: var(--font-body); font-size: 1.0625rem; font-weight: 700; letter-spacing: 0; margin-bottom: 0.4rem; }
.cookie p { font-size: 0.875rem; color: var(--c-ink-soft); }
.cookie p a { color: var(--c-ink); font-weight: 600; }
.cookie__actions { display: grid; gap: 0.6rem; margin-top: 1rem; }

/* ---------- Páginas jurídicas ---------- */
.legal { padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.legal__inner { max-width: 50rem; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 0.75rem; }
.legal .meta { color: var(--c-ink-soft); font-size: var(--fs-small); margin-bottom: 2rem; }
.legal h2 { font-size: 1.5rem; margin: 2.25rem 0 0.75rem; }
.legal p, .legal li { color: #2a4053; }
.legal p + p, .legal ul + p, .legal .table-wrap + p { margin-top: 0.85rem; }
.legal ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.75rem; display: grid; gap: 0.4rem; }
.legal a { color: var(--c-accent-dark); font-weight: 600; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 1rem; font-size: var(--fs-small); }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 0.7rem 0.75rem; border: 1px solid var(--c-line); }
.legal th { background: var(--c-sand); }
.legal .table-wrap { overflow-x: auto; }
.legal-review { margin-top: 3rem; padding: 1rem 1.25rem; border-left: 4px solid var(--c-accent); background: var(--c-sand); border-radius: 0 var(--radius) var(--radius) 0; font-size: var(--fs-small); }

/* Páginas sem barra de CTA (jurídicas) */
.no-cta-bar { padding-bottom: 0; }
.no-cta-bar .cookie { bottom: 0.75rem; }

/* ---------- Breakpoints ---------- */
@media (min-width: 720px) {
  :root { --gutter: 2rem; --header-h: 72px; }
  body { padding-bottom: 0; }
  .cta-bar { display: none; }
  .site-header__cta { display: inline-flex; }
  .brand__mark { width: 42px; height: 42px; }
  .hero__actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .signs, .niches, .service-groups, .form-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cookie { left: 1.25rem; right: auto; bottom: 1.25rem; }
  .cookie__actions { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; }
  .signs { grid-template-columns: repeat(3, 1fr); }
  .niches { grid-template-columns: repeat(3, 1fr); }
  .service-groups { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about { grid-template-columns: 1.3fr 0.7fr; gap: 4rem; }
  .lead-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .contact { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: stretch; }
  .map { min-height: 100%; }
}

/* ---------- Preferências do usuário ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
@media print { .site-header, .cta-bar, .cookie { display: none; } body { padding: 0; } }
