/* ============================================================
   Liskelly Mendes — Psicóloga | CRP 08/10398
   Design system: minimalismo quente
   ============================================================ */

:root {
  /* Cores */
  --cream: #F7F4EF;
  --sand: #EEE8DF;
  --sage: #405C53;
  --sage-deep: #33483F;
  --terracotta: #B98672;
  --terracotta-deep: #8A5744;
  --rose: #A58787;
  --rose-light: #EBD6D6;
  --ink: #26312D;
  --white: #FFFDFC;
  --line: rgba(38, 49, 45, 0.10);
  --line-strong: rgba(38, 49, 45, 0.18);

  /* Tipografia */
  --font-display: "Lora", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-card: 22px;
  --radius-photo: 32px;
  --shadow-soft: 0 18px 40px -24px rgba(38, 49, 45, 0.25);
  --header-h: 80px;

  /* Movimento */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(72px, 10vw, 120px); scroll-margin-top: calc(var(--header-h) + 16px); }
.section--sand { background: var(--sand); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--sage);
  color: var(--white);
  border-radius: 10px;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Tipografia utilitária ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--rose-light); }

/* ---------- Botões e links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--white);
  background: var(--sage);
  border: 1px solid var(--sage);
  border-radius: 999px;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out), border-color 220ms var(--ease-out);
}
.btn:hover { background: var(--sage-deep); border-color: var(--sage-deep); transform: scale(1.015); }
.btn:active { transform: scale(0.99); }

.btn--small { min-height: 44px; padding: 10px 22px; font-size: 14.5px; }

.btn--ghost {
  color: var(--sage);
  background: transparent;
}
.btn--ghost:hover { color: var(--white); }

.btn--light {
  color: var(--sage);
  background: var(--cream);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--white); border-color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--sage);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease-out);
}
.link-arrow span { transition: transform 220ms var(--ease-out); }
.link-arrow:hover { border-color: var(--sage); }
.link-arrow:hover span { transform: translateX(3px); }
.link-arrow--light { color: var(--cream); }
.link-arrow--light:hover { border-color: var(--cream); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.header.is-scrolled {
  background: rgba(247, 244, 239, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 32px -24px rgba(38, 49, 45, 0.35);
}

.brand { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.brand__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.brand__role { font-size: 12px; letter-spacing: 0.04em; color: rgba(38, 49, 45, 0.66); }

.nav__list { display: flex; gap: 28px; }
.nav__list a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  padding-block: 6px;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease-out);
}
.nav__list a:hover::after,
.nav__list a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Menu mobile ---------- */
.menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--cream);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-out), visibility 300ms;
}
.menu-mobile.is-open { opacity: 1; visibility: visible; }
.menu-mobile__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(var(--header-h) + 24px) 32px 40px;
}
.menu-mobile__brand {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 36px;
}
.menu-mobile__list { display: flex; flex-direction: column; gap: 6px; }
.menu-mobile__list a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 34px);
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 350ms var(--ease-out), opacity 350ms var(--ease-out);
}
.menu-mobile.is-open .menu-mobile__list a { transform: translateY(0); opacity: 1; }
.menu-mobile.is-open .menu-mobile__list li:nth-child(2) a { transition-delay: 40ms; }
.menu-mobile.is-open .menu-mobile__list li:nth-child(3) a { transition-delay: 80ms; }
.menu-mobile.is-open .menu-mobile__list li:nth-child(4) a { transition-delay: 120ms; }
.menu-mobile.is-open .menu-mobile__list li:nth-child(5) a { transition-delay: 160ms; }
.menu-mobile.is-open .menu-mobile__list li:nth-child(6) a { transition-delay: 200ms; }
.menu-mobile__cta { margin-top: auto; }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 84px));
  padding-bottom: clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.hero__title {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(38, 49, 45, 0.78);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(38, 49, 45, 0.72);
}
.hero__bullets li { display: flex; align-items: center; gap: 9px; }
.hero__bullets li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero__media { position: relative; justify-self: end; }
.hero__orbit {
  position: absolute;
  inset: -8% -14% auto auto;
  width: 118%;
  height: auto;
  color: var(--sage);
  opacity: 0.35;
  pointer-events: none;
}
.hero__photo {
  position: relative;
  width: min(100%, 440px);
  border-radius: 32px 32px 120px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% 20%;
}

/* Entrada do hero */
[data-hero] {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-in 750ms var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}
.hero__media[data-hero] {
  transform: translateY(0) scale(0.97);
  animation-name: hero-media-in;
  animation-duration: 900ms;
}
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-media-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Faixa de atendimentos ---------- */
.strip {
  background: var(--white);
  border-block: 1px solid var(--line);
  padding-block: 34px;
}
.strip__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(38, 49, 45, 0.55);
  margin-bottom: 18px;
  text-align: center;
}
.strip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
}
.strip__list span { font-size: 13.5px; color: rgba(38, 49, 45, 0.62); }

/* ---------- Identificação ---------- */
.identify__head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 68px); }
.identify__head h2 { margin-bottom: 22px; }
.identify__head p { color: rgba(38, 49, 45, 0.78); max-width: 62ch; }

.identify__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card__icon {
  width: 44px; height: 44px;
  color: var(--sage);
  margin-bottom: 22px;
  transition: transform 220ms var(--ease-out);
}
.card:hover .card__icon { transform: translateY(-2px); }
.card h3 { font-size: 1.18rem; margin-bottom: 12px; }
.card p { font-size: 15px; color: rgba(38, 49, 45, 0.72); }

/* ---------- Sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}
.about__media { position: relative; }
.about__rings {
  position: absolute;
  top: -46px; left: -46px;
  width: 190px;
  color: var(--terracotta);
  opacity: 0.45;
  pointer-events: none;
}
.about__media img {
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-photo);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 42% 30%;
  box-shadow: var(--shadow-soft);
}
.about__content h2 { margin-bottom: 24px; }
.about__text p + p { margin-top: 16px; }
.about__text { color: rgba(38, 49, 45, 0.8); max-width: 56ch; }

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.fact {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px;
}
.fact__label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(38, 49, 45, 0.55);
  margin-bottom: 6px;
}
.fact strong { font-size: 15.5px; font-weight: 700; color: var(--sage); }

/* ---------- Atendimentos ---------- */
.services { background: var(--sage); color: var(--cream); }
.services__head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 64px); }
.services__head h2 { color: var(--cream); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: rgba(255, 253, 252, 0.06);
  border: 1px solid rgba(255, 253, 252, 0.16);
  border-radius: 24px;
  padding: 36px 34px;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); background: rgba(255, 253, 252, 0.1); }
.service-card__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
  border: 1px solid rgba(235, 214, 214, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.service-card h3 { color: var(--cream); font-size: 1.45rem; margin-bottom: 14px; }
.service-card p { color: rgba(247, 244, 239, 0.78); font-size: 15.5px; margin-bottom: 26px; max-width: 48ch; }

/* ---------- Foto grande ---------- */
.visual-break { padding-block: clamp(72px, 9vw, 110px); }
.visual-break__figure {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.visual-break__figure img {
  width: 100%;
  height: clamp(380px, 48vw, 520px);
  object-fit: cover;
}
.visual-break__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 49, 45, 0.55), transparent 55%);
}
.visual-break__figure figcaption {
  position: absolute;
  left: clamp(24px, 5vw, 56px);
  right: clamp(24px, 5vw, 56px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  color: var(--white);
  max-width: 24ch;
}

/* ---------- Abordagens ---------- */
.approaches__head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 60px); }
.approaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.approach {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(32px, 4vw, 48px);
}
.approach h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--sage); }
.approach p { color: rgba(38, 49, 45, 0.78); max-width: 52ch; }

.approaches__diagram {
  max-width: 640px;
  margin-inline: auto;
  color: var(--sage);
}
.approaches__diagram svg { width: 100%; height: auto; }
.diagram-lines path { opacity: 0.45; }
.diagram-diagonal { opacity: 0.22 !important; }
.diagram-labels text {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

/* ---------- Como funciona ---------- */
.process__head { max-width: 620px; margin-bottom: clamp(48px, 6vw, 72px); }
.process__track { position: relative; }
.process__line {
  position: absolute;
  top: 27px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--line-strong);
}
.process__line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
}
.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px; height: 55px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--sage);
  background: var(--sand);
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  margin-bottom: 22px;
}
.process__step h3 { font-size: 1.16rem; margin-bottom: 10px; }
.process__step p { font-size: 15px; color: rgba(38, 49, 45, 0.72); }

/* ---------- Presencial / Online ---------- */
.modalities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.modality {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.modality:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.modality__media img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  object-fit: cover;
}
.modality:last-child .modality__media img { object-position: 50% 20%; }
.modality__body { padding: 32px 34px 38px; }
.modality__body .eyebrow { margin-bottom: 10px; }
.modality__body h3 { font-size: 1.55rem; margin-bottom: 14px; }
.modality__body p { color: rgba(38, 49, 45, 0.76); margin-bottom: 24px; max-width: 46ch; }

/* ---------- Contato ---------- */
.contact__head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 60px); }
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.contact__map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.contact__map iframe { display: block; }
.contact__address {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(38, 49, 45, 0.8);
}
.contact__address strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 42px);
}
.contact__form-title { font-size: 1.4rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field__optional { font-weight: 400; color: rgba(38, 49, 45, 0.55); }
.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 13px 16px;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(64, 92, 83, 0.14);
}
.field--check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block: 22px;
}
.field--check input {
  width: 19px; height: 19px;
  margin-top: 3px;
  accent-color: var(--sage);
  flex-shrink: 0;
}
.field--check label { font-weight: 500; font-size: 14px; margin-bottom: 0; }
.contact__submit { width: 100%; }
.contact__form-note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--sage);
  min-height: 20px;
}
.contact__form-note.is-error { color: #8c4a3c; }

/* ---------- FAQ ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.faq__aside { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__aside h2 { margin-bottom: 30px; }
.faq__photo img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 30% center;
}

.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__item:first-child { border-top: 1px solid var(--line-strong); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18.5px;
  transition: color 200ms var(--ease-out);
}
.faq__question:hover { color: var(--sage); }
.faq__question svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--terracotta);
  transition: transform 300ms var(--ease-out);
}
.faq__question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-out);
}
.faq__answer p {
  padding: 0 4px 24px;
  font-size: 15.5px;
  color: rgba(38, 49, 45, 0.76);
  max-width: 60ch;
}

/* ---------- CTA final ---------- */
.final-cta {
  position: relative;
  background: var(--sage);
  color: var(--cream);
  padding-block: clamp(100px, 14vw, 170px);
  overflow: hidden;
  text-align: center;
}
.final-cta__circle {
  position: absolute;
  top: 50%; left: 50%;
  width: min(120vw, 900px);
  transform: translate(-50%, -50%);
  color: var(--cream);
  opacity: 0.14;
  pointer-events: none;
}
.final-cta__circle-inner { opacity: 0.6; }
.final-cta__inner { position: relative; max-width: 720px; }
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 22px;
}
.final-cta p { color: rgba(247, 244, 239, 0.8); margin-bottom: 38px; }
.final-cta__button { min-height: 58px; padding: 16px 36px; font-size: 16.5px; }
.final-cta__button span { transition: transform 220ms var(--ease-out); }
.final-cta__button:hover span { transform: translateX(3px); }
.final-cta__crp {
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 239, 0.78) !important;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding-top: clamp(56px, 7vw, 84px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__mark { width: 40px; height: 40px; color: var(--sage); margin-bottom: 18px; }
.footer__name { font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.footer__role { font-size: 13px; color: rgba(38, 49, 45, 0.62); margin-top: 2px; }
.footer__tagline { font-size: 14.5px; color: rgba(38, 49, 45, 0.72); margin-top: 16px; max-width: 26ch; }
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(38, 49, 45, 0.55);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 15px;
  color: rgba(38, 49, 45, 0.8);
  transition: color 200ms var(--ease-out);
}
.footer__col a:hover { color: var(--sage); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 13.5px;
  color: rgba(38, 49, 45, 0.6);
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0;
  width: 56px; height: 56px;
  background: var(--sage);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(38, 49, 45, 0.5);
  transition: width 300ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
  overflow: hidden;
  white-space: nowrap;
}
.whatsapp-float svg { width: 26px; height: 26px; flex-shrink: 0; margin-inline: 15px; }
.whatsapp-float__label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  max-width: 0;
  transition: opacity 250ms var(--ease-out), max-width 300ms var(--ease-out);
}
.whatsapp-float:hover { width: 218px; background: var(--sage-deep); }
.whatsapp-float:hover .whatsapp-float__label { opacity: 1; max-width: 160px; }
.whatsapp-float:hover svg { margin-inline: 15px 0; }
.whatsapp-float.is-pulsing { animation: wa-pulse 1400ms var(--ease-out) 1; }
@keyframes wa-pulse {
  0% { box-shadow: 0 14px 30px -12px rgba(38, 49, 45, 0.5), 0 0 0 0 rgba(64, 92, 83, 0.45); }
  70% { box-shadow: 0 14px 30px -12px rgba(38, 49, 45, 0.5), 0 0 0 18px rgba(64, 92, 83, 0); }
  100% { box-shadow: 0 14px 30px -12px rgba(38, 49, 45, 0.5), 0 0 0 0 rgba(64, 92, 83, 0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .nav { display: none; }
  .identify__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 56px; }
  .hero__media { justify-self: center; order: -1; }
  .hero__content { order: 1; }
  .hero__photo { width: min(100%, 380px); }
  .about__grid { grid-template-columns: 1fr; }
  .about__media img { max-width: 420px; }
  .services__grid,
  .approaches__grid,
  .modalities__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .faq__photo { display: none; }

  /* Linha do processo vira vertical */
  .process__steps { grid-template-columns: 1fr; gap: 36px; }
  .process__line {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 1.5px; height: auto;
  }
  .process__line-fill {
    width: 100%; height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .process__step { padding-left: 84px; position: relative; }
  .process__number {
    position: absolute;
    left: 0; top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .header__cta { display: none; }
  .menu-toggle { display: flex; }
  .strip__list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .identify__cards { grid-template-columns: 1fr; }
  .about__facts { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; min-height: 52px; }
  .contact__actions .btn { width: 100%; }
  .whatsapp-float { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 40px); }
  .hero__title { font-size: clamp(2rem, 9.4vw, 2.5rem); }
  .service-card, .approach, .modality__body, .contact__form { padding-inline: 24px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  [data-hero], .reveal { opacity: 1; transform: none; }
  .process__line-fill { transform: none; }
}
