/* =====================================================================
   SÁNALA BEM-ESTAR — Folha de estilos principal
   Paleta e tipografia derivadas da identidade da marca.
   Organização:
   01. Tokens        05. Header / Menu     09. Depoimentos
   02. Reset/base    06. Hero              10. Galeria / Instagram
   03. Tipografia    07. Sobre / Quem sou  11. FAQ / Contato / Mapa
   04. Componentes   08. Tratamentos/Prod. 12. Footer / Responsivo
   ===================================================================== */

/* ---------- 01. TOKENS ---------- */
:root {
  /* Cores — extraídas dos materiais oficiais da marca */
  --washi:      #F4EFE4;  /* creme papel (fundo principal) */
  --washi-2:    #E3EBE2;  /* verde suave (faixas alternadas) */
  --paper:      #FBF8F2;  /* quase branco quente */
  --sage:       #A2C2B0;  /* verde do logo Sánala */
  --sage-deep:  #6E9A83;
  --sage-mist:  #E4EDE7;
  --pine:       #2C4034;  /* verde floresta (seções escuras) */
  --pine-deep:  #1F2E25;
  --ink:        #2B2A26;  /* texto principal */
  --ink-soft:   #5F594F;  /* texto secundário */
  --clay:       #8A7256;  /* marrom */
  --terra:      #B5643F;  /* terracota (ação) */
  --terra-deep: #96502F;
  --hanko:      #C8352C;  /* vermelho do selo japonês (uso mínimo) */
  --gold:       #B08A4A;

  /* Tipografia */
  --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-jp: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;

  /* Ritmo */
  --shell: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 11vw, 9.5rem);
  --radius-arch: 50vw 50vw 0.75rem 0.75rem / 22vw 22vw 0.75rem 0.75rem;
  --radius-soft: 1.5rem;

  /* Movimento */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 900ms;
}

/* ---------- 02. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--washi);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.75;
  font-weight: 400;
  overflow-x: hidden;
  /* textura de papel washi, gerada em SVG (sem requisição extra) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--sage); color: var(--pine-deep); }

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

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--pine); color: var(--paper);
  padding: 0.75rem 1.25rem; border-radius: 0 0 0.5rem 0.5rem; z-index: 200;
  transition: transform 220ms var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

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

/* ---------- 03. TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 2.25rem; height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }

.section-title {
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.75rem);
  max-width: 20ch;
  color: var(--pine);
}
.section-title em { font-style: italic; color: var(--clay); }

.lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 58ch;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.prose p { color: var(--ink-soft); max-width: 60ch; }

.quote-display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.005em;
}

/* ---------- 04. COMPONENTES ---------- */
.btn {
  --btn-bg: var(--pine);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.9rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 380ms var(--ease), background-color 380ms var(--ease),
              color 380ms var(--ease), border-color 380ms var(--ease),
              box-shadow 380ms var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(44, 64, 52, 0.55);
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--terra { --btn-bg: var(--terra); }
.btn--terra:hover { --btn-bg: var(--terra-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: rgba(43, 42, 38, 0.28);
}
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--paper); }

.btn--light {
  --btn-bg: transparent;
  --btn-fg: var(--paper);
  border-color: rgba(251, 248, 242, 0.4);
}
.btn--light:hover { --btn-bg: var(--paper); --btn-fg: var(--pine); }

.btn--whats { --btn-bg: #1f7a4d; }
.btn--whats:hover { --btn-bg: #17603c; }

/* link com sublinhado que cresce */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pine);
  padding-bottom: 0.35rem;
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; opacity: 0.35;
  transform-origin: left;
  transform: scaleX(0.35);
  transition: transform 480ms var(--ease), opacity 480ms var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); opacity: 0.8; }

/* moldura orgânica (arco) para as fotos */
.arch {
  border-radius: 46% 46% 8px 8px / 26% 26% 8px 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(110, 154, 131, 0.28);
}
.softframe { border-radius: var(--radius-soft); overflow: hidden; }

.figure-wrap { position: relative; }
.figure-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* traço de pincel divisor */
.brushrule {
  display: block;
  width: 100%;
  max-width: 190px;
  height: 12px;
  color: var(--sage);
  opacity: 0.9;
}
.brushrule.is-centered { margin-inline: auto; }

/* seções */
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--washi-2); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--pine); color: var(--paper); }
.section--dark .lede,
.section--dark .prose p { color: rgba(251, 248, 242, 0.78); }
.section--dark .eyebrow { color: var(--sage); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head.is-centered { text-align: center; }
.section-head.is-centered .section-title { margin-inline: auto; }
.section-head.is-centered .lede { margin-inline: auto; }

/* animação de entrada */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 05. HEADER ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.15rem;
  transition: background-color 500ms var(--ease), padding 500ms var(--ease),
              box-shadow 500ms var(--ease), border-color 500ms var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(238, 243, 236, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(138, 114, 86, 0.16);
  padding-block: 0.7rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.header__logo img {
  height: clamp(46px, 5vw, 58px);
  width: auto;
  transition: height 500ms var(--ease);
}
.header.is-stuck .header__logo img { height: clamp(40px, 4vw, 48px); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.35rem;
  transition: color 320ms var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--sage-deep);
  transform: scaleX(0); transform-origin: right;
  transition: transform 420ms var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--pine); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__cta { padding: 0.8rem 1.5rem; font-size: 0.72rem; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(43, 42, 38, 0.2);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 50%; width: 18px; height: 1.5px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 420ms var(--ease), opacity 260ms var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--washi);
  padding: 6.5rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1.5rem);
  transition: opacity 460ms var(--ease), transform 460ms var(--ease), visibility 460ms;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.4rem);
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(138, 114, 86, 0.14);
  color: var(--pine);
}
.mobile-menu .btn { margin-top: 2rem; align-self: flex-start; }
.mobile-menu__foot {
  margin-top: 2.25rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 2;
}

/* ---------- 06. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7.5rem, 14vh, 9.5rem) clamp(5rem, 11vh, 7.5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
.hero__mark { width: clamp(112px, 13vw, 158px); margin-bottom: 1.75rem; }
.hero__title {
  display: block;
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero__claim {
  display: block;
  font-size: clamp(2.5rem, 1.4rem + 4.4vw, 4.5rem);
  line-height: 1.03;
  color: var(--pine);
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero__claim em { font-style: italic; color: var(--clay); }
.hero__text { max-width: 46ch; margin-bottom: 2.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__figure {
  position: relative;
  aspect-ratio: 3 / 4;
  max-height: 70svh;
  margin-inline: auto;
  width: 100%;
}
.hero__frame { width: 100%; height: 100%; }
.hero__figure img.hero__photo {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 60% 55%;
}
.hero__seal {
  position: absolute;
  bottom: -1.5rem; left: -1.75rem;
  width: clamp(74px, 9vw, 108px);
  filter: drop-shadow(0 8px 22px rgba(43, 42, 38, 0.18));
}
.hero__enso {
  mix-blend-mode: multiply;
  position: absolute;
  right: -12vw; top: 14%;
  width: min(58vw, 620px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.hero .shell { position: relative; z-index: 1; }
.hero__glow {
  position: absolute;
  width: 46vw; height: 46vw;
  left: -14vw; top: -10vw;
  background: radial-gradient(circle, rgba(162, 194, 176, 0.85), rgba(162, 194, 176, 0) 68%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55vh;
  background: linear-gradient(to top, rgba(162, 194, 176, 0.28), rgba(162, 194, 176, 0.34) 22%, rgba(162, 194, 176, 0.06) 62%, rgba(162, 194, 176, 0));
  pointer-events: none;
  z-index: 0;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.75rem;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  z-index: 1;
}
.hero__scroll i {
  display: block; width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--clay), transparent);
  animation: drip 2.6s var(--ease) infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 07. SOBRE / QUEM SOU ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--wide-text { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr); }

.about__figure { position: relative; }
.about__figure img { aspect-ratio: 4 / 5; }
.about__enso {
  mix-blend-mode: multiply;
  position: absolute;
  inset: auto -14% -12% auto;
  width: 58%;
  opacity: 0.12;
  pointer-events: none;
}
.about__note {
  margin-top: 2.25rem;
  padding-left: 1.35rem;
  border-left: 1px solid var(--sage);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--clay);
}

/* composição japonesa (assinatura visual) */
.hirata {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin-inline: auto;
}
.hirata__enso {
  mix-blend-mode: multiply;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0.92;
}
.hirata__hanko {
  position: relative;
  width: 33%;
  z-index: 1;
  filter: drop-shadow(0 6px 16px rgba(200, 53, 44, 0.18));
}
.hirata__kana {
  position: absolute;
  right: 4%; top: 8%;
  font-family: var(--font-jp);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  letter-spacing: 0.22em;
  color: var(--ink);
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0.85;
}
.hirata__caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.hirata__caption strong { color: var(--pine); font-weight: 600; }

.portrait-stack { position: relative; }
.portrait-stack img { width: 100%; }
.portrait-stack__badge {
  position: absolute;
  right: 6%; bottom: 2%;
  width: 30%;
  max-width: 118px;
}

.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--pine);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--sage);
}
.quote-block cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* bloco reservado para conteúdo futuro */
.placeholder {
  margin-top: 2.5rem;
  padding: 1.6rem 1.75rem;
  border: 1px dashed rgba(138, 114, 86, 0.4);
  border-radius: var(--radius-soft);
  background: rgba(162, 194, 176, 0.09);
}
.placeholder h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}
.placeholder p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- 08. TRATAMENTOS / PRODUTOS ---------- */
.treatments__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}
.tcard {
  padding: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  border-top: 1px solid rgba(110, 154, 131, 0.45);
  display: flex;
  flex-direction: column;
  transition: border-color 500ms var(--ease);
}
.tcard:hover { border-top-color: var(--sage-deep); }
.tcard__tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}
.tcard h3 {
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 1.95rem);
  margin-bottom: 0.9rem;
  color: var(--pine);
  transition: transform 500ms var(--ease);
}
.tcard:hover h3 { transform: translateX(4px); }
.tcard p { font-size: 0.97rem; color: var(--ink-soft); }
.tcard__actions { margin-top: auto; padding-top: 1.5rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }

.treatments__figure img { aspect-ratio: 4 / 5.2; object-position: 50% 42%; }

/* produtos */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
}
.pcard { display: flex; flex-direction: column; }
.pcard__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
  background: var(--sage-mist);
}
.pcard__media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 1200ms var(--ease);
}
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__ribbon {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: rgba(251, 248, 242, 0.94);
  color: var(--pine);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
}
.pcard__body { padding-top: 1.75rem; }
.pcard h3 {
  font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.35rem);
  color: var(--pine);
  margin-bottom: 0.35rem;
}
.pcard__sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}
.pcard p { color: var(--ink-soft); }
.pcard .btn { margin-top: 1.5rem; align-self: flex-start; }

/* vídeo dos produtos */
.videoblock {
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--pine-deep);
  aspect-ratio: 16 / 8;
}
.videoblock video, .videoblock__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.videoblock__poster { filter: saturate(0.92); }
.videoblock__veil {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(31, 46, 37, 0.94) 18%, rgba(31, 46, 37, 0.72) 55%, rgba(31, 46, 37, 0.42));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--paper);
}
.videoblock__veil h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem); max-width: 16ch; }
.videoblock__veil p { font-size: 0.9rem; color: rgba(251, 248, 242, 0.75); max-width: 38ch; }
.videoblock__play {
  width: 66px; height: 66px;
  border-radius: 999px;
  border: 1px solid rgba(251, 248, 242, 0.5);
  background: rgba(251, 248, 242, 0.12);
  display: grid; place-items: center;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background-color 420ms var(--ease), transform 420ms var(--ease);
}
.videoblock__play:hover { background: var(--paper); transform: scale(1.06); }
.videoblock__play:hover svg { fill: var(--pine); }
.videoblock__play svg { width: 20px; height: 20px; fill: var(--paper); margin-left: 3px; }
.videoblock.is-playing .videoblock__veil,
.videoblock.is-playing .videoblock__poster { opacity: 0; pointer-events: none; }
.videoblock__veil, .videoblock__poster { transition: opacity 600ms var(--ease); }

/* ---------- espaço ---------- */
.space {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.space__figure { grid-column: 4 / -1; grid-row: 1; }
.space__figure img { aspect-ratio: 16 / 11; width: 100%; object-fit: cover; object-position: 50% 62%; }
.space__card {
  grid-column: 1 / 6;
  grid-row: 1;
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-soft);
  z-index: 1;
  box-shadow: 0 30px 60px -40px rgba(43, 42, 38, 0.35);
}

/* ---------- 09. DEPOIMENTOS ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.tstm {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.tstm__photo {
  width: 116px; height: 116px;
  border-radius: 999px;
  overflow: hidden;
  flex: none;
  border: 1px solid rgba(162, 194, 176, 0.45);
}
.tstm__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.tstm blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.95rem);
  line-height: 1.42;
}
.tstm__mark {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  height: 1.4rem;
  color: var(--sage);
}
.tstm__who {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.disclaimer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(251, 248, 242, 0.16);
  font-size: 0.82rem;
  color: rgba(251, 248, 242, 0.6);
  max-width: 72ch;
}

/* ---------- 10. GALERIA / INSTAGRAM ---------- */
.gallery {
  columns: 3;
  column-gap: clamp(0.75rem, 1.4vw, 1.15rem);
}
.gallery figure {
  margin: 0 0 clamp(0.75rem, 1.4vw, 1.15rem);
  break-inside: avoid;
  overflow: hidden;
  border-radius: 0.85rem;
  position: relative;
  cursor: zoom-in;
  background: var(--washi-2);
}
.gallery img {
  width: 100%;
  transition: transform 1400ms var(--ease), filter 800ms var(--ease);
}
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31, 46, 37, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption {
  position: absolute;
  left: 1rem; bottom: 0.9rem;
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
  z-index: 1;
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(31, 46, 37, 0.94);
  display: grid; place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 380ms var(--ease), visibility 380ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86svh; border-radius: 0.5rem; }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 46px; height: 46px; border-radius: 999px;
  background: transparent; border: 1px solid rgba(251, 248, 242, 0.4);
  color: var(--paper); cursor: pointer; font-size: 1.1rem;
}

/* instagram */
.insta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.phone {
  position: relative;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 2.4rem;
  padding: 0.7rem;
  background: linear-gradient(160deg, #3b3b38, #1d1d1b);
  box-shadow: 0 40px 70px -40px rgba(43, 42, 38, 0.7);
}
.phone img { border-radius: 1.9rem; width: 100%; }
.insta__tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
  margin-top: 2.25rem;
  max-width: 520px;
}
.insta__tiles img { border-radius: 0.85rem; aspect-ratio: 1; object-fit: cover; }
.insta__handle {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  color: var(--pine);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- 11. FAQ / CONTATO / MAPA ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(110, 154, 131, 0.35); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem);
  color: var(--pine);
  cursor: pointer;
  position: relative;
  transition: color 320ms var(--ease);
}
.faq__q:hover { color: var(--terra); }
.faq__q::after, .faq__q::before {
  content: "";
  position: absolute;
  right: 0.35rem; top: 50%;
  width: 14px; height: 1px;
  background: currentColor;
  transition: transform 460ms var(--ease);
}
.faq__q::before { transform: rotate(90deg); }
.faq__item.is-open .faq__q::before { transform: rotate(0deg); }
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 460ms var(--ease);
}
.faq__a > div { padding: 0 3rem 1.75rem 0; color: var(--ink-soft); }

/* contato */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__list { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 1.35rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list svg { width: 1.15rem; height: 1.15rem; color: var(--sage); flex: none; margin-top: 0.35rem; }
.contact__list span { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); }
.contact__list a, .contact__list p { font-size: 1.05rem; margin: 0; }
.contact__list a:hover { color: var(--terra); }

.form {
  background: var(--paper);
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-soft);
  box-shadow: 0 30px 60px -45px rgba(43, 42, 38, 0.4);
}
.field { margin-bottom: 1.35rem; }
.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.55rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 0.25rem;
  border: 0;
  border-bottom: 1px solid rgba(110, 154, 131, 0.45);
  background: transparent;
  border-radius: 0;
  transition: border-color 380ms var(--ease);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--sage-deep);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }
.form .btn { width: 100%; margin-top: 0.5rem; }
.form__hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }
.form__status { font-size: 0.85rem; margin-top: 0.85rem; text-align: center; color: var(--terra); min-height: 1.2em; }

/* mapa */
.map { position: relative; }
.map__frame {
  border-radius: var(--radius-soft);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  min-height: 300px;
  background: var(--washi-2);
  filter: grayscale(0.25) sepia(0.08);
}
.map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CTA final */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 3.6rem);
  max-width: 22ch;
  margin-inline: auto;
  color: var(--paper);
}
.cta-band .btn { margin-top: 2.25rem; }

/* whatsapp flutuante */
.floatwhats {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: #1f7a4d;
  display: grid; place-items: center;
  box-shadow: 0 16px 34px -14px rgba(31, 122, 77, 0.7);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(0.9);
  transition: opacity 460ms var(--ease), transform 460ms var(--ease), visibility 460ms;
}
.floatwhats.is-visible { opacity: 1; visibility: visible; transform: none; }
.floatwhats:hover { transform: scale(1.07); }
.floatwhats svg { width: 27px; height: 27px; fill: #fff; }

/* ---------- 12. FOOTER ---------- */
.footer {
  background: var(--pine-deep);
  color: rgba(251, 248, 242, 0.72);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2.25rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2.25rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251, 248, 242, 0.12);
}
.footer__logo { width: 150px; margin-bottom: 1.5rem; filter: brightness(1.35); }
.footer__claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--sage);
  max-width: 20ch;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.35rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; font-size: 0.95rem; }
.footer a:hover { color: var(--paper); }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(251, 248, 242, 0.45);
}

/* ---------- RESPONSIVO ---------- */
@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__figure { aspect-ratio: 4 / 3.4; max-height: 46svh; order: -1; }
  .hero__seal { bottom: -1rem; left: auto; right: -0.75rem; }
  .hero__claim { max-width: none; }
  .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55vh;
  background: linear-gradient(to top, rgba(162, 194, 176, 0.28), rgba(162, 194, 176, 0.34) 22%, rgba(162, 194, 176, 0.06) 62%, rgba(162, 194, 176, 0));
  pointer-events: none;
  z-index: 0;
}

.hero__scroll { display: none; }
  .split, .split--wide-text, .contact, .insta { grid-template-columns: 1fr; }
  .space { display: block; }
  .space__card { margin: -3.5rem clamp(0rem, 3vw, 2rem) 0; position: relative; }
  .gallery { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .treatments__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; }
  .hero__actions .btn { flex: 1 1 100%; }
  .gallery { columns: 2; }
  .insta__tiles { max-width: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .tstm { gap: 1.25rem; }
  .quote-block { padding-left: 1rem; }
  .videoblock { aspect-ratio: 4 / 5; }
  .map__frame { aspect-ratio: 1 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* =====================================================================
   13. MOVIMENTO — animações adicionais
   ===================================================================== */

/* barra de progresso da leitura */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--sage), var(--pine));
  z-index: 101;
  transition: transform 140ms linear;
  pointer-events: none;
}

/* revelação das imagens: cortina de baixo para cima */
.wipe {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1150ms var(--ease);
  transition-delay: var(--wipe-delay, 0ms);
}
.wipe.is-shown { clip-path: inset(0 0 0 0); }
.wipe > img, .wipe.pcard__media > img {
  transform: scale(1.08);
  transition: transform 1600ms var(--ease);
  transition-delay: var(--wipe-delay, 0ms);
}
.wipe.is-shown > img { transform: scale(1); }
.pcard:hover .pcard__media.wipe.is-shown > img { transform: scale(1.045); }
#gallery figure.wipe.is-shown img { transform: scale(1); }
#gallery figure.wipe.is-shown:hover img { transform: scale(1.06); }

/* título do hero, palavra por palavra */
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(1.5deg);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--w, 0ms);
}
.hero__claim.is-visible .word { opacity: 1; transform: none; }

/* fio do rótulo cresce ao aparecer */
.eyebrow::before { width: 0; transition: width 800ms var(--ease) 180ms; }
.is-visible .eyebrow::before, .is-visible.eyebrow::before { width: 2.25rem; }

/* traço de pincel se desenha */
.brushrule path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1600ms var(--ease) 300ms;
}
.is-visible .brushrule path { stroke-dashoffset: 0; }

/* selo e círculo com respiração lenta */
.hero__seal { animation: flutuar 7s ease-in-out infinite; }
@keyframes flutuar {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(-1.5deg); }
}
.hero__enso { animation: girar 140s linear infinite; }
@keyframes girar { to { transform: rotate(360deg); } }

/* brilho que atravessa os botões no hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 750ms var(--ease);
}
.btn:hover::after { left: 120%; }
.btn > * { position: relative; z-index: 1; }

/* rótulo dos tratamentos se abre no hover */
.tcard__tag { transition: letter-spacing 600ms var(--ease), color 600ms var(--ease); }
.tcard:hover .tcard__tag { letter-spacing: 0.26em; color: var(--pine); }

/* fotos dos depoimentos entram com leve zoom */
.tstm__photo {
  transform: scale(0.86);
  opacity: 0;
  transition: transform 900ms var(--ease), opacity 900ms var(--ease);
}
.tstm.is-visible .tstm__photo { transform: none; opacity: 1; }

/* aspas dos depoimentos */
.tstm.is-visible .tstm__mark { animation: surgir 1100ms var(--ease) 260ms both; }
@keyframes surgir {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* celular do Instagram flutua devagar */
.phone { animation: flutuar-suave 9s ease-in-out infinite; }
@keyframes flutuar-suave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* cartões de tratamento sobem um fio no hover */
.tcard { transition: border-color 500ms var(--ease), transform 500ms var(--ease); }
.tcard:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  .wipe, .word, .tstm__photo { clip-path: none !important; opacity: 1 !important; transform: none !important; }
  .brushrule path { stroke-dashoffset: 0 !important; }
  .eyebrow::before { width: 2.25rem !important; }
  .hero__seal, .hero__enso, .phone { animation: none !important; }
  .progress { display: none; }
}
