/* =====================================================
   Champions for Good — réplica técnica (código original)
   Paleta e métricas conferidas contra o CSS do site real
   ===================================================== */
:root {
  /* Paleta Studio Viva+ (navy / lima / branco) mapeada
     sobre os 4 slots de tema herdados do layout original */
  --viva-navy: #192028;
  --viva-lime: #c4d200;
  --viva-white: #ffffff;

  --dark-purple: var(--viva-navy);
  --light-purple: var(--viva-lime);
  --black: var(--viva-navy);
  --white: var(--viva-white);
  --brown: var(--viva-lime);
  --yellow: var(--viva-navy);
  --dark-green: var(--viva-navy);
  --green: var(--viva-white);
  /* Druk instalada localmente (família "Druk Cond Cy");
     Anton permanece como fallback pra máquinas sem a fonte */
  --font-display: 'Druk Cond Cy', 'Druk Condensed Super', 'Druk Condensed Super Desktop', 'Anton', Impact, Arial, sans-serif;
  --font-copy: 'Google Sans Flex', Arial, sans-serif;
  --ease-out: cubic-bezier(0.37, 0.31, 0, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
  --ease-in-out-soft: cubic-bezier(0.6, 0.05, 0.28, 0.91);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scrollbar-width: thin; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-copy);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-transitioning, body.is-transitioning * { cursor: wait !important; pointer-events: none !important; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

/* wrapper: full-width com padding vertical em rem (como o original) */
.wrapper { width: 100%; padding: 12rem 2rem; }
.wrapper.is-flush { padding-top: 0; padding-bottom: 0; }

/* ---------- Tipografia ----------
   Display: Druk Condensed Super (instalada localmente) com as
   métricas do site de referência. Os letter-spacings negativos
   eram compensação pra Anton (fallback) e saíram — Druk usa 0. */
.headline-xxl, .headline-xl, .headline-l, .headline-s-display, .hero-title,
.mission-line, .values-txt, .flick-card-title, .nav-m-link {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.78;
  letter-spacing: 0;
  text-align: center;
}
.headline-xxl { font-size: clamp(8.5rem, 13vw, 13.75rem); }
.headline-xl  { font-size: clamp(7rem, 10.5vw, 11.25rem); }
.headline-l   { font-size: clamp(3.5rem, 5vw, 5rem); line-height: 0.8; }
.headline-s-display { font-size: clamp(2rem, 3vw, 3rem); line-height: 0.85; }
.headline-m {
  font-family: var(--font-copy); font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.4; letter-spacing: -0.025em;
}
.headline-s {
  font-family: var(--font-copy); font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 2rem); line-height: 1.45;
}
.copytext { font-size: 1rem; line-height: 1.5; }
.copytext-small { font-size: clamp(0.875rem, 1vw, 1rem); line-height: 1.5; }
.copytext.is-semi { font-weight: 600; }
.eyebrow { font-size: clamp(1.5rem, 2.4vw, 3rem); font-weight: 500; line-height: 1.2; }
.ta-left { text-align: left; }

.is-mint   { color: var(--green); }
.is-pink   { color: var(--light-purple); }
.is-yellow { color: var(--yellow); }
.cursive { font-style: italic; letter-spacing: 0.01em; }
/* herança do original: "mint" mapeou pra branco na paleta Viva+ —
   em seção clara isso é branco-sobre-branco, então vira navy */
.theme-light .is-mint { color: var(--viva-navy); }

/* ---------- Temas por seção (fundos reais do original) ---------- */
.theme-purple { background: var(--dark-purple); color: var(--light-purple); }
.theme-light  { background: var(--white);       color: var(--black); }
.theme-brown  { background: var(--brown);       color: var(--yellow); }
.theme-green  { background: var(--dark-green);  color: var(--green); }

/* =====================================================
   TRANSITION — 3 círculos concêntricos (como o original)
   ===================================================== */
.transition {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.transition-ball {
  position: absolute; width: 150vmax; aspect-ratio: 1; border-radius: 50%;
  transform: scale(0);
}
.transition-ball.is-1 { background: var(--viva-navy); }
.transition-ball.is-2 { background: var(--viva-lime); }
.transition-ball.is-3 { background: var(--viva-white); }

/* =====================================================
   PRÉ-CHECKOUT — modal de qualificação antes do WhatsApp
   ===================================================== */
.qual { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.qual[hidden] { display: none; }
.qual-backdrop { position: absolute; inset: 0; background: rgba(25, 32, 40, 0.82); backdrop-filter: blur(3px); }
.qual-box {
  position: relative; z-index: 1;
  width: min(30rem, 100%); max-height: 90svh; overflow-y: auto;
  background: var(--viva-white); color: var(--viva-navy);
  border-radius: 20px; padding: 2.25rem 1.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.qual-x {
  position: absolute; top: 0.85rem; right: 0.85rem;
  width: 2rem; height: 2rem; border-radius: 50%;
  font-size: 0.85rem; line-height: 1; color: var(--viva-navy);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.25s ease;
}
.qual-x:hover { background: rgba(25, 32, 40, 0.08); }
.qual-title { color: var(--viva-navy); text-align: left; margin-bottom: 0.35rem; }
.qual-sub { margin-bottom: 1.25rem; opacity: 0.75; }
.qual-form { display: flex; flex-direction: column; gap: 0.9rem; }
.qual-field { display: flex; flex-direction: column; gap: 0.35rem; border: 0; padding: 0; margin: 0; }
.qual-label { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.01em; }
.qual-input {
  font: inherit; font-size: 1rem; color: var(--viva-navy);
  padding: 0.7rem 0.85rem; width: 100%;
  background: #fff; border: 1.5px solid rgba(25, 32, 40, 0.18); border-radius: 10px;
  transition: border-color 0.2s ease;
}
.qual-input:focus { outline: none; border-color: var(--viva-navy); }
/* select nativo: seta própria pra não herdar o visual do SO */
select.qual-input {
  appearance: none; cursor: pointer; padding-right: 2.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23192028' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 0.7rem;
}
.qual-opts { display: flex; flex-direction: column; gap: 0.5rem; }
.qual-opt {
  display: flex; align-items: center; gap: 0.7rem; cursor: pointer;
  padding: 0.7rem 0.85rem; border: 1.5px solid rgba(25, 32, 40, 0.18); border-radius: 10px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.qual-opt:has(input:checked) { border-color: var(--viva-navy); background: rgba(196, 210, 0, 0.16); }
.qual-opt.is-off { opacity: 0.45; cursor: not-allowed; }
.qual-opt input { accent-color: var(--viva-navy); width: 1.05rem; height: 1.05rem; flex: none; }
.qual-opt-body { display: flex; flex-direction: column; }
.qual-opt-nome { font-weight: 600; font-size: 0.95rem; line-height: 1.25; }
.qual-opt-zona { font-size: 0.8125rem; opacity: 0.7; line-height: 1.3; }
.qual-erro {
  font-size: 0.875rem; line-height: 1.4; color: #a3220f;
  background: rgba(163, 34, 15, 0.08); border-radius: 8px; padding: 0.6rem 0.75rem;
}
.qual-erro[hidden] { display: none; }
/* .qual prefixado: este bloco vem antes de .btn no arquivo e, com a
   mesma especificidade, .btn{color:navy} venceria — deixando o texto
   navy sobre o fundo navy do próprio botão */
.qual .qual-submit { width: 100%; margin-top: 0.35rem; color: var(--viva-lime); }
.qual .qual-submit .btn-bg { background: var(--viva-navy); }
.qual .qual-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.qual-nota { text-align: center; opacity: 0.65; margin-top: 0.75rem; }
/* trava o scroll do fundo enquanto o modal está aberto */
body.qual-open { overflow: hidden; }
@media (max-width: 479px) {
  .qual { padding: 0; align-items: flex-end; }
  .qual-box { border-radius: 20px 20px 0 0; max-height: 92svh; padding: 2rem 1.25rem 1.5rem; }
}

/* =====================================================
   STICKER CURSOR — 48px, cor por zona, sem sombra
   ===================================================== */
.sticker-cursor {
  position: fixed; top: 0; left: 0; z-index: 1000;
  width: 48px; pointer-events: none;
  opacity: 0; transform: scale(0.5);
}
.sticker-cursor svg .cursor-fill { transition: fill 0.2s ease; }
body.has-sticker-cursor, body.has-sticker-cursor [data-sticker-zone] { cursor: none; }
/* pares de cor por zona (paleta Viva+) */
body[data-cursor-set="purple"] .cursor-fill { fill: var(--viva-lime); }
body[data-cursor-set="purple"] .cursor-text { fill: var(--viva-navy); }
body[data-cursor-set="yellow"] .cursor-fill { fill: var(--viva-white); }
body[data-cursor-set="yellow"] .cursor-text { fill: var(--viva-navy); }
body[data-cursor-set="green"] .cursor-fill { fill: var(--viva-lime); }
body[data-cursor-set="green"] .cursor-text { fill: var(--viva-navy); }

.sticker-stamp { position: absolute; pointer-events: none; z-index: 5; }

/* =====================================================
   NAV — barra com fundo sólido que muda por seção
   ===================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: transform 0.5s var(--ease-out), background-color 0.4s ease, color 0.4s ease;
  background: var(--dark-purple); color: var(--light-purple);
}
.nav.is-hidden { transform: translateY(-110%); }
body[data-nav-theme="purple"] .nav { background: var(--viva-navy); color: var(--viva-lime); }
body[data-nav-theme="light"]  .nav { background: var(--viva-white); color: var(--viva-navy); }
body[data-nav-theme="brown"]  .nav { background: var(--viva-lime); color: var(--viva-navy); }
body[data-nav-theme="green"]  .nav { background: var(--viva-navy); color: var(--viva-white); }
/* na nav lima, o botão Join inverte pra navy pra não sumir */
body[data-nav-theme="brown"] .nav .btn { color: var(--viva-lime); }
body[data-nav-theme="brown"] .nav .btn .btn-bg { background: var(--viva-navy); }

.nav-wrap {
  width: 100%; padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo-link { position: relative; width: 8rem; display: block; flex: none; }
.nav-logo { width: 100%; transition: opacity 0.4s ease; position: absolute; top: 0; left: 0; opacity: 0; }
.nav-logo.is-white { position: relative; }
/* logos: branco+lima nos fundos navy, navy+lima no branco,
   navy+branco no lima (is-yellow — o "+" lima sumiria no fundo lima) */
body[data-nav-theme="purple"] .nav-logo.is-white,
body[data-nav-theme="light"]  .nav-logo.is-black,
body[data-nav-theme="brown"]  .nav-logo.is-yellow,
body[data-nav-theme="green"]  .nav-logo.is-white { opacity: 1; }

.nav-right-group { display: flex; align-items: center; gap: 2rem; }
.nav-item { font-size: 0.9375rem; font-weight: 500; line-height: 1.35; }
.nav-item-wrap { display: block; position: relative; overflow: hidden; height: 1.35em; }
.nav-item-text { display: block; transition: transform 0.5s var(--ease-out); }
.nav-item-text.is-second { position: absolute; top: 100%; left: 0; }
.nav-item:hover .nav-item-text { transform: translateY(-100%); }

/* Sound toggle — 2.25rem x 1.125rem, dot 0.75rem, preenche quando ativo */
.sound-toggle { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; font-size: 0.9375rem; }
.sound-toggle-bar {
  width: 2.25rem; height: 1.125rem; border-radius: 1.5rem;
  border: 1px solid currentColor; display: inline-flex; align-items: center;
  padding: 0.1875rem; transition: background-color 0.5s var(--ease-smooth);
}
.sound-toggle-dot {
  width: 0.75rem; height: 0.75rem; border-radius: 50%;
  background: currentColor;
  transition: transform 0.5s var(--ease-smooth), background-color 0.5s var(--ease-smooth);
}
.sound-toggle[aria-pressed="true"] .sound-toggle-bar { background: currentColor; }
.sound-toggle[aria-pressed="true"] .sound-toggle-dot { transform: translateX(calc(2.25rem - 1.125rem - 0.375rem)); background: var(--dark-purple); }

/* menu mobile */
.nav-burger { display: none; font-weight: 500; }
.nav-m-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--dark-purple);
  display: none; flex-direction: column; justify-content: center; padding: 0 2rem;
}
.nav-m-menu.is-open { display: flex; }
.nav-m-link {
  color: var(--light-purple); font-size: 10vh; line-height: 1; letter-spacing: -0.01em;
  padding: 1rem 0; border-bottom: 0.5px solid rgba(196, 210, 0, 0.35);
  text-align: left;
}

/* =====================================================
   BOTÃO .btn — retângulo 6px, 15px, bg rosa (como .default-btn)
   ===================================================== */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5ch;
  padding: 0.55rem 1.25rem 0.6rem;
  font-weight: 500; font-size: 0.9375rem; line-height: 1.4;
  color: var(--dark-purple);
  isolation: isolate;
  white-space: nowrap; flex: none;
  transition: transform 0.3s var(--ease-out);
}
.btn:active { transform: scale(0.94, 0.9); }
.btn-wrap { position: relative; display: block; overflow: hidden; height: 1.4em; z-index: 2; }
.btn-txt { display: block; transition: transform 0.5s var(--ease-out); }
.btn-txt.is-second { position: absolute; top: 100%; left: 0; transform: skewY(0deg); }
.btn:hover .btn-txt { transform: translateY(-100%) skewY(-4deg); }
.btn:hover .btn-txt.is-second { transform: translateY(-100%) skewY(0deg); }
.btn-bg {
  position: absolute; inset: 0; z-index: 1;
  background: var(--light-purple); border-radius: 6px;
  transition: transform 0.45s var(--ease-out);
}
.btn:hover .btn-bg { transform: scale(1.065, 1.095); }
/* bolinha has-ball: ponto 0.8ch em currentColor ao lado do texto */
.btn.has-ball::after {
  content: ""; position: relative; z-index: 2;
  width: 0.8ch; height: 0.8ch; border-radius: 50%;
  background: currentColor;
  transform: scale(0); transition: transform 0.4s var(--ease-out);
}
.btn.has-ball:hover::after { transform: scale(1); }

/* =====================================================
   SEÇÕES BASE
   ===================================================== */
/* empilhamento como o site oficial: seções z1, camadas internas 2/3/4 */
.section { position: relative; z-index: 1; min-height: 100vh; min-height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.main { position: relative; }
.pin-lottie-bg { z-index: 1; }
.pin-content { z-index: 2; }
.quote-sled { z-index: 4; }

/* =====================================================
   HERO — roxo, headline central, alinhado ao fim
   Preenche exatamente 1 tela em qualquer resolução:
   altura travada em 100svh e todos os contribuintes
   verticais (título, stack) com teto em svh.
   ===================================================== */
.hero { justify-content: flex-end; min-height: 0; height: 100vh; height: 100svh; }
.hero-inner { position: relative; z-index: 3; padding: 1rem 2rem; pointer-events: none; display: flex; flex-direction: column; align-items: center; max-height: 100%; }
.hero-title {
  color: var(--light-purple);
  /* headline dominando a tela — testado a 50svh no monitor de
     referência; vw/rem sobem na mesma proporção pra não virarem
     o teto antes do svh em telas largas */
  /* 50svh é o alvo (o texto grande dominando a tela). O último termo
     é o teto real em telas baixas: desconta nav + eyebrow + paddings
     (~10rem) e divide pelo que 2 linhas consomem (2×0.92 = 1.84),
     senão o bloco cresce pra debaixo da nav. A 1080px os dois dão o
     mesmo número — 50svh só perde em telas mais baixas. */
  font-size: min(42vw, 56rem, 50vh, calc((100vh - 10.75rem) * 0.543));
  font-size: min(42vw, 56rem, 50svh, calc((100svh - 10.75rem) * 0.543));
  /* 0.92, não o 0.8 "de catálogo" da Druk: medido por canvas
     actualBoundingBox, a 0.8 a cedilha de "MUSCULAÇÃO" (a linha mais
     alta/mais funda do par) encostava e até invadia o "S" de PILATES
     acima — givava ~6% do font-size de sobreposição real, não só
     visual. 0.92 abre ~6% de respiro entre as linhas e de quebra
     também resolve o vazamento pro eyebrow/nav em cima e pro fim do
     hero embaixo — sem precisar de padding extra pra isso. */
  line-height: 0.92;
  letter-spacing: 0;
  text-align: center;
  /* JS revela junto com a entrada dos chars — evita flash
     do título cru antes de fonts.ready */
  opacity: 0;
}
/* sem clip vertical: o entrelinhas condensado da referência (0.5125)
   e os acentos em caixa-alta precisam de overflow livre */
.hero-line { display: block; overflow: visible; }
/* linhas pequenas acima ("SEU STUDIO") e abaixo ("EM BRASÍLIA") do bloco */
.hero-line.is-eyebrow { line-height: 1; margin-bottom: 0.5rem; }
.hero-line.is-tagline { line-height: 1; margin-top: 0.75rem; }
.hero-line.is-eyebrow .hero-small,
.hero-line.is-tagline .hero-small { vertical-align: baseline; }
/* o wrapper herda o font-size gigante do hero-title só pra gerar o
   strut da linha (elemento block sem texto direto) — sem isto, o
   line-height:1 aplicado ao tamanho do título empurrava a linha
   pequena bem além da tela, cortando o título grande por baixo */
.hero-line.is-eyebrow .hero-line-inner,
.hero-line.is-tagline .hero-line-inner { font-size: 1rem; }
.hero-small {
  font-size: min(calc(1.75vw + 1.75vh + 0.2rem), 5.5vh);
  font-size: min(calc(1.75vw + 1.75vh + 0.2rem), 5.5svh);
  font-family: var(--font-display); letter-spacing: 0.02em;
  vertical-align: super;
}
/* stacked cards do hero (mobile) */
.hero-stack {
  display: none; position: relative; aspect-ratio: 1;
  width: min(80vw, 26rem, 36vh);
  width: min(80vw, 26rem, 36svh);
  margin: min(3rem, 4vh) auto 0;
  margin: min(3rem, 4svh) auto 0;
}
.hero-stack-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: 1.5rem; border: 0.375rem solid var(--light-purple);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
  touch-action: pan-y; cursor: grab;
}
@media (max-width: 991px) {
  .hero-stack { display: block; }
  .image-trail { display: none; }
}

.image-trail { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.image-trail img {
  position: absolute; width: 15vw; aspect-ratio: 1; object-fit: cover;
  border-radius: 1.5rem; border: 0.375rem solid var(--light-purple);
  will-change: transform; opacity: 0;
}

/* =====================================================
   PIN SECTIONS (volleyball / archer) — fundo claro/marrom
   ===================================================== */
.pin-section { height: 100vh; height: 100svh; justify-content: flex-end; }
.pin-lottie-bg { position: absolute; inset: 0; z-index: 1; }
.pin-content { position: relative; z-index: 2; padding: 0 2rem 4rem; width: 100%; }
.eyebrow { margin-bottom: 1rem; text-align: left; }

/* =====================================================
   SONDERN
   ===================================================== */
.sondern { justify-content: flex-end; padding-bottom: 3rem; }
.sondern-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; align-items: end; width: 100%; padding: 0 2rem; }
.sondern-lottie { grid-column: 1 / span 4; width: 100%; }
.sondern-copy { grid-column: 5 / -1; display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: end; }
.sondern-copy .headline-xl { text-align: left; }
.sondern-copy .headline-s { max-width: 36rem; text-align: left; }

/* =====================================================
   VIDEO
   ===================================================== */
.video-section { min-height: 100vh; }
.video-bg { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; }
.video-overlay { position: relative; z-index: 2; display: flex; align-items: center; justify-content: flex-start; min-height: 100vh; padding: 0 2rem; }
.video-badge { width: clamp(240px, 32vw, 560px); }

/* =====================================================
   QUOTE — fundo claro, phone preto
   ===================================================== */
.quote { padding: 12rem 0 6rem; }
.quote-phone { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0.8; pointer-events: none; }
.quote-inner { position: relative; z-index: 2; display: flex; flex-direction: column; min-height: 70vh; justify-content: space-between; gap: 4rem; width: 100%; padding: 0 2rem; }
.quote-text { max-width: 70rem; text-align: left; }
.quote-footer { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.quote-author { text-align: left; }
.quote-media { display: flex; gap: 0.5rem; }
.quote-video, .quote-photo { width: clamp(120px, 12vw, 200px); aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.quote-sled { position: absolute; z-index: 3; top: 40%; left: 0; width: clamp(140px, 14vw, 260px); pointer-events: none; }

/* =====================================================
   MISSION — marrom
   ===================================================== */
.mission { padding: 12rem 0; }
.mission-head { margin-bottom: 4rem; text-align: center; }
.mission-lines { display: flex; flex-direction: column; align-items: center; }
.mission-line {
  font-size: clamp(3.4rem, 9vw, 10rem); letter-spacing: -0.015em; word-spacing: 0.03em;
  color: var(--yellow); line-height: 0.85;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
}
.mission-line.is-accent { color: var(--white); font-style: italic; }
.inline-lottie {
  display: inline-block; width: clamp(80px, 9vw, 160px); height: clamp(56px, 6vw, 110px);
  background: var(--yellow); border-radius: 999px; overflow: hidden; flex: none;
}

/* =====================================================
   VALUES — seção clara, boxes brancos r-24
   ===================================================== */
.values { padding: 12rem 2rem; min-height: 0; }
.values .eyebrow { text-align: center; }
.values-list { margin-top: 4rem; display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 70rem; }
.values-item {
  display: flex; align-items: baseline; gap: 3rem;
  padding: 1.5rem 2rem; background: #fff; border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  transition: transform 0.5s var(--ease-out);
}
.values-item:hover { transform: translateX(1.5rem); }
.values-num { font-size: 0.875rem; font-weight: 600; flex: none; width: 3rem; }
.values-txt { font-size: clamp(2rem, 4.6vw, 5rem); text-align: left; line-height: 0.9; letter-spacing: -0.008em; word-spacing: 0.03em; }

/* =====================================================
   MEMBERSHIPS — FLICK CARDS (roxo, cartas escuras 2:3)
   ===================================================== */
.memberships { padding: 12rem 0; gap: 4rem; }
.memberships-title { color: var(--light-purple); }
.flick { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; }
.flick-stage { position: relative; width: min(25em, 84vw); }
.flick-stage::before { content: ""; display: block; padding-top: 150%; }
.flick-card-item {
  position: absolute; inset: 0;
  will-change: transform; touch-action: pan-y;
  cursor: grab; user-select: none;
}
.flick-card-item:active { cursor: grabbing; }
.flick-card-media {
  height: 100%; border-radius: 1em; padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
  text-align: left;
}
/* pares de cor das cartas na paleta Viva+ — --icon-accent alimenta os
   ícones VivaIcons (stroke="currentColor" já resolve o resto sozinho;
   só o acento de cada ícone precisa de override quando o lima do
   default ficaria invisível sobre fundo lima ou pouco lido sobre navy) */
.flick-card-media.is-green  { background: var(--viva-navy);  color: var(--viva-white); }
.flick-card-media.is-brown  { background: var(--viva-lime);  color: var(--viva-navy); --icon-accent: var(--viva-navy); }
.flick-card-media.is-pink   { background: var(--viva-white); color: var(--viva-navy); border: 1px solid rgba(25, 32, 40, 0.12); }
.flick-card-media.is-purple { background: var(--viva-navy);  color: var(--viva-lime); --icon-accent: var(--viva-white); }
.flick-card-art { height: 5.5rem; margin-bottom: 1rem; }
.flick-card-art img { height: 100%; width: auto; }
.flick-card-title { font-size: clamp(1.5rem, 2vw, 2rem); text-align: left; margin-bottom: 0.25rem; line-height: 0.95; letter-spacing: 0.01em; }
.flick-card-price { font-size: 1rem; font-weight: 500; margin-bottom: 1rem; }
.flick-card-desc { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
.flick-card-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.flick-card-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9375rem; line-height: 1.45; }
/* ícones VivaIcons (svg inline); 0.25em corrige o alinhamento vertical
   com a 1ª linha do texto — pendência já registrada no COPY-MAP.md
   desde a subida do line-height de 1.15 para 1.45 */
.flick-card-list svg { width: 1rem; height: 1rem; margin-top: 0.25em; flex: none; }
/* botão da carta: entra com rotação, só na ativa */
.flick-card-btn {
  margin-top: 1rem; width: 100%;
  opacity: 0; transform: translateY(50%) rotate(5deg);
  transition: opacity 0.4s cubic-bezier(0.625, 0.05, 0, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.flick-card-item[data-pos="0"] .flick-card-btn { opacity: 1; transform: translateY(0) rotate(0.001deg); pointer-events: auto; }
/* botões por par de cor da carta */
.is-green  .flick-card-btn { color: var(--viva-navy); }
.is-green  .flick-card-btn .btn-bg { background: var(--viva-lime); }
.is-brown  .flick-card-btn { color: var(--viva-lime); }
.is-brown  .flick-card-btn .btn-bg { background: var(--viva-navy); }
.is-pink   .flick-card-btn { color: var(--viva-white); }
.is-pink   .flick-card-btn .btn-bg { background: var(--viva-navy); }
.is-purple .flick-card-btn { color: var(--viva-navy); }
.is-purple .flick-card-btn .btn-bg { background: var(--viva-lime); }
.flick-hint { margin-top: 2.5rem; opacity: 0.6; color: var(--light-purple); }

/* =====================================================
   BENEFITS — verde escuro, linhas mint 20%
   ===================================================== */
.benefits { padding: 12rem 2rem; }
.benefits-list { margin-top: 4rem; width: 100%; max-width: 80rem; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.benefits-item {
  display: flex; align-items: baseline; gap: 3rem;
  padding: 1.6rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.benefits-num { font-size: 0.875rem; font-weight: 600; flex: none; width: 3rem; }
.benefits-txt {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 3.6rem); line-height: 1; text-align: left;
  letter-spacing: 0.01em; word-spacing: 0.02em;
}

/* =====================================================
   JOIN — seção clara, golf lottie, sticker inline
   ===================================================== */
.join { padding: 12rem 2rem; }
.join-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; width: 100%; }
.join-title { color: var(--black); }
.inline-sticker {
  display: inline-block; width: 0.9em; height: 0.62em;
  background: var(--yellow); border-radius: 999px; overflow: hidden;
  vertical-align: baseline;
}
.join-copy { max-width: 46rem; text-align: center; }

/* cartões de unidade (endereço + WhatsApp direto) */
.unidades {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem; width: 100%; max-width: 60rem; margin-top: 2rem;
}
.unidade {
  border: 1px solid rgba(25, 32, 40, 0.14); border-radius: 20px;
  padding: 1.75rem; text-align: left;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.unidade:hover { border-color: var(--viva-navy); transform: translateY(-3px); }
.unidade-nome {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem); line-height: 1; letter-spacing: 0.01em;
}
.unidade-end { font-size: 0.9375rem; line-height: 1.5; opacity: 0.75; }
.unidade-zap {
  margin-top: auto; padding-top: 0.75rem;
  font-weight: 600; font-size: 1.0625rem;
  width: max-content; border-bottom: 2px solid var(--viva-lime);
  transition: border-color 0.3s var(--ease-out);
}
.unidade-zap:hover { border-color: var(--viva-navy); }
@media (max-width: 767px) {
  .unidades { grid-template-columns: 1fr; }
}

/* =====================================================
   FOOTER — roxo escuro, links rosa
   ===================================================== */
.footer { position: relative; z-index: 2; background: var(--dark-purple); color: var(--light-purple); padding: 3rem 2.5rem 1.5rem; overflow: hidden; }
.footer-logo-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; align-items: end; }
/* caixa 1:1 pro quadrifólio animado (svg interno usa height 100%) */
.footer-runner { grid-column: 1 / span 2; width: 6.5rem; aspect-ratio: 1; }
.footer-logo { grid-column: 3 / span 4; width: 15rem; max-width: 100%; }
.footer-links-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin-top: 5rem; }
.footer-label { font-size: 0.75rem; opacity: 0.6; margin-bottom: 1rem; }
.footer-link { display: block; font-size: 1rem; font-weight: 500; line-height: 1.3; padding: 0.25rem 0; width: max-content; }
.footer-link .nav-item-wrap { height: 1.3em; }
.footer-row-2 {
  margin-top: 15rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
  font-size: 0.75rem; line-height: 1.5;
}
.footer-credit { display: flex; align-items: center; gap: 0.5rem; }
.footer-credit img { width: 1rem; height: 1rem; }

/* =====================================================
   ESTADOS DE INTRO / REVEAL
   ===================================================== */
[data-reveal] { opacity: 0; transform: translateY(3rem); }
.hero-line > .hero-line-inner { display: block; }
.nav { opacity: 0; }

/* =====================================================
   TABLET / MOBILE — corte principal 991px (como o original)
   ===================================================== */
@media (max-width: 991px) {
  .wrapper { padding: 7rem 2rem; }
  .nav-desktop-items { display: none; }
  .nav-burger { display: block; }
  /* nav compacta: sem isso o CTA "Agendar" era esmagado pelo
     flex e o char-roll quebrava linha (aparecia só "Ag") */
  .nav-wrap { padding: 1rem 1.25rem; gap: 1rem; }
  .nav-right-group { gap: 1rem; }
  .nav-logo-link { width: 7rem; }
  .headline-xxl { font-size: clamp(6rem, 30vw, 160px); }
  .headline-xl  { font-size: clamp(5rem, 24vw, 120px); }
  /* mesmo 0.92 do desktop — mesma fonte, mesmo par de linhas,
     mesma física de overshoot dos glifos (ver .hero-title acima) */
  .hero-title {
    font-size: min(21vw, 150px, 17vh);
    font-size: min(21vw, 150px, 17svh);
    line-height: 0.92;
  }
  .sondern-grid, .footer-logo-row { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .sondern-copy { display: flex; flex-direction: column; align-items: flex-start; }
  .quote-sled { display: none; }
  .footer-links-row { grid-template-columns: 1fr; margin-top: 3rem; }
  .footer-row-2 { margin-top: 5rem; }
  .sticker-cursor { display: none; }
  .flick-stage { width: 60vw; }
}
@media (max-width: 479px) {
  .wrapper { padding: 7rem 1.5rem; }
  .flick-stage { width: 75vw; max-width: 32.5rem; }
  .values-item { border-radius: 16px; padding: 1.25rem 1.5rem; gap: 1.5rem; }
  .btn.is-full-mobile { width: 100%; }
}
