/* =========================================================
   Clínica Saúde e Vida — sistema visual
   Identidade: azul-marinho #174A7C → azul-céu #6EC1E8 (das logos)
   Estratégia de cor: Restrained luminoso, com blocos marinho
   para quebra de ritmo. Superfícies tingidas para o azul da
   marca (nunca para o creme/warm padrão).
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* marca */
  --brand-900: oklch(0.285 0.078 254);   /* marinho profundo — seções escuras */
  --brand-800: oklch(0.380 0.105 253);   /* azul da logo */
  --brand-700: oklch(0.455 0.120 250);
  --brand-600: oklch(0.545 0.126 245);
  --brand-400: oklch(0.735 0.104 233);   /* azul-céu da logo */
  --brand-300: oklch(0.830 0.072 231);
  --brand-200: oklch(0.895 0.045 230);
  --brand-100: oklch(0.945 0.024 231);
  --brand-050: oklch(0.972 0.012 232);   /* superfície azul-gelo */

  /* neutros tingidos para o azul */
  --bg:        oklch(1 0 0);
  --ink:       oklch(0.235 0.038 254);
  --ink-2:     oklch(0.440 0.030 252);   /* 5.4:1 no branco */
  --ink-3:     oklch(0.560 0.026 250);   /* apenas texto grande / meta */
  --line:      oklch(0.905 0.016 240);
  --line-2:    oklch(0.945 0.012 238);

  /* sobre fundo escuro */
  --on-dark:     oklch(0.985 0.004 240);
  --on-dark-2:   oklch(0.855 0.026 234);  /* 8.4:1 no brand-900 */
  --on-dark-line: color-mix(in oklab, var(--on-dark) 16%, transparent);

  /* funcional */
  --whats:     oklch(0.665 0.170 146);
  --whats-ink: oklch(0.430 0.130 146);
  --danger:    oklch(0.520 0.185 26);
  --focus:     oklch(0.600 0.180 250);

  /* tipografia */
  --f-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Petrona", Georgia, "Times New Roman", serif;

  --t-display: clamp(2.4rem, 1.15rem + 5.05vw, 4.7rem);
  --t-h2:      clamp(1.95rem, 1.32rem + 2.5vw, 3.15rem);
  --t-h3:      clamp(1.13rem, 1.02rem + 0.44vw, 1.4rem);
  --t-lede:    clamp(1.05rem, 0.98rem + 0.32vw, 1.24rem);
  --t-body:    clamp(1rem, 0.965rem + 0.15vw, 1.06rem);
  --t-sm:      0.9rem;
  --t-xs:      0.795rem;

  /* espaço */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 0.7rem + 2.6vw, 3rem);
  --sec-y: clamp(4.5rem, 3rem + 6.4vw, 8.75rem);
  --gap: clamp(1rem, 0.6rem + 1.5vw, 1.6rem);

  /* forma */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-1: 0 1px 2px oklch(0.30 0.06 253 / 0.05), 0 4px 14px oklch(0.30 0.06 253 / 0.05);
  --sh-2: 0 2px 6px oklch(0.30 0.06 253 / 0.06), 0 18px 44px oklch(0.30 0.06 253 / 0.10);
  --sh-3: 0 24px 70px oklch(0.28 0.07 253 / 0.20);

  /* motion */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);          /* quint */
  --e-out-soft: cubic-bezier(0.16, 1, 0.3, 1);      /* expo */
  --d-1: 160ms;
  --d-2: 280ms;
  --d-3: 620ms;

  /* camadas */
  --z-base: 0;
  --z-raise: 10;
  --z-sticky: 100;
  --z-fab: 200;
  --z-bfly: 250;
  --z-scrim: 300;
  --z-panel: 310;

  /* Borboleta em homenagem. O rosa é intencional e não deve ser
     trocado pelo azul da marca. */
  --bfly-1: oklch(0.90 0.055 350);
  --bfly-2: oklch(0.78 0.125 353);
  --bfly-3: oklch(0.66 0.175 357);
  --bfly-ink: oklch(0.16 0.01 340);
  --bfly-dust: oklch(0.76 0.155 352);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.62;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -120%;
  z-index: var(--z-panel);
  background: var(--brand-800);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 600;
  text-decoration: none;
  transition: translate var(--d-2) var(--e-out);
}
.skip-link:focus-visible { translate: -50% 0; }

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

.ico {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.todo {
  background: oklch(0.93 0.09 92);
  color: oklch(0.34 0.08 70);
  padding: 0.05em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
  font-weight: 600;
  font-style: normal;
}

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--brand-800);
  --btn-ink: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-ink);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--d-1) var(--e-out), color var(--d-1) var(--e-out),
              box-shadow var(--d-2) var(--e-out), translate var(--d-2) var(--e-out),
              border-color var(--d-1) var(--e-out);
}
.btn--primary { box-shadow: 0 1px 2px oklch(0.30 0.06 253 / 0.18), 0 10px 24px oklch(0.38 0.10 253 / 0.24); }
.btn--primary:hover { --btn-bg: var(--brand-700); translate: 0 -2px; box-shadow: 0 2px 4px oklch(0.30 0.06 253 / 0.20), 0 16px 32px oklch(0.38 0.10 253 / 0.30); }
.btn--primary:active { translate: 0 0; --btn-bg: var(--brand-900); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--brand-800);
  border-color: var(--brand-200);
}
.btn--ghost:hover { --btn-bg: var(--brand-050); border-color: var(--brand-300); translate: 0 -2px; }

.btn--sm { padding: 0.68rem 1.15rem; font-size: var(--t-xs); }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

/* botão sobre fundo escuro — não vale dentro do formulário, que é um
   cartão branco e por isso mantém o primário marinho */
.section--dark .btn--primary:not(.form *) { --btn-bg: var(--brand-400); --btn-ink: oklch(0.24 0.06 254); }
.section--dark .btn--primary:not(.form *):hover { --btn-bg: var(--brand-300); }

/* =========================================================
   HEADER
   ========================================================= */
/* O fundo translúcido vive num ::before, não no próprio .header.
   `backdrop-filter` no elemento o tornaria bloco contentor de
   descendentes `position: fixed` — e o painel do menu mobile ficaria
   preso dentro da altura do header em vez de ocupar a viewport. */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  border-bottom: 1px solid transparent;
  transition: border-color var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  transition: background var(--d-2) var(--e-out);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px oklch(0.30 0.06 253 / 0.06);
}
.header.is-stuck::before { background: color-mix(in oklab, var(--bg) 94%, transparent); }

/* Com o menu aberto o header precisa superar o scrim: o painel vive
   dentro do contexto de empilhamento dele. */
body.menu-open .header { z-index: var(--z-panel); }
/* o burger vira o "fechar" e precisa ficar acima do painel */
body.menu-open .burger { position: relative; z-index: calc(var(--z-panel) + 10); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  /* altura fixa de propósito: encolher o header no scroll animaria uma
     propriedade de layout e empurraria a página inteira a cada quadro.
     O estado "grudado" é comunicado por fundo, borda e sombra. */
  min-height: 4.9rem;
}

.brand { display: block; flex: none; }
.brand img {
  width: auto;
  height: clamp(2rem, 1.6rem + 1.2vw, 2.45rem);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.9rem);
  list-style: none;
  padding: 0;
}
.nav__list a {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  color: var(--ink-2);
  font-size: var(--t-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--d-1) var(--e-out);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-600);
  scale: 0 1;
  transform-origin: left;
  transition: scale var(--d-2) var(--e-out);
}
.nav__list a:hover { color: var(--brand-800); }
.nav__list a:hover::after,
.nav__list a[aria-current="true"]::after { scale: 1 1; }
.nav__list a[aria-current="true"] { color: var(--brand-800); font-weight: 600; }

/* hambúrguer */
.burger {
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  cursor: pointer;
}
/* As duas barras ficam absolutas no centro: assim o estado aberto
   cruza exatamente, sem depender de margem entre elas. */
.burger { position: relative; }
.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1rem;
  height: 2px;
  margin-left: -0.55rem;
  margin-top: -1px;
  border-radius: 2px;
  background: var(--brand-800);
  transition: translate var(--d-2) var(--e-out), rotate var(--d-2) var(--e-out);
}
.burger span:first-child { translate: 0 -3.5px; }
.burger span:last-child { translate: 0 3.5px; }
.burger[aria-expanded="true"] span:first-child { translate: 0 0; rotate: 45deg; }
.burger[aria-expanded="true"] span:last-child { translate: 0 0; rotate: -45deg; }

.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: oklch(0.24 0.05 254 / 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--d-2) var(--e-out);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

/* =========================================================
   HERO — carrossel de 2 slides

   Empilhamento dentro de cada slide:
     foto (0) → tratamento sobre a foto (1) → varredura branca (2)
     → selo (4) → conteúdo (5)
   A varredura é um círculo de raio --sweep-r centrado em
   (--sweep-x, --sweep-y): dentro fica branco, fora aparece a
   foto. É o CSS que recorta a imagem, então a curva acompanha
   qualquer largura de tela. Mesma mecânica da referência.
   ========================================================= */
.hero {
  position: relative;
  min-height: min(calc(100svh - 4.9rem), 790px);
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.hero__viewport { position: absolute; inset: 0; }

.slide {
  --sweep-r: 57vw;
  --sweep-x: -3vw;
  --sweep-y: 50%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms var(--e-out-soft), visibility 800ms;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

/* ---- foto ---- */
.slide__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 38%;
}
#slide-2 .slide__media img { object-position: 58% 42%; }

/* Tratamento sobre a foto: brilho azul-céu da marca no canto superior
   direito e escurecimento para a esquerda. Garante a cor da marca mesmo
   com foto fria e dá contraste ao selo, às setas e aos pontos. */
.slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(72% 84% at 92% 2%, oklch(0.735 0.104 233 / 0.46), oklch(0.545 0.126 245 / 0.18) 44%, transparent 68%),
    linear-gradient(108deg, oklch(0.22 0.055 254 / 0.72) 0%, oklch(0.22 0.055 254 / 0.34) 44%, oklch(0.22 0.055 254 / 0.14) 72%, oklch(0.22 0.055 254 / 0.28) 100%);
}
/* Zoom de saída: termina no enquadramento cheio, então o topo do
   assunto nunca é cortado no estado final. */
.slide.is-active .slide__media img { animation: kenburns 14s var(--e-out-soft) forwards; }
@keyframes kenburns { from { scale: 1.065; } to { scale: 1; } }

/* ---- varredura branca (a curva) ---- */
.slide__panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
  background: radial-gradient(
    circle var(--sweep-r) at var(--sweep-x) var(--sweep-y),
    var(--bg) 99.4%, transparent 99.7%
  );
}

/* ---- conteúdo ---- */
.slide__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  pointer-events: auto;
}
.slide__content > * { max-width: min(33rem, 41vw); }

.slide__kicker {
  margin-bottom: 1.15rem;
  color: var(--brand-700);
  font-size: var(--t-sm);
  font-weight: 600;
}
.slide__kicker::before {
  content: "";
  display: inline-block;
  width: 1.9rem;
  height: 2px;
  margin-right: 0.7rem;
  vertical-align: 0.28em;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand-800), var(--brand-400));
}

.slide__title {
  font-size: var(--t-display);
  font-weight: 800;
  font-stretch: 96%;
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: var(--brand-900);
  text-wrap: balance;
}
.slide__title .accent { color: var(--brand-600); }
.slide__title .dot { color: var(--brand-400); }

.slide__lede {
  margin-top: 1.35rem;
  color: var(--ink-2);
  font-size: var(--t-lede);
  line-height: 1.6;
}
.slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.15rem;
}

/* ---- selo sobre a foto ---- */
.slide__badge {
  position: absolute;
  z-index: 4;
  /* canto inferior direito, acima do botão flutuante do WhatsApp */
  bottom: clamp(5.75rem, 5rem + 3vh, 7rem);
  right: clamp(1rem, 2.4vw, 1.9rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  max-width: 16.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--r-md);
  background: oklch(0.19 0.048 254 / 0.74);
  border: 1px solid oklch(1 0 0 / 0.18);
  backdrop-filter: blur(10px);
  text-align: right;
}
.slide__badge span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.78);
}
.slide__badge strong { color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.slide__badge em { color: oklch(1 0 0 / 0.84); font-size: 0.7rem; font-style: normal; font-weight: 600; }

/* ---- entrada escalonada do conteúdo ---- */
.js .slide.is-active .slide__kicker,
.js .slide.is-active .slide__title,
.js .slide.is-active .slide__lede,
.js .slide.is-active .slide__actions,
.js .slide.is-active .slide__badge { animation: slideIn 780ms var(--e-out-soft) backwards; }
.js .slide.is-active .slide__title  { animation-delay: 90ms; }
.js .slide.is-active .slide__lede   { animation-delay: 170ms; }
.js .slide.is-active .slide__actions{ animation-delay: 250ms; }
.js .slide.is-active .slide__badge  { animation-delay: 330ms; }
@keyframes slideIn { from { opacity: 0; translate: 0 22px; } to { opacity: 1; translate: 0 0; } }

/* ---- setas ---- */
.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(8px);
  color: var(--brand-800);
  box-shadow: var(--sh-1);
  cursor: pointer;
  transition: background var(--d-1) var(--e-out), color var(--d-1) var(--e-out),
              scale var(--d-2) var(--e-out), border-color var(--d-1) var(--e-out);
}
.hero__arrow svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hero__arrow:hover { background: var(--brand-800); border-color: var(--brand-800); color: #fff; scale: 1.07; }
.hero__arrow--prev { left: clamp(0.75rem, 1.4vw, 1.25rem); }
.hero__arrow--next { right: clamp(0.75rem, 1.4vw, 1.25rem); }
@media (max-width: 1180px) { .hero__arrow { display: none; } }

/* ---- pontos ---- */
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(1.15rem, 3vh, 1.85rem);
  z-index: 6;
  translate: -50% 0;
  display: flex;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: oklch(0.20 0.05 254 / 0.42);
  backdrop-filter: blur(8px);
}
/* `width` aqui é animação de layout, mas o contêiner tem dois filhos de
   9px e nenhum irmão depois: o custo é nulo e qualquer alternativa por
   transform distorce o raio da pílula. Escolha consciente. */
.hero__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.5);
  cursor: pointer;
  transition: width var(--d-2) var(--e-out), background var(--d-2) var(--e-out);
}
.hero__dots button[aria-selected="true"] { width: 30px; background: var(--brand-400); }

/* A barra corre por scaleX (composited), não por width. */
.hero__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  height: 3px;
  width: 100%;
  background: var(--brand-400);
  box-shadow: 0 0 12px oklch(0.735 0.104 233 / 0.6);
  transform-origin: left center;
  scale: 0 1;
}
.hero__progress.is-running { transition: scale linear; }

.sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* faixa de método */
.stripe { border-block: 1px solid var(--line); background: var(--brand-050); }
.stripe__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
.stripe__list li {
  padding: 1.35rem clamp(0.5rem, 1.6vw, 1.75rem);
  color: var(--brand-900);
  font-size: var(--t-sm);
  font-weight: 500;
  line-height: 1.4;
}
.stripe__list li + li { border-left: 1px solid var(--brand-200); }
.stripe__list li::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.65rem;
  vertical-align: 0.14em;
  border-radius: 50%;
  background: var(--brand-400);
}

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding-block: var(--sec-y); }
.section--soft { background: var(--brand-050); }
.section--dark {
  background:
    radial-gradient(80% 100% at 100% 0%, oklch(0.38 0.105 253 / 0.55), transparent 60%),
    var(--brand-900);
  color: var(--on-dark);
}
.section--dark p { color: var(--on-dark-2); }

.sec-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 1.6rem + 2.6vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-title {
  font-size: var(--t-h2);
  font-stretch: 97%;
  letter-spacing: -0.033em;
  color: var(--brand-900);
}
.section--dark .sec-title { color: var(--on-dark); }
.sec-lede {
  max-width: 56ch;
  margin-top: 1.1rem;
  color: var(--ink-2);
  font-size: var(--t-lede);
}
.sec-head--center .sec-lede { margin-inline: auto; }

/* =========================================================
   TRATAMENTOS
   ========================================================= */
.treat {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.treat__item {
  position: relative;
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--bg);
  transition: box-shadow var(--d-3) var(--e-out), translate var(--d-3) var(--e-out),
              border-color var(--d-2) var(--e-out);
}
.treat__item--wide { grid-column: span 7; }

.treat__item:hover {
  translate: 0 -4px;
  border-color: var(--brand-200);
  box-shadow: var(--sh-2);
}

.treat__item img {
  width: 100%;
  height: clamp(200px, 22vw, 285px);
  object-fit: cover;
  object-position: center 42%;
  transition: scale var(--d-3) var(--e-out-soft);
}
.treat__item:hover img { scale: 1.035; }
.treat__item.has-media { overflow: clip; }

.treat__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.4rem, 1rem + 1.2vw, 2rem);
}
.treat__body h3 {
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--brand-900);
}
.treat__body h3 .with {
  display: block;
  margin-top: 0.35rem;
  color: var(--brand-700);
  font-family: var(--f-serif);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
}
.treat__body p {
  margin-top: 0.7rem;
  color: var(--ink-2);
  font-size: var(--t-sm);
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding: 1.25rem 0 0;
  list-style: none;
}
.tags li {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  color: var(--brand-700);
  font-size: var(--t-xs);
  font-weight: 500;
}

.treat__item--soft { background: var(--brand-050); border-color: var(--brand-100); }
.treat__item--soft .tags li { background: var(--bg); border-color: var(--brand-200); }

.treat__item--dark {
  background:
    radial-gradient(90% 130% at 100% 0%, oklch(0.545 0.126 245 / 0.5), transparent 62%),
    var(--brand-900);
  border-color: transparent;
}
.treat__item--dark h3 { color: var(--on-dark); }
.treat__item--dark p { color: var(--on-dark-2); }

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 0.8rem + 2vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}
.steps__item { position: relative; padding-top: 3.6rem; }
.steps__item::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 3.2rem;
  right: calc(-1 * clamp(1.5rem, 0.8rem + 2vw, 2.5rem));
  height: 1px;
  background: var(--on-dark-line);
}
.steps__item:last-child::before { display: none; }

.steps__num {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  background: oklch(0.985 0.004 240 / 0.06);
  color: var(--brand-400);
  font-size: 0.95rem;
  font-weight: 700;
}
.steps__item h3 { font-size: var(--t-h3); color: var(--on-dark); }
.steps__item p { margin-top: 0.65rem; font-size: var(--t-sm); line-height: 1.62; }

.quote {
  max-width: 44rem;
  margin: clamp(3rem, 2rem + 3vw, 4.75rem) auto 0;
  padding-top: clamp(2rem, 1.4rem + 2vw, 3rem);
  border-top: 1px solid var(--on-dark-line);
  text-align: center;
}
.quote span {
  display: block;
  color: var(--on-dark);
  font-family: var(--f-serif);
  font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.72rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.42;
  text-wrap: balance;
}
.quote cite {
  display: block;
  margin-top: 1.1rem;
  color: var(--brand-300);
  font-size: var(--t-xs);
  font-style: normal;
  font-weight: 600;
}

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--brand-200);
}
.perks li {
  padding: clamp(1.6rem, 1.1rem + 1.4vw, 2.35rem) clamp(0rem, -0.5rem + 2vw, 2rem)
           clamp(1.6rem, 1.1rem + 1.4vw, 2.35rem) 0;
  border-bottom: 1px solid var(--brand-200);
}
.perks li:not(:nth-child(3n)) { border-right: 1px solid var(--brand-200); }
.perks li:not(:nth-child(3n+1)) { padding-left: clamp(1.25rem, 0.6rem + 2vw, 2.35rem); }
.perks .ico {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--brand-600);
  stroke-width: 1.4;
}
.perks h3 {
  margin-top: 0.95rem;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--brand-900);
}
.perks p { margin-top: 0.45rem; color: var(--ink-2); font-size: var(--t-sm); line-height: 1.58; }

/* =========================================================
   A CLÍNICA
   ========================================================= */
.clinic {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
}
.clinic__media { margin: 0; position: sticky; top: 7rem; }
.clinic__media img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: 90px var(--r-xl) var(--r-xl) var(--r-xl);
  box-shadow: var(--sh-2);
}
.clinic__copy > p {
  max-width: 60ch;
  margin-top: 1.15rem;
  color: var(--ink-2);
  font-size: var(--t-lede);
}
.clinic__copy > .sec-title + p { margin-top: 1.6rem; }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-top: clamp(2rem, 1.4rem + 2vw, 3rem);
  padding-top: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.team__card { display: flex; align-items: flex-start; gap: 1rem; }
.team__mono {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.team__mono--alt { background: linear-gradient(135deg, var(--brand-600), var(--brand-400)); }
.team__photo {
  width: 3.5rem;
  height: 3.5rem;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
}
.team__card h3 { font-size: 1.03rem; letter-spacing: -0.018em; color: var(--brand-900); }
.team__role { margin-top: 0.15rem; color: var(--brand-700); font-size: var(--t-xs); font-weight: 600; }
.team__desc { margin-top: 0.3rem; color: var(--ink-2); font-size: var(--t-xs); line-height: 1.5; }

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.local {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
}
.facts { margin: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem) 0 2.25rem; }
.facts > div { padding: 1.1rem 0; border-top: 1px solid var(--brand-200); }
.facts > div:last-child { border-bottom: 1px solid var(--brand-200); }
.facts dt {
  color: var(--brand-700);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.005em;
}
.facts dd { margin: 0.3rem 0 0; color: var(--ink-2); font-size: var(--t-sm); line-height: 1.6; }
.facts dd a { color: var(--brand-800); font-weight: 600; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.local__map {
  overflow: hidden;
  border: 1px solid var(--brand-200);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  background: var(--brand-100);
}
.local__map iframe {
  width: 100%;
  height: clamp(300px, 42vw, 470px);
  border: 0;
  filter: saturate(0.82);
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(2.25rem, 1.2rem + 4vw, 4.5rem);
}
.contact .sec-lede { color: var(--on-dark-2); }

.contact__links { margin: clamp(2rem, 1.4rem + 2vw, 3rem) 0 0; padding: 0; list-style: none; }
.contact__links li + li { margin-top: 0.6rem; }
.contact__links a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-md);
  background: oklch(0.985 0.004 240 / 0.045);
  color: var(--on-dark);
  text-decoration: none;
  transition: background var(--d-2) var(--e-out), border-color var(--d-2) var(--e-out), translate var(--d-2) var(--e-out);
}
.contact__links a:hover {
  background: oklch(0.985 0.004 240 / 0.1);
  border-color: color-mix(in oklab, var(--brand-400) 55%, transparent);
  translate: 4px 0;
}
.contact__links .ico { width: 1.4rem; height: 1.4rem; color: var(--brand-400); }
.contact__links span { display: flex; flex-direction: column; font-size: var(--t-sm); color: var(--on-dark-2); }
.contact__links strong { color: var(--on-dark); font-size: var(--t-xs); font-weight: 700; }

/* formulário */
.form {
  padding: clamp(1.5rem, 1rem + 1.8vw, 2.35rem);
  border-radius: var(--r-lg);
  background: var(--bg);
  box-shadow: var(--sh-3);
}
.form__intro {
  margin-bottom: 1.35rem;
  color: var(--ink-2) !important;
  font-size: var(--t-sm);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--brand-900);
  font-size: var(--t-xs);
  font-weight: 700;
}
.field .opt { color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--brand-050);
  color: var(--ink);
  font-size: var(--t-sm);
  line-height: 1.5;
  transition: border-color var(--d-1) var(--e-out), background var(--d-1) var(--e-out),
              box-shadow var(--d-1) var(--e-out);
}
.field textarea { resize: vertical; min-height: 5.5rem; }
.field ::placeholder { color: var(--ink-3); opacity: 1; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--brand-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--bg);
  border-color: var(--brand-600);
  box-shadow: 0 0 0 3px oklch(0.545 0.126 245 / 0.16);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23456' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.15rem;
  padding-right: 2.4rem;
}
.field.is-invalid input { border-color: var(--danger); background: oklch(0.97 0.02 26); }
.field__err { margin-top: 0.35rem; color: var(--danger) !important; font-size: var(--t-xs); font-weight: 600; }

.form__note {
  margin-top: 1rem;
  color: var(--ink-3) !important;
  font-size: var(--t-xs);
  line-height: 1.5;
  text-align: center;
}
.form__note.is-ok { color: var(--whats-ink) !important; font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--brand-050); border-top: 1px solid var(--brand-200); }
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  padding-block: clamp(2.75rem, 2rem + 2.5vw, 4.25rem);
}
.footer__brand img { width: auto; height: 2.3rem; }
.footer__brand p { margin-top: 1.1rem; max-width: 34ch; color: var(--ink-2); font-size: var(--t-xs); line-height: 1.65; }
.footer h2 {
  margin-bottom: 0.9rem;
  color: var(--brand-900);
  font-size: var(--t-xs);
  font-weight: 700;
}
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 0.45rem; color: var(--ink-2); font-size: var(--t-xs); line-height: 1.6; }
.footer li a { color: var(--ink-2); text-decoration: none; transition: color var(--d-1) var(--e-out); }
.footer li a:hover { color: var(--brand-800); text-decoration: underline; text-underline-offset: 3px; }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid var(--brand-200);
  color: var(--ink-3);
  font-size: var(--t-xs);
}
.footer__legal { max-width: 46ch; }

/* Crédito do desenvolvedor. O rodapé aqui é claro, então as cores da
   marca UnityX foram reancoradas para passar no contraste: o verde
   original (#22e5a0) ficaria ilegível sobre o azul-gelo. */
.footer-credit { font-size: 0.78rem; }
.footer-credit a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--d-2) var(--e-out);
}
.footer-credit a:hover { color: var(--brand-800); }
.footer-credit-brand {
  font-weight: 700;
  color: oklch(0.55 0.135 166);
}
.footer-credit a:hover .footer-credit-brand { color: oklch(0.48 0.145 166); }

/* =========================================================
   FAB WhatsApp
   ========================================================= */
.fab {
  position: fixed;
  right: clamp(1rem, 2.4vw, 1.75rem);
  bottom: clamp(1rem, 2.4vw, 1.75rem);
  z-index: var(--z-fab);
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  box-shadow: 0 4px 10px oklch(0.4 0.1 146 / 0.28), 0 14px 34px oklch(0.4 0.1 146 / 0.30);
  transition: scale var(--d-2) var(--e-out), box-shadow var(--d-2) var(--e-out), opacity var(--d-2) var(--e-out);
}
.fab svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fab:hover { scale: 1.07; box-shadow: 0 6px 14px oklch(0.4 0.1 146 / 0.32), 0 18px 44px oklch(0.4 0.1 146 / 0.36); }
.fab:active { scale: 0.97; }
.fab.is-hidden { opacity: 0; scale: 0.6; pointer-events: none; }

/* =========================================================
   BORBOLETA DECORATIVA
   Puramente ornamental: o palco inteiro é aria-hidden e
   pointer-events:none, então nunca intercepta clique, foco ou
   leitor de tela. Desligada em prefers-reduced-motion.
   ========================================================= */
.bfly-stage {
  position: fixed;
  inset: 0;
  z-index: var(--z-bfly);
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

.bfly {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 47px;
  margin: -24px 0 0 -28px; /* ancora pelo centro */
  will-change: transform;
  filter: drop-shadow(0 6px 10px oklch(0.30 0.06 253 / 0.28));
}
.bfly svg { width: 100%; height: 100%; overflow: visible; }

/* O bater de asas é um scaleX nos dois grupos, com origem no corpo:
   simula a perspectiva sem custo de layout. */
/* A origem é o eixo do corpo em coordenadas do viewBox (60,56), igual
   para as duas asas: assim elas colapsam em direção ao tórax em vez de
   se soltarem dele. `fill-box` usaria a caixa de cada asa e as separaria. */
.bfly__wing {
  transform-box: view-box;
  transform-origin: 60px 56px;
  animation: flap var(--flap, 190ms) var(--e-out) infinite alternate;
}
@keyframes flap { from { transform: scaleX(1); } to { transform: scaleX(var(--flap-to, 0.26)); } }

/* Pousada, as asas apenas respiram: continuam abertas e legíveis. */
.bfly.is-resting { --flap: 1500ms; --flap-to: 0.78; }
.bfly.is-resting .bfly__wing { animation-timing-function: cubic-bezier(0.45, 0, 0.3, 1); }

/* pó brilhante */
.bfly-dust {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(circle, oklch(1 0 0 / 0.95) 0%, var(--bfly-dust) 42%, transparent 72%);
  will-change: transform, opacity;
}

@media (max-width: 680px) {
  .bfly { width: 42px; height: 35px; margin: -18px 0 0 -21px; }
}

/* Ornamento não sobrevive a reduced-motion nem à impressão. */
@media (prefers-reduced-motion: reduce) { .bfly-stage { display: none; } }
@media print { .bfly-stage { display: none; } }

/* =========================================================
   MOTION — reveals
   O estado padrão é VISÍVEL. Só com JS ativo (html.js) o
   estado inicial fica oculto, e o observer devolve a
   visibilidade. Sem JS, tudo aparece normalmente.
   ========================================================= */
.js .reveal {
  opacity: 0;
  translate: 0 18px;
  filter: blur(4px);
}
.js .reveal.is-in {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
  transition:
    opacity var(--d-3) var(--e-out-soft) var(--reveal-delay, 0ms),
    translate var(--d-3) var(--e-out-soft) var(--reveal-delay, 0ms),
    filter var(--d-3) var(--e-out-soft) var(--reveal-delay, 0ms);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .treat__item, .treat__item--wide { grid-column: span 6; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 2.75rem; }
  .steps__item:nth-child(2n)::before { display: none; }
  .clinic { grid-template-columns: 1fr; }
  .clinic__media { position: static; }
  .clinic__media img { aspect-ratio: 16 / 9; border-radius: 70px var(--r-xl) var(--r-xl) var(--r-xl); }
  .local, .contact { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 5.5rem; }

  .burger { display: grid; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: var(--z-panel);
    width: min(23rem, 86vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem var(--gutter) 2rem;
    background: var(--bg);
    box-shadow: -20px 0 60px oklch(0.24 0.05 254 / 0.18);
    translate: 100% 0;
    visibility: hidden;
    transition: translate var(--d-3) var(--e-out-soft), visibility 0s linear var(--d-3);
    overflow-y: auto;
  }
  .nav.is-open { translate: 0 0; visibility: visible; transition-delay: 0s, 0s; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--line-2); }
  .nav__list a { display: block; padding: 1rem 0; font-size: 1.05rem; font-weight: 600; color: var(--brand-900); }
  .nav__list a::after { display: none; }
  .nav__list a[aria-current="true"] { color: var(--brand-600); }
  .nav__cta { margin-top: 1.75rem; justify-content: center; padding: 0.95rem 1.5rem; font-size: var(--t-sm); }

  /* Sem espaço para a curva: a foto passa a ocupar o slide inteiro,
     com véu escuro por baixo do texto, que vira claro. */
  .hero { min-height: min(calc(100svh - 4.3rem), 720px); }
  .slide__panel { background: none; }
  .slide__media img { object-position: 62% center; }
  .slide__media::after {
    background:
      radial-gradient(80% 50% at 85% 2%, oklch(0.735 0.104 233 / 0.22), transparent 60%),
      linear-gradient(178deg, oklch(0.17 0.045 254 / 0.42) 0%, oklch(0.17 0.045 254 / 0.74) 52%, oklch(0.15 0.04 254 / 0.90) 100%);
  }
  .slide__content > * { max-width: 34rem; }
  .slide__kicker { color: var(--brand-300); }
  .slide__kicker::before { background: linear-gradient(90deg, var(--brand-300), var(--brand-400)); }
  .slide__title { color: var(--on-dark); }
  .slide__title .accent { color: var(--brand-400); }
  .slide__lede { color: var(--on-dark-2); }
  .slide .btn--ghost { --btn-ink: #fff; border-color: oklch(1 0 0 / 0.34); }
  .slide .btn--ghost:hover { --btn-bg: oklch(1 0 0 / 0.12); border-color: oklch(1 0 0 / 0.55); }
  .slide__badge { background: oklch(0.17 0.045 254 / 0.5); max-width: 12.5rem; padding: 0.65rem 0.85rem; }
  .slide__badge strong { font-size: 0.88rem; }

  .stripe__list { grid-template-columns: 1fr; }
  .stripe__list li + li { border-left: 0; border-top: 1px solid var(--brand-200); }
  .stripe__list li { padding-inline: 0; }

  .perks { grid-template-columns: repeat(2, 1fr); }
  .perks li:not(:nth-child(3n)) { border-right: 0; }
  .perks li:not(:nth-child(3n+1)) { padding-left: 0; }
  .perks li:nth-child(odd) { border-right: 1px solid var(--brand-200); padding-right: 1.5rem; }
  .perks li:nth-child(even) { padding-left: 1.5rem; }
}

@media (max-width: 680px) {
  .treat { grid-template-columns: 1fr; }
  .treat__item, .treat__item--wide { grid-column: 1 / -1; }
  .treat__item img { height: clamp(190px, 46vw, 240px); }

  .steps { grid-template-columns: 1fr; row-gap: 2.25rem; }
  .steps__item::before { display: none; }
  .steps__item { padding-top: 0; padding-left: 3.75rem; min-height: 2.7rem; }

  .perks { grid-template-columns: 1fr; }
  .perks li, .perks li:nth-child(odd), .perks li:nth-child(even) {
    border-right: 0;
    padding-inline: 0;
  }

  .footer__inner { grid-template-columns: 1fr; }
  .slide__actions .btn { flex: 1 1 100%; }
  .slide__badge { display: none; }
  .hero__dots { bottom: 0.9rem; }
}

/* =========================================================
   PREFERÊNCIAS
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .js .reveal { opacity: 0; translate: none; filter: none; }
  .js .reveal.is-in { opacity: 1; }
  .slide.is-active .slide__media img { animation: none; }
  .js .slide.is-active .slide__kicker,
  .js .slide.is-active .slide__title,
  .js .slide.is-active .slide__lede,
  .js .slide.is-active .slide__actions,
  .js .slide.is-active .slide__badge { animation: none; }
  .hero__progress { display: none; }
  .treat__item:hover, .btn:hover, .contact__links a:hover { translate: none; }
  .treat__item:hover img, .fab:hover { scale: none; }
}

@media (prefers-contrast: more) {
  :root {
    --ink-2: oklch(0.34 0.032 252);
    --ink-3: oklch(0.40 0.028 250);
    --line: oklch(0.78 0.02 240);
    --on-dark-2: oklch(0.94 0.012 236);
  }
  .treat__item, .local__map, .field input, .field select, .field textarea { border-width: 1.5px; }
}

@media print {
  .header, .fab, .nav, .burger, .local__map, .form { display: none !important; }
  .js .reveal { opacity: 1 !important; translate: none !important; filter: none !important; }
  .section--dark { background: #fff !important; color: #000 !important; }
  .section--dark p, .section--dark .sec-title { color: #000 !important; }
}
