/* ============================================================
   RECOVERY ROOM — Design System
   Estética minimalista editorial (ref. The Simple Gym)
   Paleta monocromática quente + tipografia grande
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Mono:wght@400;700&display=swap');

/* Cocogoose Pro (títulos) — arquivo local */
@font-face {
  font-family: 'Cocogoose';
  src: url('../fonts/Cocogoose-Pro-Regular-trial.ttf') format('truetype');
  font-weight: 100 900;   /* peso único: evita bold sintético */
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink:        #0E0E0C;
  --ink-soft:   #23231F;
  --paper:      #F3F1EA;   /* off-white quente */
  --paper-2:    #FBFAF6;
  --white:      #FFFFFF;
  --smoke:      #7C7A72;   /* texto secundário */
  --line:       #DAD7CC;   /* hairline */
  --line-dark:  #33332E;

  --accent:     #0E0E0C;   /* mono: acento = tinta */

  --font-display: 'Cocogoose', 'Arial Black', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);

  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-io:  cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(72px, 12vw, 160px); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px; background: var(--smoke);
  display: inline-block;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 0.98; letter-spacing: -0.02em; }
.display {
  font-size: clamp(3rem, 11vw, 9.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.h2 { font-size: clamp(2.1rem, 5.5vw, 4.5rem); font-weight: 700; letter-spacing: -0.03em; }
.h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; letter-spacing: -0.02em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--ink-soft); max-width: 60ch; line-height: 1.55; }
.muted { color: var(--smoke); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden; z-index: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: transform .5s var(--e-out), background-color .3s, color .3s, border-color .3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--ink) 0%, #109cb8 55%, #6fe0d0 100%);
  opacity: 0; transform: scale(1.04);
  transition: opacity .5s var(--e-out), transform .6s var(--e-out);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.35) 40%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover { background: transparent; color: #fff; border-color: transparent; transform: translateY(-2px); }
.btn:hover::before { opacity: 1; transform: scale(1); }
.btn:hover::after { transform: translateX(120%); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--lg { padding: 18px 34px; font-size: 14px; }

/* link com seta */
.arrowlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.arrowlink svg { width: 15px; height: 15px; transition: transform .4s var(--e-out); }
.arrowlink:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 28px); max-width: calc(var(--maxw) + 40px);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px 11px 24px; border-radius: 100px;
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid color-mix(in srgb, var(--white) 50%, transparent);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.4);
  transition: padding .45s var(--e-out), background .45s, box-shadow .45s, transform .5s var(--e-out);
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  box-shadow: 0 14px 46px -18px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.5);
}
.nav__logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.02em; text-transform: uppercase;
  display: flex; align-items: baseline; gap: 8px; line-height: 1;
}
.nav__logo b { font-weight: 800; }
.nav__logo span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--smoke); text-transform: uppercase; }
.nav__logo { align-items: center; }
.nav__logo img { height: 56px; width: auto; display: block; }
@media (max-width: 560px){ .nav__logo img { height: 38px; } }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.05em;
  text-transform: uppercase; position: relative; color: var(--ink-soft);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--ink); transition: width .35s var(--e-out);
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__burger { display: none; background: none; border: none; color: var(--ink); }
.nav__burger svg { width: 26px; height: 26px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .6s var(--e-io);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu > a {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.8rem, 8vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu .mm__foot { margin-top: 34px; }
.mobile-menu .mm__foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   HUD KM — medidor em vidro fosco (canto superior direito)
   ============================================================ */
.km-hud {
  position: fixed; top: 90px; right: var(--pad); z-index: 95;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 12px 9px 16px; border-radius: 14px;
  background: color-mix(in srgb, var(--white) 45%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid color-mix(in srgb, var(--white) 65%, transparent);
  box-shadow: 0 10px 34px -14px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.55);
  font-family: var(--font-mono);
  transition: opacity .4s;
}
.km-hud__val { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); font-variant-numeric: tabular-nums; min-width: 4.2ch; text-align: right; }
.km-hud__unit { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.km-hud__arrow { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: color-mix(in srgb, var(--ink) 88%, transparent); color: var(--paper); }
.km-hud__arrow svg { width: 14px; height: 14px; animation: kmbob 1.8s var(--e-io) infinite; }
@keyframes kmbob { 0%,100% { transform: translateY(-1px); } 50% { transform: translateY(2px); } }
@media (max-width: 560px){
  .km-hud { top: auto; bottom: 22px; left: 16px; right: auto; padding: 7px 10px 7px 13px; }
  .km-hud__val { font-size: 15px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 140px; padding-bottom: 40px; overflow: hidden; }
.hero__inner { position: relative; z-index: 2; }
/* fundo líquido do hero (atrás do texto) */
.hero__liquid {
  position: absolute !important; inset: 0;
  width: 100% !important; height: 100% !important;
  z-index: 0; pointer-events: none;
}
/* véu de papel para o texto continuar legível sobre o líquido */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--paper) 62%, transparent) 0%,
    color-mix(in srgb, var(--paper) 70%, transparent) 60%,
    var(--paper) 100%);
}
.hero__meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  border-top: 1px solid var(--line); padding-top: 18px; margin-top: 40px;
}
.hero__meta .cell { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--smoke); text-transform: uppercase; max-width: 30ch; }
.hero__meta .cell b { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; }
.hero h1 { margin-top: 8px; }
/* texto do hero um pouco menor (só no hero) */
.hero .display { font-size: clamp(2.4rem, 8vw, 7rem); }
@media (max-width: 680px){ .hero .display { font-size: clamp(3rem, 12vw, 4.4rem); } }
.hero h1 .out { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
/* foto recortada à direita, SOB o efeito líquido, com a coloração das outras fotos */
.hero__photo {
  position: absolute; z-index: 0; pointer-events: none;
  right: clamp(-30px, 2vw, 48px); bottom: clamp(135px, 17.5vh, 225px);
  height: clamp(320px, 62vh, 640px); width: auto; max-width: none;
  /* mesma gradação das demais fotos do site (menos saturada, quente) */
  filter: saturate(0.66) contrast(1.05) brightness(0.97) sepia(0.16) hue-rotate(-6deg);
}
@media (max-width: 980px){ .hero__photo { height: 46vh; right: -40px; } }
/* no mobile, mostra só a foto (sem o símbolo do liquid/logo por trás) */
@media (max-width: 680px){
  .hero__liquid { display: none !important; }
  .hero__photo { display: block; height: 38vh; right: -10px; bottom: clamp(290px, 30vh, 380px); opacity: .9; }
}
.hero__sub { margin-top: 30px; display: flex; gap: 26px; align-items: flex-end; flex-wrap: wrap; }

/* linha de onda animada — assinatura (contraste / circulação) */
.wavesig { position: absolute; right: -4%; top: 8%; width: 46%; max-width: 620px; opacity: .5; z-index: 1; color: var(--ink); pointer-events: none; }
.wavesig path { stroke-dasharray: 4 0; }
@media (max-width: 860px){ .wavesig { display: none; } }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; padding: 18px 0; background: var(--ink); color: var(--paper); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: slide 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem); letter-spacing: -0.02em;
  padding: 0 32px; display: inline-flex; align-items: center; gap: 32px; white-space: nowrap;
}
.marquee__track span::after { content: "✳\FE0E"; font-variant-emoji: text; font-size: 0.7em; color: var(--smoke); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   BENEFÍCIOS (grid de pílulas)
   ============================================================ */
.benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); border-top: 1px solid var(--line); }
.benefit {
  border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  padding: 34px 28px 40px; min-height: 210px; display: flex; flex-direction: column;
  justify-content: space-between; transition: background .4s, color .4s;
}
.benefit:hover { background: var(--ink); color: var(--paper); }
.benefit:hover .benefit__num { color: var(--smoke); }
.benefit__ic svg { width: 30px; height: 30px; stroke-width: 1.5; }
.benefit__num { font-family: var(--font-mono); font-size: 12px; color: var(--smoke); letter-spacing: 0.1em; }
.benefit h4 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 18px; }
.benefit p { font-size: 0.95rem; color: inherit; opacity: .72; margin-top: 8px; }

/* ============================================================
   SEÇÃO INTRO / TEXTO GRANDE
   ============================================================ */
.bigtext { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 4.2vw, 3.2rem); line-height: 1.08; letter-spacing: -0.025em; max-width: 20ch; }
.bigtext em { font-style: normal; color: var(--smoke); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
@media (max-width: 820px){ .two-col { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   SERVIÇOS — index / cards
   ============================================================ */
.svc-index { border-top: 1px solid var(--ink); }
.svc-row {
  display: grid; grid-template-columns: 80px 1.1fr 1.4fr auto;
  gap: 24px; align-items: center;
  padding: 30px 4px; border-bottom: 1px solid var(--line);
  transition: padding .4s var(--e-out), background .4s;
}
.svc-row:hover { padding-left: 22px; padding-right: 22px; background: var(--paper-2); }
.svc-row__num { font-family: var(--font-mono); font-size: 13px; color: var(--smoke); }
.svc-row__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.3rem); letter-spacing: -0.02em; }
.svc-row__desc { color: var(--smoke); font-size: 0.98rem; max-width: 46ch; }
.svc-row__ic svg { width: 26px; height: 26px; stroke-width: 1.5; transition: transform .4s var(--e-out); }
.svc-row:hover .svc-row__ic svg { transform: rotate(45deg); }

/* accordion: cada svc-row abre um painel com foto (surge + expande) */
.svc-row { cursor: pointer; }
.svc-row[data-open="true"] { border-bottom-color: transparent; }
.svc-row[data-open="true"]:hover .svc-row__ic svg { transform: rotate(180deg); }
.svc-row__chev svg { transition: transform .4s var(--e-out); }
.svc-row[data-open="true"] .svc-row__chev svg { transform: rotate(180deg); }
.svc-row:hover .svc-row__chev svg { transform: rotate(180deg); }
.svc-row[data-open="false"]:hover .svc-row__chev svg { transform: rotate(0deg) translateY(2px); }

.svc-panel { max-height: 0; overflow: hidden; border-bottom: 1px solid var(--line); transition: max-height .55s var(--e-out); }
.svc-panel__inner { padding: 4px 4px 34px; }
.svc-panel__img {
  width: 100%; height: 320px; object-fit: cover; border-radius: 10px; display: block;
  clip-path: inset(38% 30% 38% 30% round 10px);
  transform: scale(0.85); opacity: 0;
  filter: saturate(0.7) contrast(1.05) brightness(0.98) sepia(0.12) hue-rotate(-6deg);
  transition: clip-path .6s var(--e-out) .05s, transform .6s var(--e-out) .05s, opacity .45s ease .05s;
}
.svc-panel[data-open="true"] .svc-panel__img { clip-path: inset(0% 0% 0% 0% round 10px); transform: scale(1); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .svc-panel, .svc-panel__img { transition: none; }
}

@media (max-width: 760px){
  .svc-row { grid-template-columns: 44px 1fr; grid-template-areas: "num title" "num desc"; row-gap: 8px; }
  .svc-row__num { grid-area: num; align-self: start; padding-top: 6px; }
  .svc-row__title { grid-area: title; }
  .svc-row__desc { grid-area: desc; }
  .svc-row__ic { display: none; }
  .svc-panel__img { height: 220px; }
}

/* cards de serviço agrupados */
.svc-group { margin-top: clamp(48px, 8vw, 96px); }
.svc-group__head { display: flex; align-items: baseline; gap: 16px; border-bottom: 1px solid var(--ink); padding-bottom: 16px; margin-bottom: 34px; }
.svc-group__head .n { font-family: var(--font-mono); font-size: 13px; color: var(--smoke); }
.svc-group__head h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 32px 28px 36px; display: flex; flex-direction: column;
  transition: transform .5s var(--e-out), box-shadow .5s, border-color .4s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px -30px rgba(0,0,0,.35); border-color: var(--ink); }
.card__ic { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; margin-bottom: 26px; }
.card__ic svg { width: 24px; height: 24px; stroke-width: 1.5; }
.card h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.card p { color: var(--smoke); font-size: 0.96rem; margin-top: 12px; line-height: 1.55; }

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.imgph {
  position: relative; background:
    repeating-linear-gradient(45deg, #e9e6dd 0 2px, transparent 2px 14px), var(--paper-2);
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  display: grid; place-items: center; aspect-ratio: 4/5;
}
.imgph--wide { aspect-ratio: 16/10; }
.imgph--tall { aspect-ratio: 3/4; }
/* imagem de banco dentro do placeholder */
.imgph > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  /* gradação: menos saturada, quente e filmica (tom da referência) */
  filter: saturate(0.66) contrast(1.05) brightness(0.97) sepia(0.16) hue-rotate(-6deg);
}
/* tint quente por cima (unifica a tonalidade) */
.imgph::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(74,58,42,0.12) 0%, rgba(38,30,22,0.20) 100%);
  mix-blend-mode: multiply;
}
/* brilho de vidro sobre a imagem */
.imgph::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.20) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0) 60%, rgba(255,255,255,.10) 100%);
  mix-blend-mode: screen;
}
/* etiqueta = pílula de vidro fosco (glassmorphism) */
.imgph span {
  position: relative; z-index: 2; align-self: end; justify-self: start;
  margin: 0 0 16px 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in srgb, var(--white) 42%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.6);
  backdrop-filter: blur(14px) saturate(1.6);
  padding: 9px 15px; border: 1px solid color-mix(in srgb, var(--white) 65%, transparent);
  border-radius: 100px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.5);
}
.imgph { justify-items: start; align-items: start; }

/* ============================================================
   IMAGENS — faixa full-bleed / mosaico / split
   ============================================================ */
.imgband { position: relative; width: 100%; aspect-ratio: 21/8; }
.imgband .imgph { aspect-ratio: auto; height: 100%; border-radius: 0; border-left: 0; border-right: 0; }
@media (max-width: 720px){ .imgband { aspect-ratio: 4/3; } }
/* parallax: imagem maior que o quadro pra poder deslizar sem revelar bordas */
.imgph > img.parallax { top: -20%; bottom: auto; height: 140%; will-change: transform; }

/* mosaico */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 18vw, 240px); gap: 14px; }
.gallery .imgph { aspect-ratio: auto; height: 100%; min-height: 0; }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-big  { grid-column: span 2; grid-row: span 2; }
@media (max-width: 820px){
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .g-big { grid-column: span 2; }
  .gallery .g-wide { grid-column: span 2; }
}

/* imagem + conteúdo lado a lado */
.media-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.media-split--rev .media-split__media { order: 2; }
@media (max-width: 820px){ .media-split { grid-template-columns: 1fr; } .media-split--rev .media-split__media { order: 0; } }

/* ============================================================
   STATS — contador animado
   ============================================================ */
.stats { border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.stats__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.stat {
  padding: clamp(34px, 5vw, 60px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display); font-weight: 800; line-height: 0.9;
  letter-spacing: -0.04em; font-size: clamp(3.4rem, 9vw, 7.5rem);
  display: flex; align-items: baseline; gap: 6px;
  font-variant-numeric: tabular-nums;
}
.stat__num .u { font-size: 0.32em; font-weight: 700; letter-spacing: 0; align-self: flex-end; margin-bottom: 0.4em; }
.stat--lead .stat__num { font-size: clamp(4rem, 13vw, 10rem); }
.stat__label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--smoke); margin-top: 18px; max-width: 26ch; }
.stat__pre { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--smoke); margin-bottom: 20px; }
@media (max-width: 760px){
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); min-height: 0; }
  .stat:last-child { border-bottom: 0; }
}

/* ============================================================
   CTA FAIXA
   ============================================================ */
.cta-band { background: var(--ink); color: var(--paper); }
.cta-band .h2 { color: var(--paper); }
.cta-band .eyebrow { color: #9a988f; }
.cta-band .eyebrow::before { background: #9a988f; }
.cta-band .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(60px, 9vw, 110px); }
.footer a { color: var(--paper); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line-dark); }
.footer__brand .display { font-size: clamp(3rem, 9vw, 7rem); }
.footer__logo { height: 46px; width: auto; display: block; filter: invert(1); margin-bottom: 10px; }
.footer__col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #9a988f; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: 0.98rem; color: #d9d7cf; margin-bottom: 10px; transition: color .3s; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 26px 0 40px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: #9a988f; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--e-out), transform .9s var(--e-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }

/* ============================================================
   PAGE HEADER (sub-páginas)
   ============================================================ */
.pagehead { padding-top: 150px; padding-bottom: clamp(40px, 7vw, 80px); border-bottom: 1px solid var(--line); }
.pagehead h1 { margin-top: 14px; }

/* ---------- responsive nav ---------- */
@media (max-width: 900px){
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   LENIS — scroll suave
   ============================================================ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ============================================================
   HOVER BLUR — grupo de imagens (foco segue o cursor)
   ============================================================ */
.blurgroup .imgph { transition: filter .55s var(--e-out), opacity .55s var(--e-out), transform .6s var(--e-out); }
@media (hover: hover) {
  .blurgroup:hover .imgph:not(:hover) { filter: blur(7px) saturate(.82); opacity: .78; }
  .blurgroup:hover .imgph:hover { transform: scale(1.012); }
}

/* ============================================================
   PLANOS — cards + toggle mensal/semestral
   ============================================================ */
.planos__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; border-bottom: 1px solid var(--ink); padding-bottom: 26px; margin-bottom: 40px; }
.toggle { display: inline-flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); user-select: none; }
.toggle b { font-weight: 400; transition: color .3s; }
.toggle.is-semestral .t-mensal { color: var(--smoke); }
.toggle.is-semestral .t-semestral { color: var(--ink); }
.toggle:not(.is-semestral) .t-mensal { color: var(--ink); }
.toggle__switch { width: 58px; height: 30px; border-radius: 100px; border: 1px solid var(--ink); background: transparent; position: relative; cursor: pointer; padding: 0; flex: none; transition: background .35s var(--e-out); }
.toggle__switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--ink); transition: transform .38s var(--e-out); }
.toggle.is-semestral .toggle__switch::after { transform: translateX(28px); }
.toggle__tag { font-size: 10px; padding: 3px 8px; border: 1px solid var(--line); border-radius: 100px; color: var(--smoke); }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px){ .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px 34px; background: var(--paper-2); display: flex; flex-direction: column; transition: transform .5s var(--e-out), box-shadow .5s, border-color .4s; }
.plan:hover { transform: translateY(-5px); box-shadow: 0 24px 60px -30px rgba(0,0,0,.35); border-color: var(--ink); }
.plan--feat { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.plan--feat .plan__tier, .plan--feat .muted { color: #b9b7ad !important; }
.plan__tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--smoke); }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; letter-spacing: -0.02em; margin: 8px 0 22px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; font-family: var(--font-body); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.plan__price .cur { font-size: 1.1rem; font-weight: 700; }
.plan__price .val { font-size: clamp(2.6rem, 5vw, 3.6rem); }
.plan__price .per { font-family: var(--font-mono); font-weight: 400; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--smoke); }
.plan--feat .plan__price .per { color: #b9b7ad; }
.price-semestral { display: none; }
.toggle-scope.is-semestral .price-mensal { display: none; }
.toggle-scope.is-semestral .price-semestral { display: flex; }
.plan__note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--smoke); margin-top: 6px; min-height: 16px; }
.plan--feat .plan__note { color: #b9b7ad; }
.plan__list { list-style: none; margin: 24px 0 28px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.plan__list li { font-size: 0.95rem; display: flex; gap: 10px; align-items: flex-start; }
.plan__list li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }
.plan .btn { margin-top: auto; justify-content: center; }
.plan--feat .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================
   KM READOUT grande (final)
   ============================================================ */
.kmbig { display: flex; flex-direction: column; gap: 4px; }
.kmbig__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #9a988f; }
.kmbig__val { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; font-size: clamp(3rem, 8vw, 6rem); display: flex; align-items: baseline; gap: 10px; font-variant-numeric: tabular-nums; }
.kmbig__val .u { font-size: 0.28em; font-weight: 700; }

/* ============================================================
   COMO FUNCIONA — título fixo + passos
   ============================================================ */
.howitworks { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(30px, 6vw, 90px); }
.howitworks__title { position: sticky; top: 120px; align-self: start; }
.steps { border-top: 1px solid var(--ink); }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: start; transition: padding-left .4s var(--e-out); }
.step:hover { padding-left: 14px; }
.step__n { font-family: var(--font-mono); font-size: 13px; color: var(--smoke); padding-top: 6px; }
.step h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; letter-spacing: -0.02em; }
.step p { color: var(--smoke); margin-top: 8px; max-width: 54ch; }
@media (max-width: 820px){ .howitworks { grid-template-columns: 1fr; gap: 30px; } .howitworks__title { position: static; } }

/* ============================================================
   EQUIPE
   ============================================================ */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px){ .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .team { grid-template-columns: 1fr; } }
.member .imgph { aspect-ratio: 3/4; }
.member h3 { margin-top: 18px; font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.member__role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); margin-top: 5px; }
.member p { color: var(--smoke); font-size: 0.92rem; margin-top: 12px; line-height: 1.5; }

/* ============================================================
   FAQ — sanfona
   ============================================================ */
.faq { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(30px, 6vw, 90px); }
.faq__title { position: sticky; top: 120px; align-self: start; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 2px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.5rem); letter-spacing: -0.01em; color: var(--ink); cursor: pointer; }
.faq__icon { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .45s var(--e-out), background .3s, color .3s; }
.faq__icon svg { width: 16px; height: 16px; }
.faq__item.is-open .faq__icon { background: var(--ink); color: var(--paper); transform: rotate(135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .55s var(--e-io); }
.faq__a p { padding: 0 2px 26px; color: var(--smoke); max-width: 70ch; }
@media (max-width: 820px){ .faq { grid-template-columns: 1fr; gap: 24px; } .faq__title { position: static; } }

/* ============================================================
   CTA FINAL — grande e centralizado
   ============================================================ */
.finalcta { text-align: center; padding-block: clamp(90px, 15vw, 200px); border-top: 1px solid var(--line); }
.finalcta h2 { font-size: clamp(2.8rem, 11vw, 9rem); font-weight: 800; letter-spacing: -0.045em; line-height: 0.88; text-transform: uppercase; }
.finalcta p { margin: 26px auto 0; max-width: 46ch; }
.finalcta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ============================================================
   WHATSAPP flutuante
   ============================================================ */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #0E0E0C; color: #F3F1EA; display: grid; place-items: center; box-shadow: 0 14px 34px -12px rgba(0,0,0,.45); transition: transform .4s var(--e-out); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 27px; height: 27px; }
@media (max-width: 560px){ .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; } }

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