/* ============================================================
   Lorena Macedo — Psicóloga
   Landing page · folha de estilo principal
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Paleta */
  --lav-50:  #FBF9FC;   /* fundo base            */
  --lav-100: #F6EFFC;   /* fundo alternado       */
  --lav-200: #E5CDFF;   /* bloco de destaque     */
  --lav-400: #A18CB7;   /* primária              */
  --lav-600: #8E76A8;   /* primária · hover      */
  --lav-700: #6E5686;   /* profunda              */

  --ink-900: #2E2735;
  --ink-800: #3A3340;
  --ink-700: #4A4254;
  --ink-600: #5B5265;
  --ink-500: #6B6377;
  --ink-400: #8B8394;

  --line:       rgba(161, 140, 183, 0.30);
  --line-soft:  rgba(161, 140, 183, 0.16);
  --line-deep:  rgba(110, 86, 134, 0.28);
  --line-light: rgba(255, 255, 255, 0.28);

  /* Tipografia */
  --font-body:   'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-script: 'Parisienne', 'Brush Script MT', cursive;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Escala fluida — preserva os tamanhos do design no desktop
     e reduz proporcionalmente até o mobile. */
  --fs-display: clamp(2.5rem,  1.30rem + 4.80vw, 4.125rem);  /*  40 → 66 */
  --fs-h2-xl:   clamp(2.05rem, 1.40rem + 2.60vw, 3.125rem);  /*  33 → 50 */
  --fs-h2-lg:   clamp(1.95rem, 1.40rem + 2.20vw, 2.875rem);  /*  31 → 46 */
  --fs-h2:      clamp(1.90rem, 1.40rem + 2.00vw, 2.750rem);  /*  30 → 44 */
  --fs-h2-sm:   clamp(1.70rem, 1.40rem + 1.20vw, 2.250rem);  /*  27 → 36 */
  --fs-lede:    clamp(1rem,    0.96rem + 0.18vw, 1.0625rem); /*  16 → 17 */

  /* Ritmo vertical das seções */
  --section-y:  clamp(4.5rem, 3.10rem + 5.60vw, 8.125rem);   /*  72 → 130 */
  --gutter:     clamp(1.25rem, 0.60rem + 2.60vw, 2.5rem);    /*  20 → 40 */

  --radius:     20px;
  --header-h:   86px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* impede que os âncoras fiquem escondidos sob o header fixo */
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--lav-50);
  color: var(--ink-800);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
p { text-wrap: pretty; }
img, svg { max-width: 100%; }
img { height: auto; }

a {
  color: var(--lav-600);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--lav-700); }

strong { font-weight: 700; }

button { font: inherit; color: inherit; }

/* Foco visível e consistente em todo o site */
:focus-visible {
  outline: 2px solid var(--lav-700);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--purple :focus-visible,
.footer :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--lav-700);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 0 0 10px 10px;
  transition: transform 0.22s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); color: #fff; }

/* ── Containers ─────────────────────────────────────────── */
/* A largura nomeada é a do CONTEÚDO (como no design), por isso as
   goteiras entram somadas ao max-width e não descontadas dele. */
.container {
  width: 100%;
  max-width: calc(1160px + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide   { max-width: calc(1240px + var(--gutter) * 2); }
.container--faq    { max-width: calc(1020px + var(--gutter) * 2); }
.container--narrow { max-width: calc(900px  + var(--gutter) * 2); }
.container--tight  { max-width: calc(860px  + var(--gutter) * 2); }

.center { text-align: center; }

/* ── Seções ─────────────────────────────────────────────── */
.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
}
.section--lilac  { background: var(--lav-200); }
.section--mist   { background: var(--lav-100); }
.section--purple { background: var(--lav-400); }

/* ── Tipografia compartilhada ───────────────────────────── */
.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lav-400);
}
.eyebrow--deep  { color: var(--lav-700); }
.eyebrow--light { color: rgba(255, 255, 255, 0.72); }

.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--rule::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--lav-400);
  flex: none;
}

.h2 {
  margin: 26px 0 0;
  font-size: var(--fs-h2);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.h2--lg    { font-size: var(--fs-h2-lg); }
.h2--xl    { font-size: var(--fs-h2-xl); letter-spacing: -0.03em; }
.h2--sm    { font-size: var(--fs-h2-sm); }
.h2--light { color: #fff; }

/* O acento manuscrito é sempre ~1.22× o corpo do título,
   por isso usa `em` e acompanha a escala fluida. */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.22em;
  line-height: 0.95;
  color: var(--lav-400);
}
.script--deep   { color: var(--lav-700); }
.script--inline { font-size: 1.4em; line-height: 1; }
.h2--light .script { color: inherit; }

.lede {
  margin: 34px 0 0;
  font-size: var(--fs-lede);
  line-height: 1.8;
  color: var(--ink-500);
}
.center .lede { margin-inline: auto; max-width: 660px; }
.lede--dark  { color: var(--ink-700); line-height: 1.78; }
.lede--light { color: rgba(255, 255, 255, 0.9); line-height: 1.82; max-width: 640px; }

.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--lav-200);
  margin: 34px 0;
}

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 17px 36px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.24s var(--ease), color 0.24s var(--ease),
              border-color 0.24s var(--ease), transform 0.24s var(--ease),
              box-shadow 0.24s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--lav-400);
  color: #fff;
  box-shadow: 0 14px 32px -14px rgba(161, 140, 183, 0.7);
}
.btn--primary:hover { background: var(--lav-600); color: #fff; }

.btn--deep { background: var(--lav-700); color: #fff; }
.btn--deep:hover { background: var(--ink-900); color: #fff; }

.btn--light { background: #fff; color: var(--lav-700); }
.btn--light:hover { background: var(--lav-200); color: var(--lav-700); }

.btn--ghost {
  border-color: var(--lav-400);
  color: var(--lav-600);
  background: transparent;
}
.btn--ghost:hover { background: var(--lav-400); color: #fff; }

.btn--sm { padding: 12px 22px; font-size: 13.5px; font-weight: 600; }
.btn--lg { padding: 19px 40px; font-size: 15px; }

/* ── Cabeçalho ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s var(--ease);
}
/* O véu translúcido mora num pseudo-elemento: `backdrop-filter` aplicado
   ao próprio header o tornaria bloco de contenção e prenderia a gaveta
   `position: fixed` à altura da barra. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 249, 252, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color 0.3s var(--ease);
}
.site-header.is-scrolled::before { background: rgba(251, 249, 252, 0.94); }
.site-header.is-scrolled { box-shadow: 0 10px 30px -22px rgba(90, 70, 110, 0.55); }

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--ink-800);
}
.brand:hover { color: var(--ink-800); }
.brand__name {
  font-family: var(--font-script);
  font-size: 26px;
  letter-spacing: 0.5px;
  color: var(--lav-400);
}
.brand__role {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-400);
  padding-left: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__link {
  color: var(--ink-600);
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--lav-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav__link:hover { color: var(--lav-700); }
.nav__link:hover::after { transform: scaleX(1); }

/* Blocos exclusivos da gaveta mobile. No desktop somem, e o invólucro
   dos links vira `contents` para que eles sigam sendo itens flex da
   própria barra — assim o mesmo <nav> serve às duas versões. */
.nav__links { display: contents; }
.nav__head,
.nav__foot,
.nav__folhas { display: none; }

.nav-scrim { display: none; }

/* Botão hambúrguer — só aparece no mobile */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.nav-toggle:hover { background: rgba(229, 205, 255, 0.35); }

.nav-toggle__box {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
  margin-inline: auto;
}
.nav-toggle__bar,
.nav-toggle__box::before,
.nav-toggle__box::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--lav-700);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__box::before { content: ""; top: 0; }
.nav-toggle__bar { top: 5.25px; }
.nav-toggle__box::after { content: ""; bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle__box::before { transform: translateY(5.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box::after { transform: translateY(-5.25px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--lav-50);
  padding: clamp(1.75rem, 0.9rem + 2.6vw, 3rem) 0 clamp(4rem, 2.4rem + 5vw, 6.875rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -160px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--lav-200) 0%, rgba(229, 205, 255, 0) 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 0.5rem + 5vw, 5rem);
  align-items: center;
}

.hero__title {
  margin: 30px 0 0;
  font-size: var(--fs-display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--ink-900);
}
.hero__title .script {
  display: inline-block;
  margin: 8px 0 -6px;
  line-height: 0.9;
}

.hero__lead {
  margin: 34px 0 0;
  max-width: 520px;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink-700);
}
.hero__text {
  margin: 20px 0 0;
  max-width: 520px;
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--ink-500);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 42px;
}
.hero__note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
}
.hero__note strong { color: var(--ink-800); }

.hero__media { position: relative; }
.hero__frame {
  position: absolute;
  inset: auto -18px -18px auto;
  width: 78%;
  height: 82%;
  border: 1px solid var(--lav-200);
  border-radius: 220px 220px 24px 24px;
}
.hero__portrait {
  position: relative;
  border-radius: 260px 260px 20px 20px;
  overflow: hidden;
  background: var(--lav-200);
  box-shadow: 0 30px 70px -30px rgba(90, 70, 110, 0.35);
}
.hero__portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 20%;
}
.hero__badge {
  position: absolute;
  bottom: 26px;
  left: -34px;
  background: var(--lav-50);
  padding: 16px 22px;
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(90, 70, 110, 0.3);
}
.hero__crp {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-400);
}
/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  background: var(--lav-400);
  padding-block: 22px;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: lm-marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.marquee__group li[aria-hidden="true"],
.marquee__group[aria-hidden="true"] li:nth-child(even) { opacity: 0.6; }

@keyframes lm-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Seção "convite" ────────────────────────────────────── */
.invite {
  background: #F6F2FC;
  isolation: isolate;
}

/* Título em serifada — exclusivo desta seção */
.h2--serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 1.05rem + 2.6vw, 2.9rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #3B2E52;
  text-wrap: balance;
}
.h2--serif .script { font-size: 1.15em; }

/* Fio curto abaixo do olho-mágico, como no layout */
.eyebrow--under::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--lav-400);
  opacity: 0.7;
}

.invite__body { position: relative; z-index: 2; }
.invite__body .lede { max-width: 680px; }

/* Cartão branco dos três valores */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px auto 0;
  max-width: 660px;
  background: #FFF;
  border-radius: 22px;
  padding: 30px 10px;
  box-shadow: 0 20px 50px -34px rgba(90, 70, 110, 0.45);
}
.values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 4px 18px;
  border-right: 1px solid rgba(161, 140, 183, 0.28);
}
.values__item:last-child { border-right: 0; }
.values__icon {
  display: block;
  width: 32px;
  color: var(--lav-600);
}
.values__icon svg { width: 100%; height: auto; display: block; }
.values__label {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-700);
}

.invite .btn { margin-top: 42px; }

/* Botão com seta */
.btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn--arrow svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.26s var(--ease);
}
.btn--arrow:hover svg { transform: translateX(4px); }

/* ── Foto com recorte orgânico ──────────────────────────── */
.invite__media {
  position: relative;
  z-index: 1;
  margin: 56px auto 0;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
}
.invite__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  display: block;
  border-radius: 46% 42% 44% 48% / 44% 46% 42% 48%;
}
.invite__ring {
  position: absolute;
  z-index: 0;
  inset: -18px -10px -12px -22px;
  border: 1px solid rgba(161, 140, 183, 0.5);
  border-radius: 46% 42% 44% 48% / 44% 46% 42% 48%;
  pointer-events: none;
}
/* As folhas passam por cima da borda da foto, como no layout */
.invite__leaves {
  position: absolute;
  z-index: 2;
  left: -24%;
  bottom: -2%;
  width: 62%;
  height: auto;
  pointer-events: none;
}

/* Linhas finas do canto inferior esquerdo */
.invite__lines {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: min(300px, 26%);
  height: 240px;
  pointer-events: none;
}

/* No desktop a foto sai da coluna e sangra pela direita, e o texto
   recua para ocupar a área livre à esquerda. */
/* No desktop, texto e foto formam um bloco único centralizado na página.
   As colunas 1 e 5 são elásticas e iguais, então o conjunto fica sempre
   no meio; a 3 é o respiro entre os dois. */
@media (min-width: 1100px) {
  .invite {
    display: grid;
    grid-template-columns:
      minmax(var(--gutter), 1fr)
      minmax(0, 700px)
      clamp(2rem, 3.5vw, 3.25rem)
      minmax(0, clamp(320px, 34vw, 480px))
      minmax(var(--gutter), 1fr);
    align-items: center;
  }

  .invite__body {
    grid-area: 1 / 2;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
  }

  .invite__media {
    grid-area: 1 / 4;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: auto;
    aspect-ratio: auto;
    /* estica na altura do bloco de texto e avança um pouco sobre o
       respiro da seção, para acompanhar a altura toda */
    align-self: stretch;
    height: auto;
    min-height: 460px;
    margin: calc(-1 * clamp(1rem, 3vw, 2.75rem)) 0;
  }

  /* O ramo acompanha a borda da foto sem invadir a coluna de texto */
  .invite__leaves { left: -15%; width: 54%; }
}

@media (max-width: 620px) {
  .values {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 18px;
  }
  .values__item {
    flex-direction: row;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(161, 140, 183, 0.28);
    padding: 0 0 20px;
    text-align: left;
  }
  .values__item:last-child { border-bottom: 0; padding-bottom: 0; }
  .values__icon { width: 28px; flex: none; }
  .invite__lines { width: 55%; height: 180px; opacity: 0.7; }
}

/* ── Área de atuação ────────────────────────────────────── */
/* Fundo quase branco; o lilás entra só como halo nas extremidades. */
.atuacao {
  background: #FCFAFE;
  padding-block: clamp(3.5rem, 2.2rem + 4vw, 5.625rem) clamp(3rem, 2rem + 3.6vw, 5rem);
}
.atuacao__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 42% at 4% -6%,  rgba(155, 115, 196, 0.13), transparent 68%),
    radial-gradient(52% 40% at 102% 88%, rgba(176, 148, 208, 0.14), transparent 70%);
}
.atuacao .container { position: relative; z-index: 1; }
.container--atuacao { max-width: calc(1280px + var(--gutter) * 2); }

.atuacao__intro { max-width: 760px; }
.atuacao__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #8F6DB5;
}
.atuacao__title {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.375rem, 1.5rem + 2.9vw, 3.5rem);   /* 38 → 56 */
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #35234A;
}
.atuacao__lead {
  margin: 26px 0 0;
  max-width: 730px;
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);  /* 17 → 18 */
  line-height: 1.7;
  color: #5E5368;
}
.atuacao__lead strong { font-weight: 700; color: #4A3D57; }

/* ── Cards ──────────────────────────────────────────────── */
.acards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.acard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(142, 105, 180, 0.10);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(58, 35, 75, 0.08);
  overflow: hidden;
  /* altura da imagem: também posiciona o selo do ícone */
  --media-h: 250px;
}
.acard__media { height: var(--media-h); flex: none; }
.acard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Selo circular a cavalo entre a imagem e a área branca */
.acard__badge {
  position: absolute;
  top: var(--media-h);
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #9B73C4;
  background: linear-gradient(160deg, #FBF7FF 0%, #EFE4FB 100%);
  border: 1px solid rgba(142, 105, 180, 0.14);
  box-shadow: 0 6px 18px rgba(58, 35, 75, 0.10);
}
.acard__badge svg { width: 26px; height: 26px; display: block; }

.acard__body {
  /* topo maior que os 32px do restante para liberar o selo */
  padding: 54px 42px 38px;
  text-align: center;
}
.acard__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 1.75rem);   /* 24 → 28 */
  line-height: 1.2;
  color: #35234A;
}

/* Fio curto com um coração miúdo ao centro */
.acard__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px auto 0;
  width: 108px;
  color: #C9AEE4;
}
.acard__rule::before,
.acard__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}
.acard__rule svg { width: 11px; height: 11px; flex: none; display: block; }

.acard__body p {
  margin: 18px auto 0;
  max-width: 42ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: #6B6377;
}
.acard__body strong { font-weight: 700; color: #4A3D57; }

/* ── Box de sessões ─────────────────────────────────────── */
.asessions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  padding: 26px 34px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(142, 105, 180, 0.18);
  border-radius: 20px;
}
.asessions__icon {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #75509A;
  background: linear-gradient(160deg, #FBF7FF 0%, #EFE4FB 100%);
  border: 1px solid rgba(142, 105, 180, 0.14);
}
.asessions__icon svg { width: 28px; height: 28px; display: block; }

.asessions__text { flex: 1 1 auto; min-width: 0; }
.asessions__title {
  font-size: clamp(1.125rem, 1.05rem + 0.25vw, 1.25rem);  /* 18 → 20 */
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #35234A;
}
.asessions__note {
  margin-top: 8px;
  max-width: 560px;
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  color: #6B6377;
}

/* CTA principal da seção */
.btn--gradient {
  flex: none;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  border-color: transparent;
  background: linear-gradient(90deg, #684193 0%, #9167BC 100%);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(74, 45, 105, 0.55);
}
.btn--gradient:hover {
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(74, 45, 105, 0.6);
}

/* ── Sobre mim ──────────────────────────────────────────── */
.sobre__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 0.4rem + 5.2vw, 5rem);
  align-items: start;
}
.sobre__media { position: relative; }
.sobre__portrait {
  border-radius: 20px 20px 200px 200px;
  overflow: hidden;
  background: var(--lav-200);
}
.sobre__portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.sobre__caption {
  margin-top: 26px;
  font-size: 30px;
  text-align: center;
}

.sobre__copy .h2 { margin-top: 24px; }
.sobre__intro { font-size: var(--fs-lede); line-height: 1.8; color: var(--ink-700); }
.sobre__intro strong { color: var(--ink-900); }
.sobre__copy p + p { margin-top: 20px; }
.sobre__copy > p:not(.eyebrow):not(.sobre__intro) {
  font-size: 16.5px;
  line-height: 1.82;
  color: var(--ink-500);
}

.pull {
  margin-top: 28px;
  padding-left: 22px;
  border-left: 2px solid var(--lav-400);
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--ink-700);
}
.pull strong { color: var(--ink-900); }

.sobre__copy .btn { margin-top: 38px; }

/* ── Diferenciais ───────────────────────────────────────── */
.diferenciais {
  background: #FCFAFE;
  padding-block: clamp(3.5rem, 2.2rem + 4vw, 5.625rem);
}
.dif__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(52% 40% at 100% 0%,  rgba(155, 115, 196, 0.12), transparent 68%),
    radial-gradient(46% 38% at -4% 72%, rgba(176, 148, 208, 0.13), transparent 70%);
}
.dif__vines {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  width: min(240px, 22%);
  height: 220px;
  opacity: 0.55;
  pointer-events: none;
}
.diferenciais .container { position: relative; z-index: 1; }
.container--dif { max-width: calc(1280px + var(--gutter) * 2); }

/* Coluna do título + grade de cards */
.dif__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 1rem + 3.6vw, 4.5rem);
  align-items: start;
}

.dif__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #8F6DB5;
}

/* Ornamento: fio fino com um coração miúdo ao centro */
.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 92px;
  margin-top: 18px;
  color: #C9AEE4;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}
.ornament svg { width: 10px; height: 10px; flex: none; display: block; }
.ornament--wide { width: 132px; margin-top: 30px; }

.dif__title {
  margin: 26px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 1.15rem + 3.4vw, 3.875rem);   /* 36 → 62 */
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #35234A;
}
.dif__accent {
  display: block;
  margin-top: 8px;
  font-size: 1.06em;
  line-height: 1;
  color: #A88CC9;
}

/* ── Cards ──────────────────────────────────────────────── */
.dif__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dcard {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 30px;
  background: #fff;
  border: 1px solid rgba(150, 120, 180, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(60, 40, 80, 0.06);
}
.dcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dcard__num {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #FBF7FF 0%, #F0E7FB 100%);
  border: 1px solid rgba(142, 105, 180, 0.12);
  color: #A07BC7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.dcard__icon { flex: none; width: 22px; color: #B79AD6; }
.dcard__icon svg { width: 100%; height: auto; display: block; }

.dcard__title {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.1875rem, 1.05rem + 0.45vw, 1.375rem);  /* 19 → 22 */
  line-height: 1.25;
  color: #35234A;
}
.dcard__rule {
  display: block;
  width: 34px;
  height: 1px;
  margin-top: 14px;
  background: #C9AEE4;
}
.dcard p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #6B6377;
}

/* Card poético que fecha a grade */
.dcard--poema {
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px 26px;
  text-align: center;
  background: linear-gradient(160deg, #F4ECFC 0%, #E8DBF7 100%);
  border-color: rgba(142, 105, 180, 0.16);
  box-shadow: 0 10px 30px rgba(60, 40, 80, 0.05);
}
.dcard__curvas {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 62%;
  pointer-events: none;
}
.dcard__coracao {
  position: relative;
  width: 54px;
  height: 54px;
  color: #9B7BC2;
}
/* Seletor com a mesma força de `.dcard p`, senão aquela regra vence
   e a frase cai para 15px. */
.dcard--poema .dcard__poema {
  position: relative;
  margin-top: 0;
  font-size: 34px;
  line-height: 1.15;
  color: #6E5686;
}

/* ── Como funciona ──────────────────────────────────────── */
.processo {
  --marker-col: 48px;
  --steps-gap: clamp(1.5rem, 1.1rem + 1.3vw, 2.25rem);
  /* desce o nó para que ele fique na mesma linha óptica do título */
  --node-offset: 9px;
  padding-block: clamp(3.75rem, 2.6rem + 3.6vw, 6.5rem);
  background: linear-gradient(180deg, #FCFAFE 0%, #F6F0FB 100%);
  /* `clip` recorta como `hidden` porém sem criar um contêiner de rolagem,
     o que manteria a coluna lateral `sticky` presa. */
  overflow: clip;
}
.processo__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(56% 42% at 6% 2%,   rgba(201, 174, 228, 0.30), transparent 68%),
    radial-gradient(48% 40% at 98% 66%, rgba(155, 123, 194, 0.20), transparent 70%);
}
.processo__vines {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: min(230px, 20%);
  height: min(360px, 44%);
  pointer-events: none;
}
.processo .container { position: relative; z-index: 1; }

.processo__head { max-width: 760px; }
.processo__title {
  margin-top: 18px;
  line-height: 1.13;
  text-wrap: balance;
}
/* a frase manuscrita não pode quebrar no meio */
.processo__title .script { white-space: nowrap; }
.processo__lede { margin-top: 18px; max-width: 720px; }

.processo__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(2.25rem, 0.6rem + 3.6vw, 4.5rem);
  align-items: start;
  margin-top: clamp(2.25rem, 1.6rem + 2vw, 3.25rem);
}
.processo__sticky { position: sticky; top: calc(var(--header-h) + 32px); }

/* Foto do consultório e sua legenda */
.processo__figure { margin: 0; }
.processo__frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px 24px 24px 96px;
  box-shadow: 0 34px 64px -38px rgba(74, 45, 105, 0.6);
}
/* Véu lilás discreto: puxa os cinzas da foto para a paleta da página
   sem lavar o contraste (soft-light preserva os meios-tons). */
.processo__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background: linear-gradient(200deg, rgba(201, 174, 228, 0.55), rgba(110, 86, 134, 0.5));
}
/* A foto aparece inteira: sem `aspect-ratio` nem `object-fit: cover`,
   a altura acompanha a proporção do arquivo. O zoom de scale também
   saiu — com `overflow: hidden` no quadro, qualquer escala > 1 comeria
   as bordas da imagem. */
.processo__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.processo__caption { display: block; padding: 22px 4px 0; }
.processo__caption .ornament { margin-top: 0; }
.processo__caption-script {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  line-height: 1;
  color: var(--lav-700);
}
.processo__caption-text {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--ink-500);
}

/* ── Linha do tempo ─────────────────────────────────────── */
.steps,
.steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--steps-gap);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: var(--marker-col) minmax(0, 1fr);
  column-gap: clamp(14px, 1.3vw, 22px);
}
.step__marker { position: relative; }

/* Nó numerado sobre o trilho */
.step__node {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: var(--marker-col);
  height: var(--marker-col);
  margin-top: var(--node-offset);
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(161, 140, 183, 0.38);
  box-shadow: 0 8px 18px -12px rgba(74, 45, 105, 0.55);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--lav-400);
  transition:
    transform 0.5s var(--ease),
    background-color 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease),
    box-shadow 0.5s var(--ease);
}
.step__node--goal svg { width: 18px; height: 18px; display: block; }
/* Sem JS não há rolagem monitorada: a linha do tempo já nasce concluída. */
.step.is-active .step__node,
html:not(.js) .step__node {
  background: var(--lav-400);
  border-color: var(--lav-400);
  color: #fff;
  transform: scale(1.06);
  box-shadow:
    0 0 0 7px rgba(161, 140, 183, 0.13),
    0 14px 28px -14px rgba(110, 86, 134, 0.8);
}
.step.is-active .step__node--goal,
html:not(.js) .step__node--goal {
  background: var(--lav-700);
  border-color: var(--lav-700);
}

/* Onda que pulsa apenas no nó em que a leitura está agora */
.step__ring {
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid var(--lav-400);
  opacity: 0;
  pointer-events: none;
}
.step.is-current .step__ring { animation: lm-pulse 2.6s var(--ease) infinite; }

@keyframes lm-pulse {
  0%       { opacity: 0.5; transform: scale(1); }
  70%,100% { opacity: 0;   transform: scale(2.6); }
}

/* Segmento até a próxima etapa. Começa na base do próprio nó e termina no
   centro do nó seguinte, que por ter fundo opaco e z-index maior cobre a
   ponta do traço. O trecho preenchido é escalado por --p, escrito pelo JS
   a cada quadro de rolagem — por isso sem transição. */
.step__line {
  position: absolute;
  left: 50%;
  top: calc(var(--node-offset) + var(--marker-col));
  bottom: calc(-1 * (var(--steps-gap) + var(--node-offset) + var(--marker-col) / 2));
  width: 2px;
  margin-left: -1px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(161, 140, 183, 0.34), rgba(161, 140, 183, 0.14));
}
.step__line-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-origin: top center;
  transform: scaleY(1);
  background: linear-gradient(180deg, var(--lav-400) 0%, var(--lav-700) 100%);
}
.js .step__line-fill { transform: scaleY(var(--p, 0)); }
/* Ponto de luz que viaja na ponta do traço enquanto ele é desenhado */
.step__line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--p, 0) * 100%);
  width: 9px;
  height: 9px;
  margin: -4.5px 0 0 -4.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(161, 140, 183, 0.26),
    0 0 16px 5px rgba(142, 118, 168, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.step.is-drawing .step__line::after { opacity: 1; }

/* Cartão da etapa */
.step__card {
  padding: 18px 26px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.42);
  transition:
    transform 0.5s var(--ease),
    background-color 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.step.is-active .step__card,
html:not(.js) .step__card {
  background: #fff;
  border-color: rgba(150, 120, 180, 0.14);
  box-shadow: 0 20px 44px -30px rgba(74, 45, 105, 0.55);
}
/* `.step` no seletor só para empatar com `.step.is-active .step__card`
   e, vindo depois, prevalecer no hover de um cartão já ativo. */
.step .step__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -26px rgba(74, 45, 105, 0.42);
}

/* Título e etiqueta dividem a mesma linha: economiza a altura de uma
   linha por etapa e alinha as etiquetas numa coluna à direita. */
.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.step__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  padding: 5px 13px 5px 11px;
  border-radius: 100px;
  background: rgba(229, 205, 255, 0.4);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lav-700);
}
.step__chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.step__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.06rem + 0.55vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink-900);
}
.step p {
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-500);
}

/* Último nó: o convite para começar */
.step.step--goal .step__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 26px;
  padding: 18px 20px 18px 26px;
  background: linear-gradient(120deg, rgba(229, 205, 255, 0.42), rgba(251, 249, 252, 0.55));
  border-color: rgba(150, 120, 180, 0.16);
}
.step--goal.is-active .step__card {
  background: linear-gradient(120deg, rgba(229, 205, 255, 0.62), #fff 78%);
}
/* Precisa vencer `.step p`, que é mais específico que uma classe só. */
.step--goal .step__goal-kicker {
  margin-top: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink-900);
}
.step--goal .btn { flex: none; }

/* Entrada em diagonal: as etapas deslizam a partir do trilho.
   `.js .reveal.is-visible` vem depois na folha e zera este transform. */
.js .step.reveal { transform: translate3d(22px, 16px, 0); }

/* ── O que pode mudar ───────────────────────────────────── */
/* Fundo em camadas sobre o mesmo lilás claro da chamada final
   (`--lav-200`), para as duas seções formarem um par. O que muda aqui é
   a distribuição: núcleo claro no centro-alto e bordas mais fechadas. */
.mudanca {
  /* isola o `mix-blend-mode` do grão para que ele componha só com o
     fundo desta seção, e não com o que estiver pintado atrás dela */
  isolation: isolate;
  background:
    radial-gradient(122% 88% at 50% 28%,
      #F4EAFF 0%,
      #ECDBFF 24%,
      #E5CDFF 50%,
      #D9BDF8 78%,
      #CBABEC 100%);
}
.mudanca > [aria-hidden] { z-index: 0; }
.mudanca .container { position: relative; z-index: 1; }
.mudanca .h2 { margin-top: 26px; }

/* Halo difuso atrás do título + vinheta que fecha as bordas */
.mudanca__aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(44% 27% at 50% 21%,
      rgba(255, 255, 255, 0.52),
      rgba(255, 255, 255, 0.20) 46%,
      transparent 74%),
    radial-gradient(128% 98% at 50% 46%,
      transparent 50%,
      rgba(110, 86, 134, 0.10) 80%,
      rgba(94, 70, 118, 0.20) 100%);
}

/* Formas orgânicas nas extremidades — preenchidas com degradê radial,
   então já nascem com a borda esfumada, sem custo de blur. */
.mudanca__formas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mudanca__traco {
  position: absolute;
  pointer-events: none;
  color: var(--lav-700);
}
.mudanca__traco--esq {
  left: clamp(-14px, -1vw, 0px);
  bottom: 6%;
  width: 92px;
  opacity: 0.2;
}
.mudanca__traco--dir {
  right: 0;
  top: -6%;
  width: 190px;
  opacity: 0.12;
}

/* Grão finíssimo: tira o aspecto de cor chapada sem virar textura */
.mudanca__grao {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Os três blocos ficam translúcidos para o degradê atravessá-los; as
   divisórias, que antes vinham do fundo da grade, viram filete interno. */
.statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  text-align: left;
}
.statements li {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 1px 0 0 var(--line);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-700);
}
.statements li:first-child { box-shadow: none; }

.mudanca__kicker {
  margin-top: 46px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
.mudanca .btn { margin-top: 36px; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2.5rem, 0.2rem + 5.4vw, 4.375rem);
  align-items: start;
}
.faq__intro .h2 { margin-top: 22px; }
.faq__help {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-500);
}

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }

.faq__heading { margin: 0; font-size: inherit; font-weight: inherit; }
.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 26px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  transition: background-color 0.22s var(--ease);
}
.faq__trigger:hover { background: rgba(229, 205, 255, 0.18); }

.faq__sign {
  flex: none;
  position: relative;
  width: 26px;
  height: 26px;
  border: 1px solid var(--lav-400);
  border-radius: 50%;
  transition: background-color 0.26s var(--ease), border-color 0.26s var(--ease);
}
/* O "+" vira "–": a barra vertical some ao abrir. */
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--lav-400);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.24s var(--ease), background-color 0.26s var(--ease);
}
.faq__sign::before { width: 11px; height: 1.5px; }
.faq__sign::after  { width: 1.5px; height: 11px; }

.faq__item.is-open .faq__sign { background: var(--lav-400); }
.faq__item.is-open .faq__sign::before { background: #fff; }
.faq__item.is-open .faq__sign::after  { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

/* Animação de altura sem JS medindo pixels */
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s var(--ease);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }

.faq__panel-inner {
  overflow: hidden;
  visibility: hidden;
  transition: visibility 0.38s var(--ease);
}
.faq__item.is-open .faq__panel-inner { visibility: visible; }

.faq__panel-inner p {
  padding: 0 60px 28px 4px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-500);
}

/* ── Chamada final ──────────────────────────────────────── */
.final .h2 { margin: 0; line-height: 1.14; }
.final .lede { margin-top: 32px; max-width: 520px; }
.final__kicker {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
}
.final .btn { margin-top: 42px; }
.final__note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-600);
}

/* ── Contato ────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2.5rem, 0.5rem + 5vw, 5rem);
  align-items: center;
}
.contato__copy .h2 { margin-top: 22px; line-height: 1.12; letter-spacing: -0.028em; }
.contato__copy .lede { margin-top: 24px; max-width: 480px; }

.contato__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(161, 140, 183, 0.25);
  border: 1px solid rgba(161, 140, 183, 0.25);
  border-radius: 16px;
  overflow: hidden;
}
.contato__cell { background: var(--lav-50); padding: 26px 24px; }
.contato__cell--wide { grid-column: span 2; }
.contato__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lav-400);
}
.contato__value {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900);
}
.contato__value:hover { color: var(--lav-700); }
/* `break-word` + o <wbr> após o "@" fazem a quebra cair no arroba,
   em vez de partir a palavra em qualquer letra. */
.contato__value--mail { font-size: 14.5px; overflow-wrap: break-word; }
.contato__value--endereco {
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
  text-wrap: pretty;
}
.contato__text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-600);
}
.contato__copy .btn { margin-top: 38px; }

.contato__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contato__img { width: 100%; display: block; object-fit: cover; }
.contato__img--a { height: 280px; border-radius: 14px 14px 14px 90px; }
.contato__img--b { height: 280px; border-radius: 90px 14px 14px 14px; align-self: end; }
.contato__img--c { height: 200px; border-radius: 14px; grid-column: 1 / -1; }

/* ── Rodapé ─────────────────────────────────────────────── */
.footer {
  background: var(--lav-400);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(2.5rem, 0.8rem + 4vw, 3.75rem);
  align-items: start;
}
.footer__logo { width: 230px; display: block; height: auto; }
.footer__tagline {
  margin-top: 26px;
  max-width: 300px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.footer__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.footer__lead {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14.5px;
  width: fit-content;
}
.footer__links a:hover { color: #fff; }
.footer__links--strong {
  margin-top: 14px;
  gap: 10px;
}
.footer__links--strong a { color: #fff; font-size: 15px; font-weight: 600; }

.footer__endereco {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Motivo decorativo (broto) ──────────────────────────── */
.deco {
  position: absolute;
  display: block;
  pointer-events: none;
  line-height: 0;
}
.deco svg { width: 100%; height: auto; display: block; }

.deco--hero    { left: 6%;  bottom: 14%; width: 96px;  color: var(--lav-400); stroke-width: 1.1; opacity: 0.35; }
/* traço botânico discreto — no máximo ~10% de opacidade */
.deco--atuacao { top: 6%; right: 4%; width: 132px; color: #8F6DB5; stroke-width: 1; opacity: 0.1; }
.deco--sobre   { top: -26px; right: -22px; width: 74px; color: var(--lav-400); stroke-width: 1.2; opacity: 0.4; }
.deco--mudanca { right: -40px; bottom: -30px; width: 220px; color: var(--lav-700); stroke-width: 0.9; opacity: 0.16; }
.deco--final   { left: 8%;  top: 18%;    width: 64px;  color: var(--lav-700); stroke-width: 1.3; opacity: 0.3; }

/* ── Borboletas · Sobre mim ─────────────────────────────── */
/* Elementos posicionados pintam ACIMA dos estáticos, então sem este
   z-index as borboletas cairiam por cima do texto corrido. */
.sobre__grid { position: relative; z-index: 1; }
.sobre [class*="deco--bfly"] { z-index: 0; }

/* Véu difuso ao fundo */
.deco--bfly-wash-a { top: -5%; left: -3%; width: 360px; opacity: 0.14; filter: blur(14px); }
.deco--bfly-wash-a svg { transform: rotate(-14deg); }
.deco--bfly-wash-b { bottom: -7%; right: -2%; width: 320px; opacity: 0.12; filter: blur(18px); }
.deco--bfly-wash-b svg { transform: scaleX(-0.72) rotate(12deg); }

/* Nítidas, nas margens laterais e nas faixas de respiro da seção.
   O scaleX fracionário encurta as asas e simula a borboleta vista
   de ângulo — é o que evita quatro silhuetas idênticas. */
.deco--bfly1 { top: 5%;   left: 1.5%;  width: 116px; opacity: 0.5; }
.deco--bfly1 svg { transform: rotate(-20deg); }
.deco--bfly2 { bottom: 4%; right: 0.5%; width: 128px; opacity: 0.42; }
.deco--bfly2 svg { transform: scaleX(-0.6) rotate(18deg); }
.deco--bfly3 { bottom: 7%; left: 8%;    width: 74px;  opacity: 0.4; }
.deco--bfly3 svg { transform: scaleX(0.82) rotate(14deg); }
.deco--bfly4 { top: 24%;  right: 0.5%;  width: 88px;  opacity: 0.36; }
.deco--bfly4 svg { transform: scaleX(-0.55) rotate(-18deg); }

.float { animation: lm-float 9s ease-in-out infinite; }
.deco--final.float { animation-duration: 11s; }

@keyframes lm-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

/* ── Revelação ao rolar ─────────────────────────────────── */
/* Só entra em ação com JS ligado — sem JS o conteúdo já é visível. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Botão flutuante do WhatsApp ────────────────────────── */
/* Fica abaixo do cabeçalho (z 50) e do scrim da gaveta (z 45) para
   não flutuar por cima do menu mobile aberto. */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.2vw, 28px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 4px 12px -4px rgba(0, 0, 0, 0.25);
  transition: transform 0.42s var(--ease), opacity 0.42s var(--ease),
              visibility 0.42s var(--ease), background-color 0.22s var(--ease);
}
/* Estado inicial: some até o JS liberar, aos 4s. Sem JS o botão
   aparece de imediato — melhor que ficar invisível para sempre. */
.js .wa-float {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.86);
}
.js .wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.wa-float:hover,
.wa-float:focus-visible { background: #1EBE5B; }
.wa-float:hover { transform: translateY(-2px); }
.wa-float:focus-visible { outline: 3px solid var(--lav-700); outline-offset: 3px; }

/* ============================================================
   Responsivo
   ============================================================ */

/* Tablet largo — a grade de 3 colunas fica apertada */
@media (max-width: 1080px) {
  .hero__badge { left: -16px; }

  /* Título sai de cima da grade e passa a ocupar a linha inteira */
  .dif__grid { grid-template-columns: 1fr; gap: 44px; }
  .dif__intro { max-width: 640px; }
}

@media (max-width: 960px) {
  .dif__cards { grid-template-columns: repeat(2, 1fr); }
  .processo__grid { grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr); }
}

/* ── Ponto de virada principal: navegação e colunas ─────── */
@media (max-width: 900px) {
  :root { --header-h: 78px; }

  /* ── Gaveta lateral ───────────────────────────────────── */
  .nav-toggle { display: block; }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(87vw, 358px);
    padding: 24px 26px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 26px 0 0 0;
    background:
      radial-gradient(130% 55% at 100% 0%, rgba(229, 205, 255, 0.55), transparent 64%),
      linear-gradient(180deg, #FDFBFE 0%, #F4EBFB 100%);
    box-shadow: -26px 0 60px -30px rgba(74, 45, 105, 0.6);

    visibility: hidden;
    transform: translateX(102%);
    transition: transform 0.42s var(--ease), visibility 0.42s var(--ease);
  }
  .nav.is-open {
    visibility: visible;
    transform: none;
  }

  .nav-scrim {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--header-h);
    z-index: 45;
    background: rgba(46, 32, 64, 0.34);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /* segura a rolagem do fundo sem `overflow: hidden` na raiz, que
       desgruda o cabeçalho sticky */
    touch-action: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }

  /* Cabeça da gaveta */
  .nav__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__brand { display: flex; flex-direction: column; line-height: 1.05; }
  .nav__brand-name {
    font-family: var(--font-script);
    font-size: 25px;
    letter-spacing: 0.5px;
    color: var(--lav-400);
  }
  .nav__brand-role {
    margin-top: 3px;
    padding-left: 2px;
    font-size: 8.5px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-400);
  }
  .nav__close {
    flex: none;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--lav-700);
    cursor: pointer;
    transition: background-color 0.22s var(--ease), transform 0.18s var(--ease);
  }
  .nav__close svg { width: 16px; height: 16px; display: block; }
  .nav__close:hover { background: rgba(229, 205, 255, 0.45); }
  .nav__close:active { transform: scale(0.94); }

  /* Links */
  .nav__links { display: flex; flex-direction: column; margin-top: 8px; }
  .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 2px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink-900);
    border-bottom: 1px solid var(--line-soft);
  }
  /* o filete do desktop vira uma seta discreta */
  .nav__link::after {
    position: static;
    width: 7px;
    height: 7px;
    background: none;
    border: 0;
    border-top: 1.4px solid var(--lav-400);
    border-right: 1.4px solid var(--lav-400);
    border-radius: 1px;
    opacity: 0.75;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
  }
  .nav__link:active { color: var(--lav-700); }
  .nav__link:active::after { transform: translateX(4px) rotate(45deg); }

  .nav__cta {
    margin-top: 26px;
    width: 100%;
    padding: 16px 22px;
    font-size: 15px;
    text-align: center;
  }

  /* Pé: contato, Instagram e endereço */
  .nav__foot { display: block; margin-top: auto; padding-top: 30px; }
  .nav__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lav-400);
  }
  .nav__contato {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-800);
  }
  .nav__contato:hover { color: var(--lav-700); }
  .nav__contato-ic {
    flex: none;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(229, 205, 255, 0.5);
    color: var(--lav-700);
  }
  .nav__contato-ic svg { width: 17px; height: 17px; display: block; }
  .nav__contato-rot {
    display: block;
    margin-bottom: 1px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lav-400);
  }

  .nav__local {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink-500);
  }
  .nav__assinatura {
    display: block;
    margin-top: 22px;
    font-size: 26px;
    line-height: 1;
    color: var(--lav-400);
    opacity: 0.9;
  }

  .nav__folhas {
    display: block;
    position: absolute;
    z-index: 0;
    right: -16px;
    bottom: -6px;
    width: 118px;
    color: var(--lav-400);
    opacity: 0.18;
    pointer-events: none;
  }
  .nav__head,
  .nav__links,
  .nav__cta,
  .nav__foot { position: relative; z-index: 1; }

  /* Entrada em cascata do conteúdo, depois que a gaveta desliza */
  .nav__head,
  .nav__cta,
  .nav__foot,
  .nav .nav__link {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.36s var(--ease), transform 0.36s var(--ease);
  }
  .nav.is-open .nav__head,
  .nav.is-open .nav__cta,
  .nav.is-open .nav__foot,
  .nav.is-open .nav__link { opacity: 1; transform: none; }

  .nav.is-open .nav__head              { transition-delay: 0.08s; }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.16s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.21s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.26s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.31s; }
  .nav.is-open .nav__cta               { transition-delay: 0.37s; }
  .nav.is-open .nav__foot              { transition-delay: 0.43s; }

  /* Colunas → uma coluna */
  .hero__grid,
  .sobre__grid,
  .faq__grid,
  .contato__grid { grid-template-columns: 1fr; }

  .hero__grid { gap: 56px; }
  .hero__copy { max-width: 620px; }
  .hero__media { max-width: 440px; margin-inline: auto; width: 100%; }
  .hero__badge { left: 0; bottom: 18px; }

  .sobre__media { max-width: 420px; }
  .contato__copy .lede { max-width: none; }

  /* empilhados, o filete divisório passa a ser horizontal */
  .statements { grid-template-columns: 1fr; }
  .statements li { box-shadow: inset 0 1px 0 var(--line-light); }
  .statements li:first-child { box-shadow: none; }

  .deco--mudanca { width: 150px; }
  .mudanca__traco--dir { width: 130px; top: -3%; opacity: 0.1; }
  .mudanca__traco--esq { width: 68px; bottom: 4%; }

  /* Linha do tempo: a foto sai da coluna lateral e abre a seção */
  .processo__grid { grid-template-columns: 1fr; gap: 44px; }
  .processo__sticky { position: static; max-width: 480px; }
  .processo__frame { border-radius: 22px 22px 22px 72px; }
  .processo__caption { padding-top: 22px; }
  .processo__caption-script { font-size: 26px; }
  .processo__vines { display: none; }

  /* Sem margens laterais no mobile, ficam só as borboletas que cabem
     nas faixas de respiro do topo e do rodapé da seção. */
  .deco--bfly-wash-a { width: 210px; opacity: 0.12; }
  .deco--bfly-wash-b { width: 180px; opacity: 0.10; }
  .deco--bfly1 { width: 74px; top: 1%; left: 2%; opacity: 0.42; }
  .deco--bfly2 { width: 62px; bottom: 2%; right: 3%; opacity: 0.36; }
  .deco--bfly3,
  .deco--bfly4 { display: none; }
}

@media (max-width: 860px) {
  /* Cards empilham e o box de sessões vira coluna */
  .acards { grid-template-columns: 1fr; gap: 24px; }

  .asessions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 26px 24px;
  }
  .asessions__note { max-width: none; }
  .btn--gradient { width: 100%; justify-content: center; }
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer { padding-top: 64px; }
  .faq__panel-inner p { padding-right: 24px; }
}

@media (max-width: 620px) {
  .dif__cards { grid-template-columns: 1fr; gap: 18px; }
  .dcard { padding: 26px 24px 28px; }
  .dcard--poema { padding: 34px 24px; }

  .contato__box { grid-template-columns: 1fr; }
  .contato__cell--wide { grid-column: auto; }
  .contato__gallery { gap: 12px; }
  .contato__img--a { height: 220px; border-radius: 14px 14px 14px 70px; }
  .contato__img--b { height: 220px; border-radius: 70px 14px 14px 14px; }
  .contato__img--c { height: 170px; }

  .acard { --media-h: 210px; }
  .acard__body { padding: 48px 26px 34px; }
  .acard__body p { font-size: 15px; }

  /* padding menor para o rótulo caber numa linha só nos celulares comuns */
  .btn--gradient { padding-inline: 20px; gap: 8px; }
  .hero__actions { gap: 20px; }
  .hero__actions .btn { width: 100%; }
  .invite .btn,
  .final .btn,
  .mudanca .btn { width: 100%; max-width: 380px; }

  /* Nós menores e cartões sem moldura para o texto ganhar largura */
  .processo { --marker-col: 40px; --node-offset: 6px; }
  .step__card { padding: 14px 0 16px 2px; background: transparent; }
  .step.is-active .step__card {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .step .step__card:hover { transform: none; box-shadow: none; }
  .step.step--goal .step__card { padding: 20px 20px 22px; }
  .step--goal .btn { width: 100%; justify-content: center; }

  .faq__trigger { font-size: 16.5px; gap: 16px; }
  .footer__bottom { margin-top: 44px; }
}

@media (max-width: 420px) {
  .brand__name { font-size: 23px; }
  .brand__role { font-size: 8.5px; letter-spacing: 0.2em; }
  .pillars li { border-right: 0; padding-inline: 0; }
  .marquee__group { gap: 28px; padding-right: 28px; letter-spacing: 0.2em; }
}

/* ── Preferências do usuário ────────────────────────────── */
@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;
  }

  /* O carrossel e o broto flutuante param por completo */
  .marquee__track,
  .float { animation: none !important; }

  .js .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  .js .wa-float { transform: none; }
  .wa-float:hover { transform: none; }
}

/* ── Impressão ──────────────────────────────────────────── */
@media print {
  .site-header, .nav-toggle, .marquee, .deco, .skip-link, .wa-float { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 24px; page-break-inside: avoid; }
  .js .reveal { opacity: 1; transform: none; }
}
