/* Studio Marjorie Pires
   Fontes auto-hospedadas (LGPD: nenhuma requisição a servidores de fontes de terceiros). */

@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("../fonts/libre-caslon-condensed-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("../fonts/libre-caslon-condensed-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("../fonts/libre-caslon-condensed-latin-400-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Libre Caslon Condensed";
  src: url("../fonts/libre-caslon-condensed-latin-500-italic.woff2") format("woff2");
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/geist-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono-latin-wght-normal.woff2") format("woff2-variations"),
       url("../fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Ephesis";
  src: url("../fonts/ephesis-latin.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Ephesis";
  src: url("../fonts/ephesis-latin-ext.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Cores da marca (briefing) */
  --mint: #c7e9e5;
  --butter: #fefbd4;
  --ink: #000;
  --white: #fff;
  /* Único tom de apoio: blush na mesma luminosidade e croma do menta (OKLCH 0.908 0.036 15) */
  --blush: #f8d8d9;
  /* Texto secundário tingido pela superfície, nunca cinza */
  --ink-mint: #1f3b38;
  --ink-butter: #413e2b;
  --ink-white: #2e3634;
  --ink-dark: #d8d5b2;
  --error: #a4262c;

  --font-display: "Libre Caslon Condensed", "Iowan Old Style", Georgia, serif;
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-hand: "Ephesis", "Snell Roundhand", cursive;

  --fs-hero: clamp(2.9rem, 1.45rem + 4.4vw, 5.2rem);
  --fs-h2: clamp(2.35rem, 1.5rem + 3.1vw, 4.1rem);
  --fs-h3: clamp(1.75rem, 1.35rem + 1.3vw, 2.5rem);
  --fs-lead: clamp(1.125rem, 1.03rem + 0.38vw, 1.3125rem);
  --fs-body: clamp(1.0625rem, 1.03rem + 0.14vw, 1.15rem);
  --fs-small: 0.9375rem;
  --fs-mono: 0.8125rem;

  --gutter: clamp(1.25rem, 0.75rem + 2.2vw, 2.75rem);
  --maxw: 77rem;
  --section: clamp(5rem, 3.4rem + 6.4vw, 9.75rem);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --pill: 999px;
  --line: 1.5px;

  --shadow-note: 0 1px 2px rgb(0 0 0 / 0.07), 0 16px 30px -14px rgb(0 0 0 / 0.32);
  --shadow-card: 0 1px 2px rgb(0 0 0 / 0.05), 0 22px 44px -26px rgb(0 0 0 / 0.38);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 84px;
  interpolate-size: allow-keywords;
}

/* ---------- Base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  scrollbar-color: var(--ink) var(--butter);
  hanging-punctuation: first;
}

body {
  margin: 0;
  background: var(--butter);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.58;
  font-weight: 400;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  caret-color: var(--ink);
  accent-color: var(--ink);
}

body.menu-open { overflow: hidden; }

::selection { background: var(--ink); color: var(--butter); }
.surface-ink ::selection { background: var(--mint); color: var(--ink); }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
:where(ul[role="list"], ol[role="list"]) { list-style: none; padding: 0; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
a:hover { text-decoration-thickness: 2px; }

button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }
.surface-ink :focus-visible { outline-color: var(--mint); }

.num { font-variant-numeric: tabular-nums lining-nums; }

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

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.i { width: 1.25em; height: 1.25em; flex: none; }

.skip-link {
  position: fixed; left: 1rem; top: -4rem; z-index: 100;
  padding: 0.75rem 1rem; border-radius: var(--radius-xs);
  background: var(--ink); color: var(--white); text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2 * var(--gutter), var(--maxw));
  margin-inline: auto;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.04;
  text-wrap: balance;
  font-kerning: normal;
}
.display i { font-style: italic; }

.hand {
  font-family: var(--font-hand);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1;
}

/* ---------- Superfícies ---------- */

.surface-mint { background: var(--mint); color: var(--ink); --muted: var(--ink-mint); }
.surface-butter { background: var(--butter); color: var(--ink); --muted: var(--ink-butter); }
.surface-white { background: var(--white); color: var(--ink); --muted: var(--ink-white); }
.surface-ink { background: var(--ink); color: var(--butter); --muted: var(--ink-dark); }

/* Borda ondulada da referência (fileira de círculos) */
.scallop-top,
.faq,
.about {
  --r: 22px;
}

/* ---------- Botões e links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0.8em 1.35em;
  border: var(--line) solid transparent;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.35s var(--ease-out), translate 0.35s var(--ease-out);
}
.btn .i { width: 1.25em; height: 1.25em; }
.btn .i--arrow { transition: translate 0.4s var(--ease-out); }
.btn:hover .i--arrow { translate: 4px 0; }
.btn:active { translate: 0 1px; }

.btn--ink { background: var(--ink); color: var(--white); }
.btn--ink:hover { background: #262626; box-shadow: 0 10px 22px -12px rgb(0 0 0 / 0.55); }
.surface-ink .btn--ink { background: var(--butter); color: var(--ink); }

.btn--mint { background: var(--mint); color: var(--ink); }
.btn--mint:hover { background: #d9f1ee; }

.btn--outline { border-color: currentColor; background: transparent; }
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.btn--sm { min-height: 44px; padding: 0.6em 1em; font-size: 0.875rem; }
.btn--lg { min-height: 58px; padding: 0.95em 1.6em; font-size: 1rem; }
.btn--block { width: 100%; }
/* Celular: a seta decorativa sai e a folga diminui, para o texto do botão caber numa linha */
@media (max-width: 480px) {
  .btn { gap: 0.55em; padding-inline: 1em; letter-spacing: 0.025em; }
  .btn .i--arrow { display: none; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  /* área de toque maior para o dedo, sem mudar o espaço que o link ocupa */
  padding-block: 0.6rem;
  margin-block: -0.6rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}
.link-arrow .i { width: 1.05em; height: 1.05em; transition: translate 0.35s var(--ease-out); }
.link-arrow:hover .i { translate: 3px 0; }

.linklike {
  padding: 0; border: 0; background: none;
  text-decoration: underline; text-underline-offset: 0.22em;
  cursor: pointer;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  width: fit-content;
  padding: 0.45em 0.8em;
  border-radius: var(--radius-xs);
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.2;
}
.chip--mint { background: var(--mint); color: var(--ink); }

/* Argola com bolinha (a joia no lugar das flores da referência) */
.ring { width: 1.3em; height: 1.3em; }
.ring--mint { color: var(--mint); }
.ring--blush { color: var(--blush); }
.ring--butter { color: var(--butter); }
.ring--ink { color: var(--ink); }

/* ---------- Cabeçalho ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background-color 0.35s, box-shadow 0.35s;
}
.site-header.is-scrolled {
  background: var(--butter);
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.1);
}

/* A barra fica por cima do menu aberto: o X de fechar precisa continuar visível e tocável */
.nav {
  position: relative;
  z-index: 46;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex: none;
}
.brand__seal { width: 52px; height: 52px; border-radius: 50%; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}

.nav__links { display: flex; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a {
  display: inline-block;
  padding-block: 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(currentColor, currentColor) 0 88% / 0 1.5px no-repeat;
  transition: background-size 0.4s var(--ease-out);
}
.nav__links a:hover { background-size: 100% 1.5px; }

.nav__toggle {
  display: none;
  place-items: center;
  width: 52px; height: 52px;
  border: 0; border-radius: 12px;
  background: var(--mint);
  cursor: pointer;
}
.nav__toggle .i { width: 26px; height: 26px; }
.nav__toggle .i--close { display: none; }
.nav__toggle[aria-expanded="true"] .i--open { display: none; }
.nav__toggle[aria-expanded="true"] .i--close { display: block; }

.menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: calc(var(--header-h) + 2.25rem) var(--gutter) 2rem;
  overflow-y: auto;
  background: var(--mint);
  --muted: var(--ink-mint);
}
.menu[hidden] { display: none; }
.menu__links a {
  display: block;
  padding-block: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-decoration: none;
}
.menu__cta { width: 100%; }
.menu__meta { color: var(--muted); font-size: var(--fs-small); }

/* Cinco links + marca + botão cabem numa linha a partir de ~1160px; abaixo disso fica o botão do WhatsApp */
@media (max-width: 1160px) {
  .nav__links { display: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 76px; }
  .site-header { padding: 10px 10px 0; }
  .site-header.is-scrolled { background: transparent; box-shadow: none; }
  .nav {
    width: 100%;
    min-height: 66px;
    padding: 7px 7px 7px 10px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 10px 26px -16px rgb(0 0 0 / 0.45);
  }
  .brand__seal { width: 44px; height: 44px; }
  .brand__name { font-size: 1.36rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: grid; }
}

@media (max-width: 360px) {
  .brand__name { font-size: 1.18rem; }
  .brand__seal { width: 38px; height: 38px; }
}

/* ---------- Abertura ---------- */

.hero {
  position: relative;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vh, 5.5rem));
}

.hero__inner {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
}

.hero__text { display: grid; justify-items: start; }

.hero__title {
  max-width: 14ch;
  font-size: var(--fs-hero);
  line-height: 1;
}

.hero__lead {
  max-width: 44ch;
  margin-top: clamp(1.25rem, 2.5vw, 1.9rem);
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero__actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
  margin-top: clamp(1.9rem, 3.5vw, 2.6rem);
}

.hero__note {
  color: var(--muted);
  font-size: var(--fs-small);
}

/* A foto dela como polaroide; a largura respeita a altura da tela para o letreiro caber na primeira dobra */
.hero__media {
  position: relative;
  justify-self: center;
  width: clamp(15rem, calc((100svh - 286px) * 0.8), 25rem);
  max-width: 100%;
}
.snapshot {
  padding: 0.9rem 0.9rem 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  rotate: 3deg;
}
.snapshot__photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--mint); }
.snapshot__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 26%; }
.snapshot__caption {
  padding: 0.65rem 0.4rem 0.95rem;
  font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.5rem);
  text-align: center;
}

@media (max-width: 760px) {
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 1.25rem); }
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 1.75rem;
    padding-bottom: 2.5rem;
  }
  /* a foto encolhe em telas baixas para o botão caber antes da dobra; a legenda acompanha */
  .hero { --hero-w: clamp(8.5rem, calc((100svh - 470px) * 0.72), min(50vw, 13.5rem)); }
  .hero__media { order: -1; width: var(--hero-w); }
  .snapshot { padding: 0.55rem 0.55rem 0; rotate: -3deg; }
  .snapshot__caption { padding: 0.4rem 0.2rem 0.6rem; font-size: min(1.45rem, calc(var(--hero-w) * 0.112)); white-space: nowrap; }
  .hero__text { justify-items: center; text-align: center; }
  .hero__actions { justify-items: center; }
}

/* Letreiro corrido */
.marquee { --gap: 2.1rem; overflow: hidden; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
}
.marquee__list {
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--gap);
  padding-inline-end: var(--gap);
  white-space: nowrap;
}
.marquee:hover .marquee__track,
.marquee.is-paused .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.marquee--band,
.marquee--footer {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.marquee--band {
  padding-block: 1.05rem;
  background: var(--ink);
  color: var(--butter);
}
.marquee--band .ring,
.marquee--footer .ring { width: 1.35rem; height: 1.35rem; }

/* ---------- Diferenciais: notas que se empilham ---------- */

.why {
  overflow-x: clip;
  padding-block: var(--section) calc(var(--section) * 0.7);
  --note-top: calc(var(--header-h) + var(--why-title-h, 12rem) + 2.5rem);
}

.why__stage {
  position: relative;
  display: grid;
  justify-items: center;
}

.why__title {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  z-index: 1;
  max-width: 16ch;
  padding-bottom: 0.5rem;
  font-size: var(--fs-h2);
  text-align: center;
}

.notes {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  width: 100%;
  margin-top: clamp(2rem, 4vw, 3rem);
}
/* Espaço dentro da lista para a pilha completa descansar antes de seguir a rolagem */
.notes::after { content: ""; height: min(20vh, 10rem); }

.note {
  position: sticky;
  top: var(--note-top);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(100%, 21.5rem);
  padding: 1.5rem 1.7rem 1.7rem;
  border-radius: 5px;
  box-shadow: var(--shadow-note);
  rotate: var(--tilt, 0deg);
  translate: var(--shift, 0) 0;
  transition: box-shadow 0.5s var(--ease-out);
}
.note:nth-child(1) { --tilt: -4deg; --shift: -1.6rem; }
.note:nth-child(2) { --tilt: 3deg; --shift: 1.4rem; }
.note:nth-child(3) { --tilt: -1.5deg; --shift: -0.6rem; }
.note:nth-child(4) { --tilt: 4.5deg; --shift: 1.1rem; }

.note--white { background: var(--white); --muted: var(--ink-white); }
.note--mint { background: var(--mint); --muted: var(--ink-mint); }
.note--blush { background: var(--blush); --muted: #3f2a2b; }

.note__check { width: 2.6rem; height: 2.6rem; margin-bottom: 0.2rem; overflow: visible; }
.note__check path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.js .note__check path {
  stroke-dashoffset: 1;
  opacity: 0;
  transition: stroke-dashoffset 0.75s var(--ease-out) 0.08s, opacity 0.1s linear 0.08s;
}
.js .note.is-stuck .note__check path { stroke-dashoffset: 0; opacity: 1; }
.js .note.is-stuck { box-shadow: 0 1px 2px rgb(0 0 0 / 0.08), 0 22px 36px -16px rgb(0 0 0 / 0.36); }

.note__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.note p { color: var(--muted); font-size: 1.0625rem; line-height: 1.5; }


@media (max-width: 560px) {
  .note { width: calc(100% - 1.5rem); }
  .note:nth-child(odd) { --shift: -0.4rem; }
  .note:nth-child(even) { --shift: 0.4rem; }
}
@media (max-height: 620px), (max-width: 340px) {
  .why__title, .note { position: static; }
  .notes::after { display: none; }
}

/* ---------- Serviços ---------- */

.services { padding-block: calc(var(--section) * 0.35) var(--section); }

.service-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05em 0.42em;
  max-width: 15.5em;
  margin-inline: auto;
  font-size: clamp(2.7rem, 1.55rem + 4vw, 5rem);
  line-height: 1.12;
  text-align: center;
}
.service-words li { display: inline-flex; align-items: center; gap: 0.32em; }
.service-words a {
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 94% / 0 2px no-repeat;
  transition: background-size 0.5s var(--ease-out);
}
.service-words a:hover { background-size: 100% 2px; }
.service-words .ring { width: 0.5em; height: 0.5em; }
.service-words .ring--mint { color: #8fcfc6; }
.service-words .ring--blush { color: #eab3b6; }

.service-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2.75rem, 6vw, 4.75rem);
}

.service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius);
}
.service__title { font-size: var(--fs-h3); }
.service__desc { color: var(--muted); max-width: 46ch; }
.service .link-arrow { margin-top: auto; }

.service--featured {
  gap: 1.3rem;
  padding: clamp(1.75rem, 1.1rem + 2.4vw, 3rem);
  border-color: var(--ink);
}
.service--featured .service__title { font-size: clamp(2.2rem, 1.5rem + 2.3vw, 3.4rem); }
.service__head { display: grid; gap: 0.9rem; }
.service__price { display: grid; gap: 0.2rem; }
.service__price .display { font-size: clamp(2.3rem, 1.7rem + 2vw, 3.3rem); color: var(--mint); line-height: 1; }
.service__price-note { color: var(--muted); font-size: var(--fs-small); }

.list-label {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.checklist { display: grid; gap: 0.2rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.7rem; padding-block: 0.35rem; }
.checklist .i { width: 1.35rem; height: 1.35rem; margin-top: 0.12em; color: var(--mint); }
.service--featured .btn { margin-top: auto; }

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li {
  padding: 0.42em 0.85em;
  border: 1px solid rgb(0 0 0 / 0.16);
  border-radius: var(--pill);
  background: var(--white);
  font-size: var(--fs-small);
  line-height: 1.25;
}

@media (min-width: 920px) {
  .service-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    grid-template-rows: repeat(3, auto);
  }
  .service--featured { grid-row: 1 / span 3; }
}

/* ---------- Como funciona: o cartão de cuidados ---------- */

.how { padding-bottom: var(--section); }

.sheet {
  position: relative;
  padding: clamp(1.6rem, 0.9rem + 3.2vw, 3.6rem);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  --muted: var(--ink-white);
}

.sheet__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 2px dashed var(--ink);
}
.sheet__title { font-size: var(--fs-h2); }
.sheet__lead { color: var(--muted); font-size: var(--fs-lead); }

.steps {
  display: grid;
  gap: 2.1rem;
  margin-block: clamp(2rem, 4vw, 3rem);
  counter-reset: step;
}
.step { display: grid; align-content: start; gap: 0.5rem; }
.step__num {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.6rem;
  border: var(--line) solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
}
.step:nth-child(2) .step__num { background: var(--blush); }
.step:nth-child(3) .step__num { background: var(--butter); }
.step__title { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.step__when {
  display: block;
  margin-bottom: 0.3rem;
  font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem);
  font-weight: 500;
}
.step p { color: var(--muted); }

@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem); }
}

.sheet__sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  margin-top: 1.6rem;
  font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.5rem);
}
.sheet__sign .i { width: 1.1em; height: 1.1em; }

/* ---------- Sobre ---------- */

.about {
  position: relative;
  padding-block: calc(var(--section) + var(--r));
  -webkit-mask:
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 0 / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 100% / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% calc(100% - 2 * var(--r)) no-repeat;
  mask:
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 0 / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 100% / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% calc(100% - 2 * var(--r)) no-repeat;
}

.about__inner {
  display: grid;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.strip {
  justify-self: center;
  width: min(100%, 21rem);
  padding: 0.75rem 0.75rem 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  rotate: 2.5deg;
}
.strip__photo { aspect-ratio: 941 / 1672; overflow: hidden; background: var(--mint); }
.strip__photo img { width: 100%; height: 100%; object-fit: cover; }
.strip__caption {
  padding: 0.6rem 0.4rem 0.9rem;
  font-size: clamp(1.9rem, 1.5rem + 1.2vw, 2.5rem);
  text-align: center;
}
/* Logo depois da abertura, uma faixa do chão manteiga aparece acima do recorte:
   a seção menta fica "pousada" sobre o fundo amarelo, igual à borda de baixo */
.hero + .about { margin-top: clamp(1.5rem, 1rem + 1.6vw, 2.5rem); }

@media (max-width: 899px) {
  .strip { width: min(76vw, 19rem); }
}

.about__text { display: grid; justify-items: start; gap: 1.2rem; max-width: 36rem; }
.about__title { font-size: var(--fs-h2); }
/* Foto redonda do rosto ao lado do título: papel branco com a linha de tinta, como o selo */
.about__hello { display: flex; align-items: center; gap: clamp(1rem, 0.6rem + 1.6vw, 1.6rem); }
.about__face {
  flex: none;
  width: clamp(5.5rem, 4.6rem + 3vw, 7.5rem);
  height: auto;
  aspect-ratio: 1;
  border: 5px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  background: var(--mint);
  box-shadow: 0 0 0 var(--line) var(--ink), var(--shadow-card);
}
.about__text p { color: var(--muted); }
.about__text .btn { margin-top: 0.6rem; }

@media (min-width: 900px) {
  .about__inner { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
}

/* ---------- Cabeçalho de seção e moldura de foto ---------- */

.section-head {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 46rem;
  margin: 0 auto clamp(2.75rem, 5.5vw, 4.25rem);
  text-align: center;
}
.section-head__title { font-size: var(--fs-h2); }
.section-head__text { max-width: 52ch; color: var(--muted); text-wrap: pretty; }


/* ---------- Avaliações ---------- */

.reviews__foot {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  max-width: 36rem;
  margin: clamp(3.5rem, 7vw, 5.5rem) auto 0;
  text-align: center;
}
.reviews__ask { color: var(--muted); font-size: var(--fs-lead); text-wrap: pretty; }

.reviews { overflow-x: clip; padding-block: calc(var(--section) * 0.4) calc(var(--section) * 1.1); }

/* Depoimentos entram pelas laterais conforme a rolagem: o JS mede a distância até a borda (--from)
   e o avanço (--enter, de 0 a 1). Sem JS ou com movimento reduzido, os cartões ficam no lugar. */
.reviews--enter .review__card {
  translate: calc((1 - var(--enter, 1)) * var(--from, 0px)) 0;
  opacity: calc(0.25 + 0.75 * var(--enter, 1));
  will-change: translate, opacity;
}

.reviews__head {
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
  text-align: center;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 1.1rem 0.65rem 1.35rem;
  border: var(--line) solid var(--ink);
  border-radius: var(--pill);
  background: var(--white);
  text-decoration: none;
  transition: background-color 0.3s;
}
.rating:hover { background: var(--mint); }
.rating__num { font-size: 2.5rem; line-height: 1; }
.rating__meta { display: grid; gap: 0.2rem; font-size: var(--fs-small); line-height: 1.2; text-align: left; }
.rating__stars { display: flex; gap: 2px; }
.rating__stars .i { width: 1rem; height: 1rem; }
.rating__out { width: 1.2rem; height: 1.2rem; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem clamp(2rem, 9vw, 9rem);
  max-width: 64rem;
  margin-inline: auto;
}
.review { display: flex; align-items: flex-start; }
.review:nth-child(odd) { justify-content: flex-start; }
.review:nth-child(even) { justify-content: flex-end; margin-top: 7.5rem; }
.review:nth-child(n + 3) { margin-top: -4rem; }
.review:nth-child(4) { margin-top: 3.5rem; }

.review__card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.9rem;
  width: min(100%, 26.5rem);
  padding: 1.5rem 1.6rem 1.7rem;
  border: 18px solid var(--frame, var(--mint));
  background: var(--white);
  text-align: center;
}
.review--mint { --frame: var(--mint); }
.review--blush { --frame: var(--blush); }
.review__ring { width: 1.9rem; height: 1.9rem; }
.review--mint .review__ring { color: #8fcfc6; }
.review--blush .review__ring { color: #eab3b6; }
.review__head { font-size: clamp(1.65rem, 1.35rem + 1vw, 2.15rem); }
.review__quote { color: var(--ink-white); font-size: 1.0625rem; text-wrap: pretty; }
.review__who { margin-top: 0.3rem; font-size: var(--fs-small); font-weight: 600; }

@media (max-width: 760px) {
  .review-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .review:nth-child(n) { justify-content: center; margin-top: 0; grid-column: auto; }
  .review__card { border-width: 14px; }
}

/* ---------- Dúvidas ---------- */

.faq {
  padding-block: calc(var(--section) * 0.85 + var(--r)) calc(var(--section) * 0.75);
  -webkit-mask:
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 0 / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% 100% no-repeat;
  mask:
    radial-gradient(var(--r) at 50% var(--r), #000 calc(100% - 0.6px), #0000) 50% 0 / calc(var(--r) * 2) calc(var(--r) * 2) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% 100% no-repeat;
}
.faq__title { max-width: 17ch; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); font-size: var(--fs-h2); }
.faq__cols { display: grid; gap: 0.9rem 1.25rem; align-items: start; }
.faq__col { display: grid; gap: 0.9rem; }

.qa {
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: background-color 0.3s;
}
.qa[open] { background: var(--butter); }
.qa__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 0.95rem 1.2rem;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.qa__q::-webkit-details-marker { display: none; }
.qa__q:focus-visible { outline-offset: -3px; border-radius: var(--radius-sm); }
.qa__icon { width: 1.4rem; height: 1.4rem; transition: rotate 0.45s var(--ease-out); }
.qa[open] .qa__icon { rotate: 45deg; }
.qa__a { padding: 0 1.2rem 1.25rem; color: var(--ink-butter); }
.qa__a ul { display: grid; gap: 0.45rem; margin: 0.6rem 0 0; padding-left: 1.1rem; }
.qa::details-content {
  block-size: 0;
  overflow: clip;
  transition: block-size 0.45s var(--ease-out), content-visibility 0.45s allow-discrete;
}
.qa[open]::details-content { block-size: auto; }

@media (min-width: 900px) {
  .faq__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Cursos ---------- */

.courses { padding-bottom: calc(var(--section) * 0.9); }
.courses__card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  padding: clamp(1.75rem, 1rem + 3vw, 3.25rem);
  border-radius: var(--radius-lg);
}
.courses__text { display: grid; gap: 0.7rem; max-width: 40rem; }
.courses__title { font-size: var(--fs-h3); }
.courses__text p { color: var(--muted); }

/* ---------- Contato ---------- */

.contact { padding-block: var(--section); }
.contact__grid { display: grid; gap: 1.5rem; align-items: start; }

.ficha {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.4rem, 0.9rem + 2.2vw, 2.6rem);
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  --muted: var(--ink-white);
}
.ficha__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.2rem 1rem;
  padding-bottom: 1.15rem;
  border-bottom: 2px dashed var(--ink);
}
.ficha__title { font-size: var(--fs-h3); }
.ficha__sub { font-size: clamp(1.7rem, 1.4rem + 0.8vw, 2.1rem); }

.field { display: grid; gap: 0.3rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.field__label { font-size: var(--fs-small); font-weight: 600; padding: 0; }
.field__opt { color: var(--muted); font-weight: 400; }
.field__input {
  width: 100%;
  min-height: 50px;
  padding: 0.55rem 0.1rem;
  border: 0;
  border-bottom: var(--line) solid var(--ink);
  border-radius: 0;
  background: transparent;
  font-size: 1.0625rem;
  transition: background-color 0.25s, box-shadow 0.25s;
}
.field__input::placeholder { color: #5a6563; opacity: 1; }
.field__input:focus { outline: none; }
.field__input:focus-visible {
  background: color-mix(in srgb, var(--mint) 45%, transparent);
  box-shadow: 0 2px 0 0 var(--ink);
}
select.field__input {
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  background-size: 1.25rem;
  cursor: pointer;
}
textarea.field__input {
  min-height: 6.4rem;
  padding: 0.1rem 0.1rem 0;
  border-bottom: 0;
  line-height: 2.1rem;
  resize: vertical;
  background: repeating-linear-gradient(transparent 0 calc(2.1rem - 1.5px), var(--ink) calc(2.1rem - 1.5px) 2.1rem) 0 0 / 100% 2.1rem local;
}
textarea.field__input:focus-visible {
  background:
    repeating-linear-gradient(transparent 0 calc(2.1rem - 1.5px), var(--ink) calc(2.1rem - 1.5px) 2.1rem) 0 0 / 100% 2.1rem local,
    color-mix(in srgb, var(--mint) 45%, transparent);
  box-shadow: none;
}
.field.is-invalid .field__input { border-bottom-color: var(--error); box-shadow: 0 2px 0 0 var(--error); }
.field__error { color: var(--error); font-size: var(--fs-small); font-weight: 500; }

.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }

.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.45rem; }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5em 1em;
  border: var(--line) solid var(--ink);
  border-radius: var(--pill);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}
.choice:hover span { background: var(--mint); }
.choice input:checked + span { background: var(--ink); color: var(--white); }
.choice input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 3px; }

.check { display: inline-flex; align-items: center; gap: 0.7rem; min-height: 44px; font-weight: 500; cursor: pointer; width: fit-content; }
.check input { width: 1.35rem; height: 1.35rem; margin: 0; cursor: pointer; }
.ficha__rule {
  margin-top: -0.6rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-xs);
  background: var(--mint);
  font-size: var(--fs-small);
}
.ficha__note { color: var(--muted); font-size: 0.875rem; text-align: center; margin-top: -0.35rem; }
.ficha__status { font-size: var(--fs-small); font-weight: 500; text-align: center; }
.ficha__status:empty { display: none; }

.visit { display: grid; gap: 1.25rem; }
.visit__card {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.4rem, 1rem + 1.5vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--mint);
}
.visit__row {
  display: grid;
  grid-template-columns: 8.75rem minmax(0, 1fr);
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgb(0 0 0 / 0.16);
}
.visit__row:last-child { padding-bottom: 0; border-bottom: 0; }
.visit dt { display: flex; align-items: center; gap: 0.55rem; font-weight: 600; }
.visit dt .i { width: 1.2rem; height: 1.2rem; }
.visit dd { color: var(--ink-mint); }
.visit dd a { color: var(--ink); }

.map {
  display: grid;
  min-height: 19rem;
  overflow: hidden;
  border: var(--line) solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.map__facade {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--white);
}
.map__disc {
  display: grid;
  place-items: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--mint);
}
.map__pin { width: 2.4rem; height: 2.4rem; }
.map__text { max-width: 30ch; color: var(--ink-white); font-size: var(--fs-small); }
.map__open { justify-self: start; }
.map iframe { width: 100%; height: 100%; min-height: 19rem; border: 0; }

@media (min-width: 980px) {
  .contact__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
}
@media (max-width: 420px) {
  .field-row { grid-template-columns: 1fr; }
  .visit__row { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* Convite para seguir no Instagram, no fim do contato */
.insta {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  margin-top: clamp(4rem, 8vw, 6.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 2px dashed var(--ink);
  text-align: center;
}
.insta__title { font-size: var(--fs-h3); }
.insta__note { max-width: 44ch; color: var(--muted); }
.insta .btn { margin-top: 0.4rem; }

/* ---------- Rodapé ---------- */

.site-footer { padding-bottom: 0; }
.marquee--footer {
  padding-block: 1.1rem;
  border-bottom: 1px solid rgb(254 251 212 / 0.18);
}

.footer__top {
  display: grid;
  gap: 2.75rem;
  padding-block: clamp(3.25rem, 6vw, 5.5rem);
}
.footer__h { margin-bottom: 1rem; font-size: 1.75rem; }
.footer__links { display: grid; margin-top: -0.8rem; }
.footer__links a {
  display: inline-block;
  padding-block: 0.8rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__links a:hover { text-decoration: underline; text-underline-offset: 0.3em; }
.footer__mid { display: grid; justify-items: center; gap: 1rem; text-align: center; }
.footer__giant {
  color: var(--mint);
  font-size: min(14.5vw, 7.4rem);
  letter-spacing: -0.035em;
  line-height: 0.92;
  white-space: nowrap;
}
.footer__tag { max-width: 32ch; color: var(--muted); }

@media (min-width: 900px) {
  .footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr) minmax(0, 1fr); align-items: start; }
  .footer__giant { font-size: min(7.3vw, 7.4rem); }
  .footer__col--end { justify-self: end; }
}

.footer__bottom { color: var(--ink); }
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1rem;
  font-size: var(--fs-small);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.footer__legal a, .footer__legal .linklike { display: inline-block; padding-block: 0.7rem; margin-block: -0.7rem; }

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 60px;
  padding: 0 1.35rem 0 1.15rem;
  border: 2px solid var(--butter);
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -12px rgb(0 0 0 / 0.55);
  transition: translate 0.5s var(--ease-out), opacity 0.3s, background-color 0.25s;
  translate: 0 var(--consent-offset, 0);
}
.wa-float:hover { background: #262626; }
.wa-float .i { width: 1.6rem; height: 1.6rem; }
.js .wa-float:not(.is-visible) { translate: 0 calc(100% + 2rem); opacity: 0; pointer-events: none; }

@media (max-width: 480px) {
  .btn { letter-spacing: 0.02em; padding-inline: 1.1em; }
  .btn--lg { font-size: 0.9375rem; }
}

@media (max-width: 480px) {
  .wa-float { width: 60px; padding: 0; justify-content: center; }
  .wa-float__label { display: none; }
}

/* ---------- Aviso de cookies (LGPD) ---------- */

.consent {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  gap: 0.6rem;
  width: min(25.5rem, calc(100% - 2rem));
  padding: 1.1rem 1.2rem 1.2rem;
  border: var(--line) solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.consent[hidden] { display: none; }
.consent__title { font-weight: 600; }
.consent__text { color: var(--ink-white); font-size: var(--fs-small); line-height: 1.5; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }

@media (max-width: 560px) {
  .consent {
    left: 0.5rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    width: calc(100% - 1rem);
    gap: 0.35rem;
    padding: 0.85rem 0.95rem 0.95rem;
  }
  .consent__title { font-size: var(--fs-small); }
  .consent__text { font-size: 0.875rem; line-height: 1.45; }
  .consent__actions { flex-wrap: nowrap; }
  .consent__actions .btn { flex: 1; min-height: 44px; padding-inline: 0.6em; font-size: 0.8125rem; letter-spacing: 0.02em; }
}

/* ---------- Movimento ---------- */

@media (prefers-reduced-motion: no-preference) {
  .hero__title,
  .hero__lead,
  .hero__actions {
    animation: rise 1.05s var(--ease-out) both;
  }
  .hero__lead { animation-delay: 0.12s; }
  .hero__actions { animation-delay: 0.24s; }
}

@keyframes rise {
  from { opacity: 0.001; translate: 0 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
  .js .note__check path { transition: none; stroke-dashoffset: 0; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ---------- Página de privacidade ---------- */

.legal { padding-block: calc(var(--header-h) + 3rem) var(--section); }
.legal__inner { max-width: 44rem; }
.legal h1 { font-size: var(--fs-h2); margin-bottom: 1.25rem; }
.legal h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; letter-spacing: -0.02em; margin: 2.5rem 0 0.75rem; }
.legal p, .legal li { color: var(--ink-butter); }
.legal p + p { margin-top: 0.9rem; }
.legal ul { display: grid; gap: 0.5rem; padding-left: 1.2rem; margin: 0.75rem 0 0; }
.legal__updated { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: 0.06em; text-transform: uppercase; }
.legal__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }

@media print {
  .site-header, .wa-float, .consent, .marquee { display: none !important; }
  .why__title, .note { position: static; }
}
