/* =====================================================================
   JUMP LAB — LP  ·  css/style.css
   Paleta oficial (do logo): roxo #1b0742 · amarelo #fde803 · pink #ff2e9b
   ciano #02b6cf · lime #ceff06
   ===================================================================== */

:root {
  --purple: #1b0742;
  --purple-2: #24095a;
  --purple-3: #2f0f6e;
  --purple-deep: #120430;
  --yellow: #fde803;
  --pink: #ff2e9b;
  --cyan: #02b6cf;
  --lime: #ceff06;
  --white: #ffffff;
  --ink: #1b0742;
  --text: #ece6f7;
  --text-dim: rgba(236, 230, 247, 0.72);
  --whats: #25d366;

  --display: 'Lilita One', 'Arial Black', Impact, sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 22px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--purple);
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.02; letter-spacing: 0.005em; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--yellow); color: var(--ink); padding: 10px 16px; z-index: 100; border-radius: 8px; font-weight: 700; }
.skip:focus { left: 8px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }
.center { text-align: center; }
.hint { margin-top: 14px; font-size: 0.95rem; color: var(--text-dim); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.02em;
  padding: 14px 26px; border-radius: 999px; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(.99); }
.btn--yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 0 -2px rgba(255, 46, 155, .9), 0 14px 30px -10px rgba(253, 232, 3, .45); }
.btn--yellow:hover { box-shadow: 0 10px 0 -2px rgba(255, 46, 155, 1), 0 22px 40px -12px rgba(253, 232, 3, .55); }
.btn--purple { background: var(--purple); color: var(--white); box-shadow: 0 8px 0 -2px rgba(0, 0, 0, .25); }
.btn--lg { font-size: 1.25rem; padding: 18px 34px; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.header.is-scrolled { background: rgba(27, 7, 66, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
.header__inner {
  width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto;
  height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.header__logo img { width: 92px; height: auto; transition: transform .3s var(--ease); }
.header__logo:hover img { transform: rotate(-4deg) scale(1.04); }
.nav { display: flex; align-items: center; gap: 28px; font-weight: 500; font-size: 0.98rem; }
.nav a:not(.btn) { position: relative; padding: 6px 0; }
.nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav__org { color: var(--lime); }
.nav__cta { padding: 11px 22px; font-size: 1rem; margin-left: 6px; }
.burger { display: none; width: 46px; height: 46px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 12px; background: rgba(255, 255, 255, .08); }
.burger span { width: 22px; height: 3px; border-radius: 2px; background: var(--white); transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100svh; padding: calc(var(--header-h) + 40px) 0 72px;
  display: grid; align-items: center;
  background: radial-gradient(120% 90% at 100% 0%, #2c0b6d 0%, var(--purple) 55%, var(--purple-deep) 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 60% 40%, #000 30%, transparent 100%);
}
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.hero__glow--pink { width: 520px; height: 520px; right: -120px; top: 10%; background: var(--pink); }
.hero__glow--cyan { width: 420px; height: 420px; left: -160px; bottom: -80px; background: var(--cyan); opacity: .35; }

.hero__inner {
  width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 6vw, 90px); align-items: center;
}
.hero__tag { display: inline-flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--lime); letter-spacing: .01em; margin-bottom: 18px; }
.hero__tag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(206, 255, 6, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(206, 255, 6, .6); } 70% { box-shadow: 0 0 0 12px rgba(206, 255, 6, 0); } 100% { box-shadow: 0 0 0 0 rgba(206, 255, 6, 0); } }

.hero__title { font-size: clamp(2.6rem, 6.4vw, 5.4rem); color: var(--white); text-wrap: balance; }
.hero__brand {
  display: inline-block;
  color: var(--yellow);
  -webkit-text-stroke: 0;
  text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 rgba(2, 182, 207, .45);
  transform: rotate(-2deg);
}
.hero__sub { margin-top: 14px; font-family: var(--display); font-size: clamp(1.25rem, 2.4vw, 1.8rem); color: var(--cyan); line-height: 1.15; }
.hero__lead { margin-top: 26px; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.hero__text { margin-top: 12px; color: var(--text-dim); max-width: 60ch; }
.hero__result { margin-top: 14px; color: var(--white); max-width: 60ch; }
.hero__result strong { color: var(--yellow); font-weight: 700; }
.hero__actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.hero__place { display: inline-flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: .95rem; font-weight: 500; }
.hero__place:hover { color: var(--white); }

/* Visual do hero: moldura + órbitas + tiles */
.hero__visual { position: relative; aspect-ratio: 1; max-width: 560px; margin-inline: auto; width: 100%; }
.hero__visual [data-depth] { transform: translate3d(var(--px, 0), var(--py, 0), 0); transition: transform .12s linear; }
.hero__frame {
  position: absolute; inset: 9% 8%; margin: 0; z-index: 2;
  border-radius: 34px; overflow: hidden; rotate: -3deg;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7), 0 0 0 6px var(--purple), 0 0 0 10px var(--pink);
  animation: float 6s ease-in-out infinite;
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.orbit {
  position: absolute; z-index: 1; inset: 0; border-radius: 50%;
  border: 2px solid transparent; pointer-events: none;
}
.orbit::after { content: ''; position: absolute; width: 14px; height: 14px; border-radius: 50%; top: -8px; left: calc(50% - 7px); box-shadow: 0 0 18px 4px currentColor; background: currentColor; }
.orbit--1 { color: var(--lime); border-color: rgba(206, 255, 6, .55); inset: -4% -6%; rotate: 20deg; animation: spin 14s linear infinite; }
.orbit--2 { color: var(--pink); border-color: rgba(255, 46, 155, .55); inset: 2% -10%; rotate: -35deg; animation: spin 22s linear infinite reverse; }
.orbit--3 { color: var(--cyan); border-color: rgba(2, 182, 207, .5); inset: -8% 4%; rotate: 60deg; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.tile {
  position: absolute; z-index: 3; left: var(--tx); top: var(--ty);
  width: 92px; aspect-ratio: 1; border-radius: 14px; padding: 8px 10px;
  display: grid; grid-template-rows: auto 1fr auto;
  color: var(--ink); font-family: var(--body);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, .6);
  rotate: -6deg;
}
.tile small { font-size: .7rem; font-weight: 700; }
.tile b { font-family: var(--display); font-size: 2rem; line-height: 1; align-self: center; }
.tile i { font-size: .62rem; font-style: normal; opacity: .75; }
.tile--yellow { background: var(--yellow); }
.tile--pink { background: var(--pink); color: var(--white); rotate: 8deg; }
.tile--cyan { background: var(--cyan); color: var(--white); rotate: -10deg; }
.spark { position: absolute; z-index: 3; width: 18px; height: 18px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 20px 6px rgba(253, 232, 3, .45); }
.spark--1 { left: 4%; top: 44%; }
.spark--2 { left: 92%; top: 36%; background: var(--lime); box-shadow: 0 0 20px 6px rgba(206, 255, 6, .45); width: 12px; height: 12px; }
.spark--3 { left: 40%; top: 96%; background: var(--pink); box-shadow: 0 0 20px 6px rgba(255, 46, 155, .45); width: 14px; height: 14px; }

/* Entrada do hero (única sequência orquestrada) */
.hero__copy > * { opacity: 0; translate: 0 22px; animation: rise .8s var(--ease) forwards; }
.hero__copy > *:nth-child(1) { animation-delay: .05s; }
.hero__copy > *:nth-child(2) { animation-delay: .15s; }
.hero__copy > *:nth-child(3) { animation-delay: .25s; }
.hero__copy > *:nth-child(4) { animation-delay: .35s; }
.hero__copy > *:nth-child(5) { animation-delay: .42s; }
.hero__copy > *:nth-child(6) { animation-delay: .49s; }
.hero__copy > *:nth-child(7) { animation-delay: .56s; }
.hero__copy > *:nth-child(8) { animation-delay: .65s; }
.hero__visual { opacity: 0; scale: .92; animation: pop 1s var(--ease) .3s forwards; }
@keyframes rise { to { opacity: 1; translate: 0 0; } }
@keyframes pop { to { opacity: 1; scale: 1; } }

/* ---------- Marquee ---------- */
.marquee { background: var(--yellow); color: var(--ink); overflow: hidden; padding: 14px 0; rotate: -1.2deg; scale: 1.03; position: relative; z-index: 3; box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 22s linear infinite; }
.marquee__track span { font-family: var(--display); font-size: clamp(1.2rem, 2.6vw, 1.8rem); white-space: nowrap; padding-inline: 32px; letter-spacing: .02em; }
.marquee__track em { font-style: normal; color: var(--pink); padding-inline: 6px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Seções ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__title { font-size: clamp(2.3rem, 5vw, 4rem); color: var(--white); text-wrap: balance; }
.section__sub { margin-top: 10px; font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--pink); line-height: 1.15; }
.section__sub--plain { font-family: var(--body); font-weight: 500; font-size: 1.1rem; color: var(--text-dim); }
.section__lead { margin-top: 18px; font-weight: 700; font-size: 1.15rem; color: var(--lime); }
.section__text { margin-top: 18px; color: var(--text-dim); max-width: 62ch; }

/* Reveal */
.reveal { opacity: 0; translate: 0 26px; transition: opacity .8s var(--ease), translate .8s var(--ease); }
.reveal.is-in { opacity: 1; translate: 0 0; }

/* ---------- Faixa color-block (paredes do parque) ---------- */
.stripe { display: flex; height: 26px; rotate: -1.2deg; scale: 1.04; position: relative; z-index: 2; }
.stripe i { flex: 1; }
.stripe i:nth-child(1) { background: var(--cyan); }
.stripe i:nth-child(2) { background: var(--lime); }
.stripe i:nth-child(3) { background: var(--pink); }
.stripe i:nth-child(4) { background: var(--yellow); }
.stripe i:nth-child(5) { background: var(--cyan); }
.stripe i:nth-child(6) { background: var(--pink); }
.stripe--flip { rotate: 1.2deg; }

/* ---------- Atrações: elementos ---------- */
.atracoes { background: var(--purple); }
.elements { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; perspective: 1200px; }
.element { --accent: var(--yellow); }
.element__card {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden;
  background: var(--purple-2); border: 2px solid rgba(255, 255, 255, .06);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .18s ease-out, border-color .3s, box-shadow .3s;
  transform-style: preserve-3d; cursor: pointer;
}
.element__card::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .18), transparent 45%);
  opacity: 0; transition: opacity .3s;
}
.element__card:hover, .element__card:focus-visible { border-color: var(--accent); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .8), 0 0 0 1px var(--accent); }
.element__card:hover::after { opacity: 1; }
.element__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .55; scale: 1.05; filter: saturate(1.1);
  transition: opacity .5s var(--ease), scale .8s var(--ease);
}
.element__card:hover .element__img, .element__card:focus-visible .element__img { opacity: 1; scale: 1; }
.element__body {
  position: absolute; inset: 0; z-index: 1; padding: 18px; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(27, 7, 66, .15) 0%, rgba(27, 7, 66, .05) 40%, rgba(27, 7, 66, .92) 78%);
}
.element__top { display: flex; align-items: flex-start; justify-content: space-between; color: var(--white); }
.element__top small { font-weight: 700; font-size: .85rem; background: rgba(27, 7, 66, .7); padding: 4px 9px; border-radius: 8px; }
.element__symbol { font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--accent); text-shadow: 0 4px 0 rgba(0, 0, 0, .35); }
.element__body h3 { margin-top: auto; font-size: 1.5rem; color: var(--white); }
.element__body p { margin-top: 6px; color: var(--accent); font-weight: 700; font-size: .98rem; }

/* ---------- Ingressos ---------- */
.ingressos { background: linear-gradient(180deg, var(--purple-deep), var(--purple) 40%); }

.energy {
  background: var(--purple-2); border: 2px solid rgba(255, 255, 255, .08); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); margin-bottom: clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden; transition: border-color .4s, box-shadow .4s;
}
.energy::before { content: ''; position: absolute; inset: -40% -20% auto auto; width: 320px; height: 320px; border-radius: 50%; filter: blur(70px); background: var(--cyan); opacity: .18; transition: background .5s; }
.energy[data-level="mid"]::before { background: var(--yellow); }
.energy[data-level="high"]::before { background: var(--pink); opacity: .3; }
.energy.is-max { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(253, 232, 3, .18), 0 30px 60px -30px rgba(253, 232, 3, .5); }
.energy__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; position: relative; }
.energy__q { font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--white); }
.energy__value { font-family: var(--display); font-size: clamp(2rem, 4vw, 3rem); color: var(--yellow); line-height: 1; min-width: 3.2ch; text-align: right; }
.energy.is-max .energy__value { animation: bounce .5s var(--ease); }
@keyframes bounce { 30% { scale: 1.3; } 100% { scale: 1; } }
.energy__range {
  --fill: 50%;
  width: 100%; margin: 22px 0 8px; appearance: none; -webkit-appearance: none; height: 16px; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--yellow) 50%, var(--pink) 100%);
  outline: none; cursor: pointer; position: relative;
}
.energy__range::-webkit-slider-thumb { -webkit-appearance: none; width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 5px solid var(--purple); box-shadow: 0 8px 20px -6px rgba(0,0,0,.7); cursor: grab; transition: scale .2s; }
.energy__range::-webkit-slider-thumb:active { cursor: grabbing; scale: 1.1; }
.energy__range::-moz-range-thumb { width: 30px; height: 30px; border-radius: 50%; background: var(--white); border: 5px solid var(--purple); box-shadow: 0 8px 20px -6px rgba(0,0,0,.7); cursor: grab; }
.energy__range:focus-visible { outline: 3px solid var(--yellow); outline-offset: 6px; }
.energy__scale { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 700; color: var(--text-dim); }
.energy__msg { margin-top: 16px; font-weight: 500; color: var(--white); min-height: 1.6em; }
.energy.is-max .energy__msg { color: var(--yellow); font-weight: 700; }

.how__title { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--white); margin-bottom: 28px; }
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; margin-bottom: 48px; position: relative; }
.how::before { content: ''; position: absolute; left: 6%; right: 6%; top: 36px; border-top: 3px dashed rgba(255, 255, 255, .14); z-index: 0; }
.how__step { position: relative; z-index: 1; padding: 0 8px; }
.how__num {
  display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%;
  font-family: var(--display); font-size: 2rem; color: var(--ink); background: var(--yellow);
  box-shadow: 0 0 0 8px var(--purple), 0 0 0 10px rgba(253, 232, 3, .35); margin-bottom: 18px;
}
.how__step:nth-child(2) .how__num { background: var(--cyan); color: var(--white); box-shadow: 0 0 0 8px var(--purple), 0 0 0 10px rgba(2, 182, 207, .4); }
.how__step:nth-child(3) .how__num { background: var(--pink); color: var(--white); box-shadow: 0 0 0 8px var(--purple), 0 0 0 10px rgba(255, 46, 155, .4); }
.how__step:nth-child(4) .how__num { background: var(--lime); box-shadow: 0 0 0 8px var(--purple), 0 0 0 10px rgba(206, 255, 6, .4); }
.how__step h4 { font-size: 1.3rem; color: var(--white); }
.how__step p { margin-top: 6px; color: var(--text-dim); font-size: .98rem; }

/* ---------- Festas ---------- */
.festas { background: var(--purple-deep); overflow: hidden; }
.festas__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.festas__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .16; filter: saturate(1.2); -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); }
.festas .container { position: relative; z-index: 1; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 980px; }
.plan {
  position: relative; border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); color: var(--ink);
  display: flex; flex-direction: column; gap: 22px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .8);
  transition: transform .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); }
.plan--cyan { background: var(--cyan); color: var(--white); }
.plan--pink { background: var(--pink); color: var(--white); }
.plan__badge { position: absolute; top: -14px; right: 22px; background: var(--yellow); color: var(--ink); font-family: var(--display); font-size: .95rem; padding: 6px 14px; border-radius: 999px; rotate: 3deg; box-shadow: 0 8px 16px -8px rgba(0,0,0,.6); }
.plan__head h3 { font-size: clamp(2rem, 3.4vw, 2.6rem); }
.plan__head .plus { display: inline-grid; place-items: center; width: .9em; height: .9em; margin-left: .1em; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: .85em; vertical-align: .05em; }
.plan__head p { margin-top: 8px; font-weight: 500; opacity: .92; }
.plan__list { display: grid; gap: 10px; flex: 1; }
.plan__list li { position: relative; padding-left: 32px; font-weight: 500; }
.plan__list li::before { content: ''; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: rgba(27, 7, 66, .85); }
.plan__list li::after { content: ''; position: absolute; left: 7px; top: 8px; width: 5px; height: 9px; border: solid var(--yellow); border-width: 0 3px 3px 0; rotate: 45deg; }
.plan .btn { align-self: flex-start; }

/* ---------- Regras (lime) ---------- */
.regras { background: var(--lime); color: var(--ink); }
.regras .section__title { color: var(--ink); }
.regras .section__sub--plain { color: rgba(27, 7, 66, .75); }
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rule {
  display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: start;
  background: rgba(255, 255, 255, .55); border-radius: var(--radius-sm); padding: 18px 18px 18px 16px;
  border: 2px solid rgba(27, 7, 66, .1);
}
.rule span { font-family: var(--display); font-size: 2.2rem; line-height: 1; color: var(--pink); text-shadow: 3px 3px 0 var(--purple); }
.rule p { font-size: .97rem; line-height: 1.5; color: var(--ink); }
.socks { margin-top: 48px; display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center; background: var(--purple); color: var(--white); border-radius: var(--radius); padding: 22px; }
.socks img { border-radius: 14px; aspect-ratio: 4/5; object-fit: cover; }
.socks h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--yellow); text-wrap: balance; }
.socks p { margin-top: 10px; color: var(--text-dim); max-width: 50ch; }

/* ---------- FAQ ---------- */
.faq { background: var(--purple); }
.accordion { display: grid; gap: 12px; }
.faq__item { background: var(--purple-2); border: 2px solid rgba(255, 255, 255, .07); border-radius: 16px; overflow: hidden; transition: border-color .3s; }
.faq__item[open] { border-color: var(--cyan); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--display); font-size: 1.15rem; color: var(--white);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 60% no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 60% no-repeat, linear-gradient(#000 0 0); mask-composite: exclude;
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--cyan); }
.faq__body { padding: 0 22px 20px; color: var(--text-dim); animation: fadeDown .35s var(--ease); }
@keyframes fadeDown { from { opacity: 0; translate: 0 -6px; } to { opacity: 1; translate: 0 0; } }

/* ---------- Contato ---------- */
.contato { background: linear-gradient(180deg, var(--purple), var(--purple-deep)); }
.contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.contact-list { margin-top: 30px; display: grid; gap: 12px; }
.contact-list a { display: flex; align-items: center; gap: 16px; padding: 14px 16px; border-radius: 16px; background: var(--purple-2); border: 2px solid rgba(255, 255, 255, .06); transition: border-color .3s, transform .3s var(--ease); }
.contact-list a:hover { border-color: rgba(255, 255, 255, .25); transform: translateX(4px); }
.contact-list b { display: block; font-weight: 700; color: var(--white); }
.contact-list em { font-style: normal; color: var(--text-dim); font-size: .95rem; }
.contact-list__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--ink); }
.contact-list__icon--green { background: var(--whats); color: var(--white); }
.contact-list__icon--pink { background: var(--pink); color: var(--white); }
.contact-list__icon--cyan { background: var(--cyan); color: var(--white); }
.contact-list__icon--yellow { background: var(--yellow); }
.contact-list__icon--lime { background: var(--lime); }
.contato__map { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 0 0 4px var(--purple-2), 0 0 0 8px var(--cyan), 0 40px 80px -40px rgba(0,0,0,.9); rotate: 1.5deg; }
.contato__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }

/* ---------- Rodapé ---------- */
.footer { background: var(--purple-deep); border-top: 1px solid rgba(255, 255, 255, .06); padding: 56px 0 110px; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; align-items: start; }
.footer__brand img { width: 110px; }
.footer__brand p { margin-top: 14px; color: var(--text-dim); font-size: .95rem; }
.footer__nav { display: grid; gap: 10px; font-weight: 500; }
.footer__nav a:hover { color: var(--yellow); }
.footer__org { justify-self: end; text-align: right; }
.footer__org span { display: block; font-size: .85rem; color: var(--text-dim); margin-bottom: 8px; }
.footer__orglogo { display: inline-flex; align-items: baseline; gap: 4px; font-family: var(--display); font-size: 1.8rem; color: var(--white); line-height: 1; }
.footer__orglogo small { font-family: var(--body); font-size: .8rem; font-weight: 700; color: var(--lime); text-transform: lowercase; }
.footer__legal { margin-top: 40px; text-align: center; font-size: .85rem; color: var(--text-dim); }

/* ---------- Barra fixa mobile + WhatsApp ---------- */
.stickybar { position: fixed; z-index: 40; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px; transition: transform .4s var(--ease), opacity .3s; }
.stickybar .btn { display: none; }
.stickybar__wa { width: 58px; height: 58px; border-radius: 50%; background: var(--whats); color: var(--white); display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); transition: transform .3s var(--ease); }
.stickybar__wa:hover { transform: scale(1.08); }
.stickybar.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }

/* =====================================================================
   Responsivo
   ===================================================================== */
@media (max-width: 1080px) {
  .how { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .how::before { display: none; }
  .rules { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 18px; font-size: .92rem; }
  .nav__org { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .header__logo img { width: 74px; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 49;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
    padding: 24px var(--gutter) 40px; background: var(--purple-deep);
    font-family: var(--display); font-size: 1.7rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a:not(.btn) { padding: 10px 0; }
  .nav__org { display: block; font-size: 1.1rem; font-family: var(--body); font-weight: 700; margin-top: 12px; }
  .nav__cta { margin: 18px 0 0; font-size: 1.2rem; padding: 14px 28px; }
  /* sem backdrop-filter no mobile: ele viraria containing block do menu fixed */
  .header, .header.is-scrolled { background: rgba(27, 7, 66, .96); backdrop-filter: none; -webkit-backdrop-filter: none; }

  .hero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 56px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; order: -1; }
  .hero__glow { filter: blur(60px); }
  .tile { width: 72px; }
  .tile b { font-size: 1.6rem; }
  .plans { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }
  .contato__map { rotate: 0deg; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__org { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .footer { padding-bottom: 120px; }
  .stickybar { left: 18px; }
  .stickybar .btn { display: inline-flex; flex: 1; }
  .stickybar__wa { flex: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero__visual { max-width: 340px; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn--lg { width: 100%; font-size: 1.15rem; }
  .elements { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--gutter) 18px; margin-inline: calc(-1 * var(--gutter)); scrollbar-width: none; }
  .elements::-webkit-scrollbar { display: none; }
  .element { flex: 0 0 74%; scroll-snap-align: center; }
  .element__card { transform: none !important; }
  .element__img { opacity: .9; scale: 1; }
  .how { grid-template-columns: 1fr; gap: 24px; }
  .how__step { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; align-items: center; }
  .how__num { width: 56px; height: 56px; font-size: 1.6rem; margin: 0; grid-row: 1 / 3; }
  .how__step h4 { grid-column: 2; }
  .how__step p { grid-column: 2; margin-top: 2px; }
  .rules { grid-template-columns: 1fr; }
  .socks { grid-template-columns: 1fr; }
  .socks img { max-width: 220px; }
  .marquee { rotate: -2deg; }
  .footer__grid { grid-template-columns: 1fr; }
  .stripe { height: 18px; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__copy > *, .hero__visual, .reveal { opacity: 1; translate: 0 0; scale: 1; }
  .marquee__track { animation: none; }
  .element__card { transform: none !important; }
}
