/* =====================================================================
   Helena Vasco · Advocacia de Família & Sucessões
   Pólo: LEVE + GENIAL — a genialidade vem do ar, do ritmo e da contenção.
   Mobile-first. Desktop com layout editorial próprio (grid 12 col).
   Fraunces (display) · Source Serif 4 (leitura) · Inter (UI).
   Anima só opacity/transform; tudo cai para estado final em reduced-motion.
   ===================================================================== */

/* -------------------------------------------------- tokens */
:root {
  /* paleta */
  --floresta:   #1F3A36;   /* primária — fundos âncora, títulos */
  --petroleo:   #2C4A52;   /* apoio — links, detalhes */
  --creme:      #F4EFE6;   /* fundo principal (o "ar") */
  --areia:      #EBE3D5;   /* blocos alternados, cartões */
  --dourado:    #B8895A;   /* acento DECORATIVO — réguas, ícones, hover (não-texto) */
  --dourado-txt:#855C32;   /* dourado para TEXTO sobre creme/areia — AA (>=4.5) */
  --dourado-cl: #C99E72;   /* acento sobre fundo escuro */
  --tinta:      #3A3530;   /* corpo de texto (mais quente que preto) */
  --salvia:     #556358;   /* texto secundário — AA sobre creme/areia */
  --salvia-cl:  #A9B6AE;   /* secundário sobre fundo escuro */
  --creme-soft: #FAF7F1;   /* cartões claros sobre creme */

  /* tipografia */
  --f-display: "Fraunces", Georgia, serif;
  --f-read:    "Source Serif 4", Georgia, serif;
  --f-ui:      "Inter", system-ui, -apple-system, sans-serif;

  /* ritmo vertical generoso */
  --space-section: clamp(4.5rem, 12vw, 9rem);
  --gutter:        clamp(1.25rem, 6vw, 2rem);
  --measure:       38rem;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------------------------------------- reset enxuto */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinta);
  font-family: var(--f-read);
  font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.1875rem);
  line-height: 1.7;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--petroleo); }

h1, h2, h3 { margin: 0; font-family: var(--f-display); font-weight: 450; }

p { margin: 0; }

/* skip-link */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--floresta);
  color: var(--creme);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -------------------------------------------------- kicker (rótulo) */
.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salvia);
}
.kicker--light { color: var(--salvia-cl); }

.kicker__rule {
  display: inline-block;
  width: clamp(1.75rem, 8vw, 3rem);
  height: 1px;
  background: var(--dourado);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease);
}
.kicker.is-in .kicker__rule,
.is-in .kicker__rule { transform: scaleX(1); }
/* kickers dentro de blocos reveal: a régua cresce quando o bloco entra */
.reveal.is-in .kicker__rule { transform: scaleX(1); }

/* -------------------------------------------------- botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
              color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn--primary {
  background: var(--floresta);
  color: var(--creme);
}
.btn--primary:hover {
  background: var(--petroleo);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px -12px rgba(31, 58, 54, 0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--floresta);
  border-color: rgba(31, 58, 54, 0.28);
}
.btn--ghost:hover {
  border-color: var(--dourado);
  color: var(--petroleo);
}

/* -------------------------------------------------- topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--gutter);
  background: color-mix(in srgb, var(--creme) 88%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--tinta) 8%, transparent);
}
.topbar__sig {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  color: var(--floresta);
}
.topbar__name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar__role {
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--salvia);
}
.topbar__cta {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--floresta);
  border: 1px solid rgba(31, 58, 54, 0.28);
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.topbar__cta:hover {
  border-color: var(--dourado);
  background: var(--floresta);
  color: var(--creme);
}

/* =====================================================================
   1 · HERO
   ===================================================================== */
.hero {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 8vw, 3rem);
  padding: clamp(2.5rem, 9vw, 4.5rem) var(--gutter) var(--space-section);
}
.hero__title {
  font-size: clamp(2.6rem, 1.6rem + 5.5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--floresta);
  margin: 0 0 1.5rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 450;
  color: var(--dourado-txt);
}
.hero__lead {
  max-width: var(--measure);
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.3125rem);
  color: var(--tinta);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero__figure { margin: 0; }
.hero__media {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--areia);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -40px rgba(31, 58, 54, 0.5);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__cap {
  margin-top: 0.9rem;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--salvia);
}

/* =====================================================================
   2 · RECONHECIMENTO DA DOR
   ===================================================================== */
.dor {
  padding: var(--space-section) var(--gutter);
  background: var(--areia);
}
.dor__eyebrow {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dourado-txt);
  margin: 0 0 1.5rem;
}
.dor__title {
  font-size: clamp(1.6rem, 1.1rem + 2.6vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--floresta);
  max-width: 24ch;
}
.dor__title em { font-style: italic; color: var(--dourado-txt); }
.dor__body {
  margin-top: 1.75rem;
  max-width: var(--measure);
  color: var(--tinta);
}

/* =====================================================================
   3 · COMO A PRIMEIRA CONSULTA FUNCIONA — bloco âncora floresta
   ===================================================================== */
.consulta {
  padding: var(--space-section) var(--gutter);
  background: var(--floresta);
  color: var(--creme);
}
.consulta__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--creme);
  margin-bottom: 1.25rem;
}
.consulta__lead {
  max-width: var(--measure);
  color: var(--salvia-cl);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
}
.steps {
  list-style: none;
  margin: clamp(2.5rem, 8vw, 4rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.step {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}
.step__num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dourado-cl);
  margin-bottom: 0.6rem;
}
.step__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--creme);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.step__text {
  color: var(--salvia-cl);
  max-width: 42ch;
}

/* =====================================================================
   4 · ÁREAS DE ATUAÇÃO
   ===================================================================== */
.areas {
  padding: var(--space-section) var(--gutter);
}
.areas__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--floresta);
}
.areas__grid {
  list-style: none;
  margin: clamp(2.5rem, 8vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.area {
  position: relative;
  background: var(--creme-soft);
  border: 1px solid color-mix(in srgb, var(--tinta) 9%, transparent);
  border-radius: 0.75rem;
  padding: 1.6rem 1.5rem 1.7rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.area::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 2rem;
  height: 2px;
  background: var(--dourado);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.area:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--dourado) 45%, transparent);
  box-shadow: 0 18px 40px -28px rgba(31, 58, 54, 0.5);
}
.area:hover::before { transform: scaleX(1); }
.area__title {
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--floresta);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.area__desc {
  font-size: 1.0625rem;
  color: var(--tinta);
}

/* =====================================================================
   5 · QUEM VAI TE ATENDER — bloco âncora floresta
   ===================================================================== */
.atende {
  padding: var(--space-section) var(--gutter);
  background: var(--floresta);
  color: var(--creme);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 8vw, 3rem);
}
.atende__figure { margin: 0; order: -1; }
.atende__media {
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--petroleo);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.6);
}
.atende__media img { width: 100%; height: 100%; object-fit: cover; }
.atende__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--creme);
  margin-bottom: 1.5rem;
}
.atende__title em { font-style: italic; color: var(--dourado-cl); }
.atende__body { max-width: var(--measure); }
.atende__body p { color: var(--salvia-cl); }
.atende__body p + p { margin-top: 1.1rem; }
.atende__cred {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--dourado-cl);
}

/* =====================================================================
   6 · COMO CONDUZIMOS OS CASOS
   ===================================================================== */
.principios {
  padding: var(--space-section) var(--gutter);
  background: var(--areia);
}
.principios__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--floresta);
}
.principios__list {
  list-style: none;
  margin: clamp(2.5rem, 8vw, 3.5rem) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.prin {
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--tinta) 13%, transparent);
}
.prin__num {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dourado-txt);
  margin-bottom: 0.6rem;
}
.prin__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--floresta);
  margin-bottom: 0.7rem;
  line-height: 1.18;
}
.prin__text {
  color: var(--tinta);
  max-width: 50ch;
}

/* =====================================================================
   7 · HISTÓRIAS E CONFIANÇA — bloco âncora floresta
   ===================================================================== */
.historias {
  padding: var(--space-section) var(--gutter);
  background: var(--floresta);
  color: var(--creme);
}
.historias__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--creme);
  margin-bottom: 1.25rem;
}
.historias__note {
  max-width: 48ch;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  color: var(--salvia-cl);
  font-style: normal;
}
.depos {
  margin-top: clamp(2.5rem, 8vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.depo {
  margin: 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
}
.depo__quote {
  font-family: var(--f-read);
  font-size: clamp(1.1875rem, 1.05rem + 0.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--creme);
}
.depo__who {
  margin-top: 1rem;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dourado-cl);
}

/* =====================================================================
   8 · FAQ (accordion)
   ===================================================================== */
.faq {
  padding: var(--space-section) var(--gutter);
}
.faq__title {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--floresta);
}
.faq__list {
  margin-top: clamp(2.5rem, 8vw, 3.5rem);
  border-top: 1px solid color-mix(in srgb, var(--tinta) 13%, transparent);
}
.qa {
  border-bottom: 1px solid color-mix(in srgb, var(--tinta) 13%, transparent);
}
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  font-family: var(--f-display);
  font-size: clamp(1.1875rem, 1.05rem + 0.5vw, 1.4375rem);
  font-weight: 500;
  color: var(--floresta);
  line-height: 1.25;
}
.qa__q::-webkit-details-marker { display: none; }
.qa__icon {
  position: relative;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
}
.qa__icon::before,
.qa__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--dourado);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.qa__icon::before { width: 1.25rem; height: 2px; transform: translate(-50%, -50%); }
.qa__icon::after  { width: 2px; height: 1.25rem; transform: translate(-50%, -50%); }
.qa[open] .qa__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }
.qa__a {
  padding: 0 0 1.5rem;
  max-width: var(--measure);
}
.qa__a p { color: var(--tinta); }

/* =====================================================================
   9 · CONVITE FINAL + CONTATO — bloco âncora floresta
   ===================================================================== */
.contato {
  padding: var(--space-section) var(--gutter);
  background: var(--floresta);
  color: var(--creme);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 9vw, 3.5rem);
}
.contato__title {
  font-size: clamp(2.4rem, 1.5rem + 4.5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--creme);
  margin-bottom: 1.5rem;
}
.contato__title em { font-style: italic; color: var(--dourado-cl); }
.contato__lead {
  max-width: var(--measure);
  color: var(--salvia-cl);
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
}
.contato__direct { margin-top: 2rem; }
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--floresta);
  background: var(--dourado-cl);
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.wa-btn:hover { transform: translateY(-2px); background: var(--dourado); }
.wa-btn__icon { width: 1.25rem; height: 1.25rem; fill: var(--floresta); }
.contato__loc {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.75rem;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  color: var(--salvia-cl);
}
.contato__map {
  color: var(--dourado-cl);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  width: max-content;
  transition: border-color 0.2s var(--ease);
}
.contato__map:hover { border-bottom-color: var(--dourado-cl); }

/* formulário */
.form {
  background: var(--creme);
  color: var(--tinta);
  border-radius: 0.9rem;
  padding: clamp(1.5rem, 6vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 30px 70px -45px rgba(0, 0, 0, 0.6);
}
.form__title {
  font-family: var(--f-display);
  font-size: 1.3125rem;
  font-weight: 500;
  color: var(--floresta);
  margin-bottom: 0.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field__label {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--petroleo);
}
.field__input {
  font-family: var(--f-ui);
  font-size: 1rem;
  color: var(--tinta);
  background: var(--creme-soft);
  border: 1px solid color-mix(in srgb, var(--tinta) 18%, transparent);
  border-radius: 0.55rem;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field__input::placeholder { color: var(--salvia); }
.field__input:focus {
  outline: none;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--dourado) 22%, transparent);
}
.field__input--area { resize: vertical; min-height: 5rem; line-height: 1.5; }
.form__submit { margin-top: 0.4rem; width: 100%; }
.form__hint {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  color: var(--salvia);
  text-align: center;
}

/* =====================================================================
   RODAPÉ
   ===================================================================== */
.foot {
  padding: 2.5rem var(--gutter);
  background: var(--creme);
  border-top: 1px solid color-mix(in srgb, var(--tinta) 10%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.foot__name {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--floresta);
}
.foot__by {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  color: var(--salvia);
}
.foot__by a { color: var(--petroleo); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--petroleo) 35%, transparent); }
.foot__by a:hover { color: var(--dourado-txt); border-bottom-color: var(--dourado-txt); }

/* =====================================================================
   MOTION — reveal on scroll (LEVE: sobe 14px + fade, escalonado)
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   DESKTOP — layout editorial próprio (≥768 tablet, ≥1024 revista)
   ===================================================================== */
@media (min-width: 768px) {
  :root { --gutter: clamp(2.5rem, 6vw, 5rem); }

  .areas__grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }

  .depos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  :root { --measure: 40rem; }

  /* margens largas de revista, conteúdo respira */
  .hero,
  .dor,
  .consulta,
  .areas,
  .atende,
  .principios,
  .historias,
  .faq,
  .contato {
    padding-left: clamp(3.5rem, 7vw, 7rem);
    padding-right: clamp(3.5rem, 7vw, 7rem);
  }

  /* 1 · HERO assimétrico — texto 7 / foto 5 sangrando à borda */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
    padding-top: clamp(4rem, 7vw, 6.5rem);
  }
  .hero__title { font-size: clamp(3.5rem, 2rem + 4vw, 5rem); }
  .hero__media { aspect-ratio: 3 / 4; }

  /* 2 · dor — título grande à esquerda, corpo deslocado à direita */
  .dor {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    column-gap: clamp(3rem, 6vw, 6rem);
    align-items: end;
  }
  .dor__eyebrow { grid-column: 1 / -1; }
  .dor__title { margin: 0; }
  .dor__body { margin-top: 0; }

  /* 3 · consulta — timeline horizontal de 4 passos */
  .consulta__head {
    max-width: 60rem;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .step {
    padding: 1.75rem 1.5rem 0 0;
    border-top: 1px solid rgba(244, 239, 230, 0.2);
    margin-right: 1.5rem;
  }
  .step:last-child { margin-right: 0; }

  /* 4 · áreas — grid 3×2 */
  .areas__head { max-width: 50rem; }
  .areas__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  /* 5 · quem atende — retrato grande à esquerda, texto 1ª pessoa à direita */
  .atende {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: center;
    column-gap: clamp(3rem, 6vw, 6rem);
  }
  .atende__figure { order: 0; }
  .atende__media { aspect-ratio: 4 / 5; }

  /* 6 · princípios — três colunas */
  .principios__head { max-width: 50rem; }
  .principios__list {
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
  }
  .prin { flex: 1; }

  /* 7 · histórias — colunas tipo jornal (3) */
  .historias__head { max-width: 56rem; }
  .depos { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }

  /* 8 · faq — cabeçalho lateral fixo de leitura */
  .faq {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
    column-gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
  .faq__list { margin-top: 0; }
  .faq__head { position: sticky; top: 6rem; }

  /* 9 · contato — convite à esquerda, formulário à direita */
  .contato {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    column-gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
  .form { position: sticky; top: 6rem; }
}

@media (min-width: 1280px) {
  .hero__title { font-size: clamp(4rem, 2.5rem + 3vw, 5.25rem); }
}

/* =====================================================================
   REDUCED MOTION — tudo estático, hierarquia intacta
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .kicker__rule,
  .reveal.is-in .kicker__rule,
  .is-in .kicker__rule { transform: scaleX(1); }
}
