/* =========================================================
   RAEVO club — Landing Page
   Paleta travada: #8c52ff · #ffffff · #000000
   Tipografia: Stego (display) + Barlow (texto)
   ========================================================= */

@font-face {
  font-family: 'Stego';
  src: url('../assets/stego.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --roxo: #8c52ff;
  --roxo-esc: #6f3ee0;
  --roxo-fundo: #1e0848;   /* roxo profundo — base do hero sobre foto noturna */
  --preto: #000;
  --carvao: #0b0b0b;
  --off: #f2f0ee;
  --branco: #fff;

  --display: 'Stego', 'Archivo', system-ui, sans-serif;
  --texto: 'Barlow', system-ui, -apple-system, sans-serif;

  --gutter: clamp(24px, 6vw, 100px);
  --max: 1240px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: .8s;
}

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

/* O scroll suave é feito no JS (main.js, seção 7), que respeita
   prefers-reduced-motion. Aqui ficaria duplicado. */
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--off);
  color: var(--preto);
  font-family: var(--texto);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

/* qualquer `display` de componente venceria o [hidden] nativo — aqui não */
[hidden] { display: none !important; }
h1, h2, h3, p, ol, ul, figure { margin: 0; }
ol, ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--roxo);
  outline-offset: 3px;
}

::selection { background: var(--roxo); color: var(--branco); }

.wrap {
  width: 100%;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: -100px; left: 16px;
  z-index: 999;
  background: var(--preto); color: var(--branco);
  padding: 14px 20px;
  font: 600 13px/1 var(--texto);
  letter-spacing: .12em; text-transform: uppercase;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 16px; }

/* ---------- barra de progresso ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0;
  height: 3px; z-index: 90;
  background: rgba(0, 0, 0, .12);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.progress.is-on { opacity: 1; }
.progress__bar {
  display: block; height: 100%;
  background: var(--roxo);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

/* =========================================================
   TIPOGRAFIA COMPARTILHADA
   ========================================================= */
.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.02;      /* espaço para acento (É) e perna do Q */
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}
.h2 em { font-style: normal; color: var(--roxo); }
.h2--light { color: var(--branco); }

/* Quebra de linha controlada. Sem overflow:hidden aqui — a Stego tem
   perna longa no Q e acento alto no É, e qualquer corte come os dois. */
.line { display: block; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  --bg: var(--branco);
  --fg: var(--preto);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 22px 40px;
  background: var(--bg);
  color: var(--fg);
  font: 700 clamp(15px, 1.2vw, 17px)/1 var(--texto);
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), transform .45s var(--ease-out);
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: var(--preto);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover { color: var(--branco); transform: translateY(-2px); }
.btn:hover::after { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--dark { --bg: var(--preto); --fg: var(--branco); }
.btn--dark::after { background: var(--roxo); }
.btn--dark:hover { color: var(--preto); }


/* =========================================================
   DOBRA 1 · HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  height: clamp(660px, 92vh, 900px);
  background: var(--roxo-fundo);   /* base escura, igual à foto, enquanto ela carrega */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__media {
  position: absolute;
  top: -12%; left: 0; right: 0;
  height: 124%;
  will-change: transform;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 80% 44%;
  transform: scale(1.06);
  opacity: 0;
  animation: heroIn 1.8s var(--ease-out) .1s forwards;
}
@keyframes heroIn {
  to { transform: scale(1); opacity: 1; }
}

/* Três camadas: escurece a esquerda para o título respirar, escurece o topo
   para a nav, e joga um véu roxo por cima de tudo para amarrar com a marca. */
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(20, 6, 50, .93) 0%,
      rgba(20, 6, 50, .82) 30%,
      rgba(20, 6, 50, .38) 58%,
      rgba(20, 6, 50, 0) 84%),
    linear-gradient(180deg, rgba(12, 4, 32, .62) 0%, rgba(12, 4, 32, 0) 24%),
    linear-gradient(0deg, rgba(140, 82, 255, .20), rgba(140, 82, 255, .20));
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 2.4vw, 34px) var(--gutter);
  transition: padding .45s var(--ease), background .45s var(--ease),
              transform .5s var(--ease-out), box-shadow .45s var(--ease);
}
.nav__logo img { height: clamp(30px, 3.2vw, 46px); width: auto; }

.nav__acoes {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
}

/* CTA de agendamento — o único botão sólido da nav, para não competir
   com o "Quero fazer parte", que fica em contorno */
.nav__agenda {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px clamp(16px, 1.6vw, 24px);
  background: var(--roxo);
  color: var(--preto);
  font: 700 clamp(12px, 1.05vw, 14px)/1 var(--texto);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease),
              transform .35s var(--ease-out);
}
.nav__agenda:hover {
  background: var(--branco);
  color: var(--preto);
  transform: translateY(-2px);
}
.nav__agenda:active { transform: translateY(0); }
.nav__links > a {
  position: relative;
  font: 500 14px/1 var(--texto);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  padding-block: 6px;
  transition: color .3s var(--ease);
}
.nav__links > a:not(.nav__cta)::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .45s var(--ease-out);
}
.nav__links > a:not(.nav__cta):hover { color: #fff; }
.nav__links > a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.nav__cta {
  color: #fff !important;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, .6);
  padding: 13px 22px !important;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav__cta:hover {
  background: #fff;
  color: var(--roxo) !important;
  border-color: #fff;
}

/* fundo sólido assim que a página começa a rolar */
.nav.is-stuck {
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: clamp(12px, 1.4vw, 18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
}
/* esconde ao descer, devolve ao subir */
.nav.is-away { transform: translateY(-102%); }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 10px 4px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  transition: transform .35s var(--ease);
}
.burger:hover span:first-child { transform: translateX(-4px); }
.burger:hover span:last-child { transform: translateX(4px); }

/* ---- conteúdo do hero ---- */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter) 90px;
}
.hero__content {
  max-width: 900px;
  will-change: transform, opacity;
}
.hero__title img {
  width: clamp(300px, 47vw, 680px);
  height: auto;
}
.hero__lead {
  margin-top: clamp(18px, 2.4vw, 30px);
  max-width: 520px;
  font-size: clamp(16px, 1.6vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .93);
  text-wrap: pretty;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 22px);
  margin-top: clamp(28px, 3.6vw, 44px);
}
.hero__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 500 13px/1.4 var(--texto);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.6); }
  70%  { box-shadow: 0 0 0 11px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---- seta de scroll ---- */
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 86px;
  z-index: 4;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: 14px;
  transform: translateX(-50%);
  transition: border-color .3s var(--ease);
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 2s var(--ease) infinite;
}
.hero__scroll:hover { border-color: #fff; }
@keyframes scrollDot {
  0%   { opacity: 0; transform: translate(-50%, -4px); }
  35%  { opacity: 1; }
  75%  { opacity: 0; transform: translate(-50%, 16px); }
  100% { opacity: 0; }
}

/* ---- ticker ---- */
.ticker {
  position: relative;
  z-index: 5;
  height: clamp(46px, 4vw, 58px);
  background: var(--preto);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tickerRun 34s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 44px);
  padding-right: clamp(28px, 3vw, 44px);
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 15px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.ticker__group b { color: var(--roxo); font-weight: 400; animation: spin 9s linear infinite; }
@keyframes tickerRun { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
.ticker:hover .ticker__track { animation-play-state: paused; }


/* =========================================================
   DOBRA 2 · CONCEITO
   ========================================================= */
.conceito {
  position: relative;
  background: var(--off);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.conceito__mark {
  position: absolute;
  right: -90px; top: 4%;
  width: clamp(180px, 22vw, 360px);
  opacity: .035;
  pointer-events: none;
  will-change: transform;
}

.conceito__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 60px);
  margin-bottom: clamp(38px, 5vw, 64px);
  flex-wrap: wrap;
}
.conceito__sub {
  max-width: 330px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(0, 0, 0, .62);
  text-wrap: pretty;
}

/* ---- cards lambe ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
}
.card {
  position: relative;
  padding: clamp(26px, 2.8vw, 44px) clamp(22px, 2.6vw, 36px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  will-change: transform;
}
.card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: .9;
  letter-spacing: -.02em;
}
.card p {
  margin-top: 14px;
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 30px);
  line-height: 1.15;
}
.card--white  { background: var(--branco); }
.card--white  h3 { color: var(--roxo); }
.card--white  p  { color: var(--preto); }
.card--purple { background: var(--roxo); }
.card--purple h3 { color: var(--preto); }
.card--purple p  { color: var(--branco); }
.card--black  { background: var(--preto); }
.card--black  h3 { color: var(--roxo); }
.card--black  p  { color: var(--branco); }

.card--purple { translate: 0 14px; }
.card--black  { translate: 0 4px; }

.cards:hover .card { box-shadow: 0 6px 18px rgba(0, 0, 0, .08); }
.card:hover {
  transform: rotate(0deg) translateY(-10px) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .18) !important;
  z-index: 2;
}

/* ---- statement ---- */
.statement {
  margin-top: clamp(38px, 5vw, 64px);
  max-width: 900px;
  font-weight: 500;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.3;
  color: var(--preto);
  text-wrap: pretty;
}
.statement em { font-style: normal; color: var(--roxo); }


/* =========================================================
   DOBRA 3 · EXPERIÊNCIA
   ========================================================= */
.experiencia {
  position: relative;
  background: var(--carvao);
  color: var(--branco);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}

.shot {
  margin: clamp(32px, 4.6vw, 62px) 0;
}
.shot__frame {
  position: relative;
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  height: clamp(300px, 40vw, 520px);
  overflow: hidden;
}
.shot__img {
  position: absolute;
  top: -15%; left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: 50% 58%;
  will-change: transform;
}

/* ---- pontos numerados ---- */
.pontos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 44px);
}
.pontos li { position: relative; padding-top: 22px; }
.pontos li::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--roxo);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1s var(--ease-out) calc(var(--d, 0s) + .1s);
}
.pontos li.is-in::before { transform: scaleX(1); }
.pontos__n {
  display: block;
  margin-bottom: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--roxo);
}
.pontos p {
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.32;
  text-wrap: pretty;
}

/* ---- galeria ---- */
.galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(44px, 5.6vw, 76px);
}
.galeria__item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.galeria__item img {
  position: absolute;
  top: -12%; left: 0;
  width: 100%; height: 124%;
  object-fit: cover;
  will-change: transform;
}
.galeria__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(140, 82, 255, .16), rgba(140, 82, 255, .16));
  opacity: 1;
  transition: opacity .55s var(--ease);
}
.galeria__item:hover::after { opacity: 0; }


/* =========================================================
   DOBRA 4 · CONVITE
   ========================================================= */
.convite {
  position: relative;
  background: var(--roxo);
  padding: clamp(64px, 8.4vw, 110px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.convite__mark {
  position: absolute;
  left: -80px; bottom: -60px;
  width: clamp(220px, 28vw, 460px);
  opacity: .1;
  pointer-events: none;
  will-change: transform;
}
.convite__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.convite__kicker {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.9vw, 54px);
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--preto);
}
.convite__logo {
  width: min(470px, 100%);
  height: auto;
  margin-top: clamp(12px, 1.4vw, 18px);
}
.convite__lead {
  margin-top: clamp(16px, 2.2vw, 28px);
  max-width: 430px;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .96);
  text-wrap: pretty;
}
.convite__fine {
  margin-top: clamp(20px, 2.6vw, 34px);
  font: 500 clamp(11px, 1vw, 13px)/1.5 var(--texto);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .55);
}

.convite__box {
  position: relative;
  background: var(--branco);
}

/* ---- formulário ---- */
.form {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 22px);
  padding: clamp(26px, 3.6vw, 48px);
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field__label {
  font: 600 12px/1 var(--texto);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .5);
  transition: color .3s var(--ease);
}
.field input {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid rgba(0, 0, 0, .2);
  background: transparent;
  padding: 12px 0;
  font: 400 clamp(17px, 1.6vw, 20px)/1.2 var(--texto);
  color: var(--preto);
  outline: none;
  transition: border-color .35s var(--ease);
}
.field input::placeholder { color: rgba(0, 0, 0, .3); }
.field input:focus { border-bottom-color: var(--roxo); }
.field:focus-within .field__label { color: var(--roxo); }
.field.has-error input { border-bottom-color: var(--roxo); }

.form__error {
  margin: -6px 0 0;
  font: 500 14px/1.35 var(--texto);
  color: var(--roxo);
}
.form__fine {
  font: 400 12.5px/1.45 var(--texto);
  color: rgba(0, 0, 0, .45);
}
.form .btn { margin-top: 10px; }

/* ---- sucesso ---- */
.sucesso {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(40px, 5vw, 66px) clamp(26px, 3.4vw, 48px);
  animation: sucessoIn .7s var(--ease-out) both;
}
.sucesso img { width: 50px; height: auto; }
.sucesso h3 {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;      /* "VOCÊ ESTÁ DENTRO" tem acento alto */
  text-transform: uppercase;
}
.sucesso p {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.5;
  color: rgba(0, 0, 0, .6);
}
.sucesso a {
  color: var(--roxo);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sucesso a:hover { color: var(--preto); }
@keyframes sucessoIn {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to   { opacity: 1; transform: none; }
}


/* =========================================================
   RODAPÉ
   ========================================================= */
.rodape { background: var(--preto); padding: clamp(30px, 3.4vw, 46px) 0; }
.rodape__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rodape img { height: clamp(26px, 2.6vw, 34px); width: auto; }
.rodape__links {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  font: 500 13px/1 var(--texto);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rodape__links a {
  color: rgba(255, 255, 255, .75);
  transition: color .3s var(--ease);
}
.rodape__links a:hover { color: var(--roxo); }


/* =========================================================
   BARRA FIXA (mobile)
   ========================================================= */
.barra {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1.5px solid var(--roxo);
  transform: translateY(110%);
  transition: transform .5s var(--ease-out);
}
.barra.is-on { transform: translateY(0); }
.barra > span {
  font: 500 12px/1.3 var(--texto);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.barra__cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 14px 18px;
  background: var(--roxo);
  color: var(--preto);
  font: 700 13px/1 var(--texto);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.barra__cta:hover { background: #fff; }


/* =========================================================
   MENU MOBILE
   ========================================================= */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--roxo);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  overflow: hidden;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.menu.is-open { opacity: 1; }
.menu__close {
  position: absolute;
  top: 14px; right: 20px;
  background: none; border: 0;
  font-size: 44px; line-height: 1;
  color: var(--preto);
  cursor: pointer;
}
.menu__links { display: flex; flex-direction: column; gap: 8px; }
.menu__links a {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 12vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--preto);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out), color .3s var(--ease);
}
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: .1s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .17s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .24s; }
.menu__links a:hover { color: var(--branco); }
.menu__mark {
  position: absolute;
  right: -60px; bottom: -40px;
  width: 260px;
  opacity: .16;
  pointer-events: none;
}


/* =========================================================
   REVELAÇÃO NO SCROLL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .9s var(--ease-out) var(--d, 0s),
    transform .9s var(--ease-out) var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* cards entram com a inclinação de lambe */
.card[data-reveal] { transform: translateY(38px) rotate(0deg); }
.card[data-reveal].is-in { transform: rotate(var(--tilt, 0deg)); }


/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card--black { grid-column: 1 / -1; }
  .pontos { grid-template-columns: 1fr 1fr; }
  .pontos li:last-child { grid-column: 1 / -1; }
  .galeria { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .convite__grid { grid-template-columns: 1fr; }
  .convite__copy { max-width: 560px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  /* o botão de agendar continua no topo mesmo com o menu recolhido */
  .nav__agenda { min-height: 42px; padding: 12px 14px; font-size: 11.5px; letter-spacing: .06em; }

  /* hero mobile: foto ancorada embaixo, texto sobre o roxo */
  .hero { height: auto; min-height: 100svh; }
  .hero__media { top: -8%; height: 116%; }
  .hero__img { object-position: 62% 50%; }
  .hero__veil {
    background:
      linear-gradient(180deg,
        rgba(20, 6, 50, .94) 0%,
        rgba(20, 6, 50, .88) 26%,
        rgba(20, 6, 50, .52) 46%,
        rgba(20, 6, 50, .30) 70%,
        rgba(20, 6, 50, .62) 100%),
      linear-gradient(0deg, rgba(140, 82, 255, .22), rgba(140, 82, 255, .22));
  }
  /* texto no topo, foto no meio, CTA logo acima do ticker */
  .hero__inner { align-items: stretch; padding-top: 112px; padding-bottom: 34px; }
  .hero__content { display: flex; flex-direction: column; flex: 1; }
  .hero__actions { margin-top: auto; padding-top: 48px; }
  .hero__title img { width: 100%; }
  .hero__scroll { display: none; }

  .cards { grid-template-columns: 1fr; gap: 0; }
  .cards .card--black { grid-column: auto; }
  .card--white  { z-index: 3; }
  .card--purple { z-index: 2; margin: -8px -10px 0 14px; translate: none; }
  .card--black  { z-index: 1; margin: -8px 12px 0 -8px; translate: none; }

  .shot__frame { width: 100%; height: clamp(360px, 118vw, 500px); }
  .shot__img { object-position: 36% 60%; }

  .pontos { grid-template-columns: 1fr; gap: 26px; }
  .pontos li:last-child { grid-column: auto; }

  /* galeria vira carrossel: fotos grandes em vez de quatro miniaturas */
  .galeria {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 76%;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    scrollbar-width: none;
  }
  .galeria::-webkit-scrollbar { display: none; }
  .galeria__item { scroll-snap-align: start; aspect-ratio: 3 / 4; }

  .barra { display: flex; }
  .rodape { padding-bottom: 110px; }

  .btn { width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__note { justify-content: center; }
}

@media (max-width: 400px) {
  .barra > span { display: none; }
  .barra__cta { flex: 1; justify-content: center; }
}


/* =========================================================
   MOVIMENTO REDUZIDO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .card[data-reveal].is-in { transform: rotate(var(--tilt, 0deg)); }
  .hero__img { opacity: 1; transform: none; }
  .pontos li::before { transform: scaleX(1); }
  .ticker__track { animation: none; }
}
