/* =================================================================
   Laura Salvino · Nutricionista
   Paleta da logo: oliva #3B3C12 + sálvia #B2C991
   Display: Fraunces · Texto: Hanken Grotesk
   ================================================================= */

:root {
  --olive:      #3B3C12;
  --olive-deep: #2b2c0c;
  --olive-soft: #4c4e1f;
  --sage:       #B2C991;
  --sage-deep:  #80996a;
  --sage-pale:  #d2dec0;
  --bone:       #F4F2E8;
  --bone-2:     #efece0;
  --sand:       #E8E4D4;
  --gold:       #c0892e;
  --white:      #ffffff;

  --ink: var(--olive);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;

  --ease: cubic-bezier(.22, .68, .26, 1);
  --shadow-soft: 0 24px 60px -28px rgba(43, 44, 12, .42);
  --shadow-card: 0 18px 44px -30px rgba(43, 44, 12, .5);

  --ff-display: "Fraunces", Georgia, serif;
  --ff-text: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-text);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.62;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--olive); color: var(--bone); }

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

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--olive); color: var(--bone);
  padding: 10px 16px; border-radius: 0 0 10px 10px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- shared containers ---------- */
.nav__inner, .hero__grid, .sobre__grid, .metodo__head, .metodo__track,
.esp__head, .esp__grid, .atend__grid, .cta__inner, .footer__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: clamp(76px, 10vw, 132px); }

/* ---------- type helpers ---------- */
.eyebrow {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--sage); }

.section__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.018em;
  color: var(--olive);
  margin-bottom: 1.4rem;
}
.section__title em {
  font-style: italic;
  color: var(--sage-deep);
}
.section__title--light { color: var(--bone); }
.section__title--light em { color: var(--sage); }

p { max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--ff-text);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .005em;
  padding: .95em 1.7em;
  border-radius: 999px;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .3s var(--ease),
              color .3s var(--ease), box-shadow .35s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn--primary { background: var(--olive); color: var(--bone); }
.btn--primary:hover { background: var(--olive-deep); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn--ghost { border-color: var(--olive); color: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: var(--bone); transform: translateY(-3px); }
.btn--small { padding: .62em 1.25em; font-size: .9rem; }
.btn--lg { padding: 1.1em 2.3em; font-size: 1.05rem; }

/* ---------- reveal-on-scroll ----------
   Estado base escondido (baixa especificidade); .is-visible mostra.
   .no-js força tudo visível quando o JavaScript está desligado. */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* =================================================================
   NAV
   ================================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 14px;
}
.nav.is-scrolled {
  background: rgba(244, 242, 232, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(59, 60, 18, .08), 0 14px 40px -34px rgba(43, 44, 12, .6);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 38px; height: auto; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-6deg); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--ff-display); font-weight: 600; font-size: 1.18rem; color: var(--olive); }
.brand__role { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-deep); }

.nav__menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav__menu > a:not(.btn) {
  font-weight: 500;
  font-size: .98rem;
  color: var(--olive);
  position: relative;
  padding-block: 4px;
}
.nav__menu > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--sage-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__menu > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2.4px; background: var(--olive); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: min(96svh, 900px);
  display: flex;
  align-items: center;
  padding: 104px 0 48px;
  overflow: hidden;
  background: var(--bone);
}
/* foto inteira da hero, encostada a direita (cena completa = pessoa menor) */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 75% 22%; transform: scale(1.38); transform-origin: 78% 35%; }
/* veu que clareia o lado esquerdo para o texto ficar legivel */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(98deg,
      var(--bone) 0%,
      rgba(244, 242, 232, .92) 20%,
      rgba(244, 242, 232, .42) 31%,
      rgba(244, 242, 232, 0) 44%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.hero__copy { max-width: 600px; }

.hero__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--olive);
  margin-bottom: 1.6rem;
}
.hero__verb {
  position: relative;
  font-style: italic;
  display: inline-block;
  padding-bottom: .04em;
}
.hero__verb .flourish {
  position: absolute;
  left: -1%;
  bottom: -.12em;
  width: 102%;
  height: .42em;
  color: var(--sage-deep);
  overflow: visible;
}
.hero__verb .flourish path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}
.flourish.is-drawn path {
  transition: stroke-dashoffset 1.2s var(--ease) .35s;
  stroke-dashoffset: 0;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--olive-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero__trust {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--olive-soft);
}
.hero__trust .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(128, 153, 106, .22);
}

/* hero stagger */
.hero__copy [data-reveal]:nth-child(1) { transition-delay: .05s; }
.hero__copy [data-reveal]:nth-child(2) { transition-delay: .15s; }
.hero__copy [data-reveal]:nth-child(3) { transition-delay: .28s; }
.hero__copy [data-reveal]:nth-child(4) { transition-delay: .4s; }
.hero__copy [data-reveal]:nth-child(5) { transition-delay: .52s; }

/* moldura de foto (usada na seção Sobre) */
.portrait {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--sand);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* hero marquee band — loop infinito sem emenda:
   dois grupos identicos lado a lado, espacamento embutido em cada item,
   animacao de 0 a -50% (= exatamente a largura de um grupo). */
.hero__marquee {
  background: var(--sage);
  overflow: hidden;
  padding-block: 15px;
  border-block: 1.5px solid rgba(59, 60, 18, .14);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  flex: none;
}
.marquee__group li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--olive);
}
.marquee__group li::after {
  content: "\2022";
  font-style: normal;
  font-size: .5em;
  color: var(--olive-soft);
  opacity: .5;
  margin: 0 clamp(18px, 2.6vw, 36px);
  transform: translateY(-2px);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================================================================
   SOBRE
   ================================================================= */
.sobre__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5.5vw, 84px);
  align-items: center;
}
.sobre__media { position: relative; }
.sobre__media::before {
  content: "";
  position: absolute;
  inset: 16% -20px -20px 16%;
  border: 1.6px solid var(--sage-deep);
  border-radius: 20px 20px 20px 64px;
  z-index: 0;
}
/* foto inteira tambem aqui, proporcao real 3:2 */
.portrait--sobre {
  aspect-ratio: 1 / 1;
  border-radius: 20px 20px 20px 64px;
}

.sobre__copy p { color: var(--olive-soft); margin-bottom: 1.1rem; }
.sobre__copy .section__title { margin-bottom: 1.6rem; }

.creds {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  border-top: 1.5px solid rgba(59, 60, 18, .16);
}
.cred {
  display: grid;
  grid-template-columns: minmax(120px, 30%) 1fr;
  gap: 16px;
  padding-block: 16px;
  border-bottom: 1.5px solid rgba(59, 60, 18, .16);
  align-items: baseline;
}
.cred dt {
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--sage-deep);
}
.cred dd { font-size: 1.04rem; color: var(--olive); font-weight: 500; }

/* =================================================================
   MÉTODO — assinatura: o fio contínuo
   ================================================================= */
.metodo {
  background: var(--olive);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  padding-top: clamp(40px, 5vw, 64px);
}
.metodo::before {
  /* painel de imagem de altura total na metade direita */
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  background:
    /* DESATIVADO (preservado): camada de rotulos sobreposta
    url("assets/metodo-labels.png") center center / cover no-repeat, */
    linear-gradient(180deg,
      var(--olive) 0%,
      rgba(59, 60, 18, .8) 6%,
      rgba(59, 60, 18, .3) 12%,
      rgba(59, 60, 18, 0) 20%),
    linear-gradient(0deg,
      rgba(59, 60, 18, .65) 0%,
      rgba(59, 60, 18, 0) 16%),
    linear-gradient(90deg,
      var(--olive) 0%,
      rgba(59, 60, 18, .55) 22%,
      rgba(59, 60, 18, 0) 50%),
    url("assets/metodo.webp") center center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}
/* DESATIVADO (preservado): camada de rotulos + setas redesenhados.
   Reativar removendo este comentario junto com o bloco HTML .metodo__pins.
.metodo__pins {
  position: absolute;
  top: 0; right: 0;
  width: 56%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.metodo__arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.metodo__arrows path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.45));
}
.mlabel {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--ff-text);
  font-size: clamp(.78rem, 1.1vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.5);
}
*/
.metodo::after {
  /* monograma fantasma ao fundo */
  content: "";
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: min(38vw, 420px);
  aspect-ratio: 695 / 902;
  background: url("assets/monogram-sage.png") center / contain no-repeat;
  opacity: .07;
  pointer-events: none;
}
.metodo__head { position: relative; z-index: 1; margin-bottom: clamp(40px, 6vw, 72px); }
.metodo__intro { color: var(--sage-pale); max-width: 50ch; font-size: 1.1rem; }

.metodo__track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 60px);
  padding-left: 76px;
}
.metodo__spine {
  position: absolute;
  left: 35px;
  top: 6px;
  bottom: 6px;
  width: 2.5px;
  background: linear-gradient(var(--sage), var(--sage-deep));
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.15s var(--ease);
}
.is-drawn .metodo__spine { transform: scaleY(1); }

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}
.step__node {
  position: absolute;
  left: -52px;
  top: .55em;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--olive);
  border: 2.5px solid var(--sage);
  transform: scale(0);
  transition: transform .5s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.is-drawn .step__node { transform: scale(1); }
.step:hover .step__node { background: var(--sage); box-shadow: 0 0 0 6px rgba(178, 201, 145, .2); }

.step__index {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--sage);
  opacity: .85;
}
.step__body h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: .5rem;
  color: var(--bone);
}
.step__body p { color: var(--sage-pale); max-width: 54ch; }

/* draw-in stagger for steps */
.metodo__track .step { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.is-drawn .step { opacity: 1; transform: none; }
.no-js .metodo__track .step { opacity: 1; transform: none; }
.is-drawn .step:nth-child(2) { transition-delay: .18s; }
.is-drawn .step:nth-child(3) { transition-delay: .34s; }
.is-drawn .step:nth-child(4) { transition-delay: .5s; }
.is-drawn .step:nth-child(5) { transition-delay: .66s; }
.is-drawn .step__node { transition-delay: inherit; }

/* =================================================================
   ESPECIALIDADES
   ================================================================= */
.esp { background: var(--bone); }
.esp__head { margin-bottom: clamp(34px, 5vw, 60px); }
.esp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--r-md);
  padding: clamp(26px, 3vw, 38px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
  border-color: var(--sage);
}
.card__num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--sage-deep);
  display: inline-block;
  margin-bottom: 1.6rem;
  padding-bottom: .35rem;
  border-bottom: 2px solid var(--sage);
}
.card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--olive);
  margin-bottom: .7rem;
  line-height: 1.1;
}
.card p { color: var(--olive-soft); font-size: 1rem; }

/* =================================================================
   ATENDIMENTO
   ================================================================= */
.atend { background: var(--sand); }
.atend__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.atend__copy p { color: var(--olive-soft); }
.atend__cards { display: grid; gap: 18px; }
.place {
  background: var(--bone);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 34px);
  border: 1.5px solid rgba(59, 60, 18, .1);
}
.place h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--olive);
  margin-bottom: .7rem;
}
.place__addr { color: var(--olive-soft); margin-bottom: 1.1rem; line-height: 1.55; }
.link-arrow {
  font-weight: 600;
  font-size: .95rem;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 2px solid var(--sage);
  padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform .3s var(--ease); }
.link-arrow:hover { border-color: var(--sage-deep); }
.link-arrow:hover::after { transform: translateX(4px); }

/* =================================================================
   CTA / CONTATO
   ================================================================= */
.cta {
  background:
    radial-gradient(90% 120% at 50% -10%, var(--sage-deep) 0%, rgba(128,153,106,0) 55%),
    var(--olive);
  color: var(--bone);
  text-align: center;
}
.cta__inner { max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.cta__mark { width: clamp(78px, 9vw, 112px); height: auto; margin-bottom: 1.5rem; opacity: .9; }
.cta__title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.02em;
  margin-bottom: 1.3rem;
  color: var(--bone);
}
.cta__title em { font-style: italic; color: var(--sage); }
.cta__text { color: var(--sage-pale); font-size: 1.12rem; max-width: 52ch; margin-bottom: 2rem; }
.cta__actions { margin-bottom: 2.2rem; }
.cta .btn--primary { background: var(--sage); color: var(--olive); }
.cta .btn--primary:hover { background: var(--sage-pale); }

.cta__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  font-size: .98rem;
}
.cta__contacts a {
  color: var(--sage-pale);
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
  padding-bottom: 2px;
}
.cta__contacts a:hover { color: var(--bone); border-color: var(--sage); }

/* =================================================================
   FOOTER
   ================================================================= */
.footer { background: var(--olive-deep); color: var(--sage-pale); }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(40px, 5vw, 64px);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 32px; height: auto; }
.footer__name { font-family: var(--ff-display); font-size: 1.2rem; color: var(--bone); font-weight: 600; }
.footer__role { font-size: .82rem; letter-spacing: .04em; }
.footer__todo { color: var(--gold); font-style: italic; }

.footer__nav, .footer__social { display: flex; flex-wrap: wrap; gap: 14px 22px; font-size: .95rem; }
.footer__nav a, .footer__social a {
  position: relative;
  transition: color .3s var(--ease);
}
.footer__nav a:hover, .footer__social a:hover { color: var(--bone); }
.footer__social a { font-weight: 600; color: var(--sage); }

.footer__base {
  border-top: 1px solid rgba(178, 201, 145, .16);
}
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: space-between;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 22px var(--pad) 30px;
  font-size: .82rem;
  color: rgba(210, 222, 192, .6);
}

/* =================================================================
   WHATSAPP FLUTUANTE
   ================================================================= */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--olive);
  color: var(--sage);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); background: var(--olive-deep); }

/* =================================================================
   RESPONSIVO
   ================================================================= */
@media (max-width: 980px) {
  .esp__grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: var(--pad);
    left: var(--pad);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--bone);
    border: 1.5px solid var(--sand);
    border-radius: var(--r-md);
    padding: 16px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .nav__menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__menu > a:not(.btn) { padding: 8px 6px; }
  .nav__menu > a:not(.btn)::after { display: none; }
  .nav__menu .btn { margin-top: 6px; }
  .nav.is-scrolled, .nav:has(.nav__menu.is-open) {
    background: rgba(244, 242, 232, .94);
    backdrop-filter: blur(12px);
  }

  /* hero: MESMA imagem ancorada na parede (centro-esquerda); o texto fica
     sobre a parede e a Laura desliza pra direita / sai ao estreitar a tela */
  .hero {
    min-height: min(92svh, 800px);
    align-items: center;
    padding: 100px 0 40px;
  }
  .hero__bg img { object-position: 58% 26%; transform: scale(1.28); transform-origin: 54% 30%; }
  .hero__scrim {
    background: linear-gradient(96deg,
      var(--bone) 0%,
      rgba(244, 242, 232, .9) 34%,
      rgba(244, 242, 232, .5) 52%,
      rgba(244, 242, 232, 0) 70%);
  }
  .hero__copy { max-width: 470px; }

  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__media { max-width: 420px; margin-inline: auto; }

  .atend__grid { grid-template-columns: 1fr; gap: 32px; }

  /* no celular: passos em largura total; foto como faixa no FINAL (mostra mais da imagem) */
  .metodo { padding-top: clamp(48px, 9vw, 72px); padding-bottom: calc(clamp(300px, 68vw, 460px) + 28px); }
  .metodo::before {
    top: auto; bottom: 0;
    width: 100%; height: clamp(300px, 68vw, 460px);
    background: url("assets/metodo-sm.webp") center center / cover no-repeat;
  }
  .metodo__head { margin-bottom: clamp(28px, 5vw, 44px); }
}

@media (max-width: 560px) {
  body { font-size: 1.02rem; }
  /* tela pequena: a Laura ja deslizou pra fora; parede ocupa tudo atras do texto */
  .hero { min-height: min(86svh, 720px); padding: 92px 0 28px; }
  .hero__bg img { object-position: 22% 26%; transform: scale(1.35); transform-origin: 18% 30%; }
  .hero__actions .btn { flex: 1 1 auto; }
  .cred { grid-template-columns: 1fr; gap: 2px; }
  .cred dd { font-size: 1rem; }
  /* celular pequeno: corta 10px do topo da faixa da imagem */
  .metodo::before {
    background:
      linear-gradient(var(--olive), var(--olive)) center top / 100% 10px no-repeat,
      url("assets/metodo-sm.webp") center bottom / cover no-repeat;
  }
  .metodo__track { padding-left: 56px; }
  .metodo__spine { left: 25px; }
  .step__node { left: -40px; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step__index { font-size: 1.7rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   MOVIMENTO REDUZIDO
   ================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .metodo__spine { transform: scaleY(1) !important; }
  .step { opacity: 1 !important; transform: none !important; }
  .step__node { transform: scale(1) !important; }
  .flourish path { stroke-dashoffset: 0 !important; }
  .marquee__track { animation: none !important; transform: none !important; }
}
