/* =====================================================================
   FANXPASS CLUB - Landing Page
   Paleta: Preto (#010102) + Roxo/Azul (#7F00ED / #6842FF / #1CA1FF)
   ===================================================================== */

:root {
  --background: 240 50% 0.6%;
  --surface: 260 30% 6%;
  --card: 260 24% 8%;
  --card-hover: 260 24% 11%;
  --border: 260 18% 18%;
  --foreground: 0 0% 100%;
  --muted: 260 10% 68%;
  --muted-dim: 260 10% 50%;

  --blue-dark: 272 100% 46%;
  --blue: 252 100% 63%;
  --blue-light: 205 100% 55%;
  --gradient-blue: linear-gradient(135deg, hsl(272 100% 46%), hsl(252 100% 63%), hsl(205 100% 55%));
  --gradient-blue-soft: linear-gradient(180deg, hsl(252 100% 63% / .18), transparent);
  --glow-blue: 0 0 50px hsl(252 100% 63% / .4);

  --radius: 14px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Geist', sans-serif;
  --font-kicker: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; }
p { margin: 0; }

::selection { background: hsl(var(--blue) / .85); color: #fff; }
* { scrollbar-width: thin; scrollbar-color: hsl(var(--blue) / .7) hsl(var(--surface)); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: hsl(var(--surface)); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, hsl(var(--blue-dark)), hsl(var(--blue)));
  border-radius: 10px; border: 2px solid hsl(var(--surface));
}

/* ---------- Fundo animado (fog + partículas) ---------- */
.bg-fog-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-fog { position: absolute; border-radius: 50%; filter: blur(10px); will-change: transform; }
.bg-fog--1 {
  width: 58vw; height: 58vw; top: -18%; left: -14%;
  background: radial-gradient(circle, hsl(var(--blue) / .28), transparent 65%);
  animation: bgFogA 42s ease-in-out infinite;
}
.bg-fog--2 {
  width: 50vw; height: 50vw; top: 38%; right: -16%;
  background: radial-gradient(circle, hsl(var(--blue-light) / .22), transparent 65%);
  animation: bgFogB 50s ease-in-out infinite;
}
.bg-fog--3 {
  width: 46vw; height: 46vw; bottom: -16%; left: 22%;
  background: radial-gradient(circle, hsl(var(--blue-dark) / .3), transparent 65%);
  animation: bgFogC 56s ease-in-out infinite;
}
@keyframes bgFogA { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(8vw, 6vh); } }
@keyframes bgFogB { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-7vw, -5vh); } }
@keyframes bgFogC { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(6vw, -6vh); } }

@media (prefers-reduced-motion: reduce) {
  .bg-fog { animation: none !important; }
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section-alt {
  background: hsl(var(--surface));
  background-image:
    radial-gradient(75% 55% at 50% 0%, hsl(var(--blue) / .07), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 160px 160px;
}
.section-alt::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--blue) / .45), transparent);
}
@media (max-width: 640px) { .section { padding: 60px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: hsl(var(--blue) / .12);
  border: 1px solid hsl(var(--blue) / .35);
  font-family: var(--font-kicker); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: hsl(var(--blue-light));
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto;
  background: hsl(var(--blue-light)); box-shadow: 0 0 10px hsl(var(--blue-light) / .9);
}

.text-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.section-title {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 800;
  letter-spacing: -.01em;
}
.section-sub {
  color: hsl(var(--muted));
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-top: 16px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 36px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  letter-spacing: .03em; text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer; border: none;
  overflow: hidden; isolation: isolate;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, filter .3s;
}
.btn-primary {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 10px 40px hsl(var(--blue) / .35), inset 0 1px 0 hsl(0 0% 100% / .25);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.08) saturate(1.05); box-shadow: 0 16px 55px hsl(var(--blue) / .5); }
.btn::before {
  content: ""; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); pointer-events: none; z-index: 1;
}
.btn:hover::before { animation: shine .9s ease; }
@keyframes shine { to { left: 150%; } }
.btn .arrow { display: inline-block; transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.btn:hover .arrow { transform: translateX(5px); }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 10px 40px hsl(var(--blue) / .35), inset 0 1px 0 hsl(0 0% 100% / .25), 0 0 0 0 hsl(var(--blue) / .55); }
  50% { box-shadow: 0 10px 40px hsl(var(--blue) / .45), inset 0 1px 0 hsl(0 0% 100% / .25), 0 0 0 12px hsl(var(--blue) / 0); }
}
.btn-primary--pulse { animation: pulseRing 2.6s ease-in-out infinite; }
.btn-primary--pulse:hover { animation: none; }
.btn-outline {
  background: transparent; color: hsl(var(--foreground));
  border: 1.5px solid hsl(var(--border));
}
.btn-outline:hover { border-color: hsl(var(--blue)); color: hsl(var(--blue-light)); }
.btn-block { width: 100%; }
.cta-note { margin-top: 14px; font-size: 13px; color: hsl(var(--muted-dim)); text-align: center; }

/* ---------- Hero trust row ---------- */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 24px;
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: hsl(var(--muted));
}
.hero-trust svg { flex: 0 0 auto; color: hsl(var(--blue-light)); }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  background: hsl(var(--background) / .7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.scrolled { background: hsl(var(--background) / .92); }
.header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--blue) / .5), transparent);
  opacity: 0; transition: opacity .3s;
}
.header.scrolled::after { opacity: 1; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo-img { height: 26px; width: auto; display: block; }
.footer .logo-img { height: 34px; }
.header .btn { padding: 12px 24px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 30%, hsl(var(--blue) / .2), transparent 70%);
  z-index: -1;
}
.hero-content { max-width: 780px; }
.hero h1 { font-size: clamp(34px, 6vw, 64px); font-weight: 900; }
.hero h1 em { font-style: normal; color: hsl(var(--blue-light)); text-shadow: none; }
.hero-actions { margin-top: 36px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }

/* ---------- Hero clean / VSL ---------- */
.hero-content--vsl { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-content--vsl h1 { font-size: clamp(28px, 4.4vw, 42px); }
.hero-content--vsl .hero-sub {
  margin-top: 16px; font-size: clamp(15px, 1.8vw, 17px); color: hsl(var(--muted));
  max-width: 600px; line-height: 1.6;
}
.hero-content--vsl .hero-actions { align-items: center; }
.hero-vsl {
  width: 100%; margin: 32px 0 8px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--glow-blue);
}

/* ---------- Cards ---------- */
.card {
  position: relative; overflow: hidden;
  background-image: linear-gradient(180deg, hsl(260 22% 10%), hsl(260 26% 6%));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(0,0,0,.35), inset 0 1px 0 hsl(0 0% 100% / .05);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-blue); opacity: 0; transition: opacity .3s;
}
.card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,.55), 0 0 30px hsl(var(--blue) / .18), inset 0 1px 0 hsl(0 0% 100% / .07);
  border-color: hsl(var(--blue) / .45);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* ---------- Market stat ---------- */
.stat-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; margin-top: 48px; }
@media (max-width: 860px) { .stat-wrap { grid-template-columns: 1fr; } }
.stat-wrap--single { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
.stat-card { padding: 36px; }
.stat-vs { display: flex; align-items: center; justify-content: space-around; gap: 16px; padding: 48px 24px; text-align: center; }
.stat-vs .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 64px); }
.stat-vs .num.win {
  background: var(--gradient-blue); -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px hsl(var(--blue) / .35));
}
.stat-vs .label { margin-top: 6px; font-size: 13px; color: hsl(var(--muted)); text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-kicker); }
.stat-vs .vs-divider { font-family: var(--font-display); font-size: 20px; color: hsl(var(--muted-dim)); }
.stat-quote { font-size: 17px; color: hsl(0 0% 88%); line-height: 1.7; }
.stat-quote b { color: hsl(var(--blue-light)); }
.stat-proof { margin-top: 24px; display: flex; justify-content: center; }
.stat-proof img {
  max-width: 620px; width: 100%; border-radius: var(--radius);
  border: 1px solid hsl(var(--border)); background: hsl(var(--card));
}

/* ---------- Mentor ---------- */
.mentor-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .mentor-wrap { grid-template-columns: 1fr; gap: 32px; } }
.mentor-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); }
.mentor-photo img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.mentor-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, hsl(0 0% 0% / .55));
  pointer-events: none;
}
.mentor-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  background: hsl(var(--background) / .8); backdrop-filter: blur(6px);
  border: 1px solid hsl(var(--blue) / .4);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
}
.mentor-text p { font-size: 17px; line-height: 1.75; color: hsl(0 0% 85%); margin-bottom: 18px; }
.mentor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
@media (max-width: 520px) { .mentor-stats { grid-template-columns: 1fr; } }
.mentor-stat { padding: 18px; text-align: center; }
.mentor-stat .n { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: hsl(var(--blue-light)); }
.mentor-stat .l { font-size: 12px; color: hsl(var(--muted)); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; font-family: var(--font-kicker); }

/* ---------- Lifestyle gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (min-width: 721px) { .mentor-gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); position: relative; }
.gallery-item img,
.gallery-item video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.06); }
.gallery-item .play-badge {
  position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%;
  background: hsl(0 0% 0% / .55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; pointer-events: none;
}

.lifestyle-feature { border-radius: var(--radius); overflow: hidden; border: 1px solid hsl(var(--border)); margin-top: 48px; }
.lifestyle-feature video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #000; }
@media (max-width: 720px) { .lifestyle-feature video { aspect-ratio: 4/5; } }

/* ---------- Results / videos ---------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 860px) { .results-grid { grid-template-columns: 1fr; } }
.result-card { overflow: hidden; }
.result-card video { width: 100%; aspect-ratio: 9/16; object-fit: cover; background: #000; }
.result-card-body { padding: 18px 20px; }
.result-card-body .tag { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: hsl(var(--blue-light)); font-family: var(--font-kicker); }
.result-card-body p { margin-top: 6px; font-size: 14px; color: hsl(var(--muted)); }

/* ---------- Who it's for ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 720px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-grid--1col { grid-template-columns: 1fr; margin-top: 20px; }
.audience-item { padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.audience-item .check {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: hsl(var(--blue) / .15); border: 1px solid hsl(var(--blue) / .5); color: hsl(var(--blue-light));
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.audience-item p { font-size: 15.5px; color: hsl(0 0% 90%); line-height: 1.55; }
.audience-item--no .check--no {
  background: hsl(0 70% 22%); border-color: hsl(0 70% 45% / .6); color: hsl(0 90% 72%);
}
.audience-item--no { opacity: .88; }

/* ---------- Fit / não-fit (dois blocos) ---------- */
.fit-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
@media (max-width: 780px) { .fit-wrap { grid-template-columns: 1fr; gap: 32px; } }
.fit-title { font-size: 20px; font-weight: 800; font-family: var(--font-body); }
.fit-title--yes { color: hsl(var(--blue-light)); }
.fit-title--no { color: hsl(0 85% 70%); }

/* ---------- What you get ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 860px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-item { padding: 32px 26px; }
.offer-item .ic {
  width: 48px; height: 48px; margin-bottom: 18px; border-radius: 14px;
  background: var(--gradient-blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px hsl(var(--blue) / .4);
}
.offer-item .ic svg { width: 24px; height: 24px; color: #fff; }
.offer-item h3 { font-size: 19px; font-weight: 800; font-family: var(--font-body); margin-bottom: 10px; }
.offer-item p { font-size: 14.5px; color: hsl(var(--muted)); line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative; text-align: center; border-radius: 24px;
  padding: 72px 32px; margin: 0 auto;
  background: var(--gradient-blue-soft), linear-gradient(180deg, hsl(260 25% 9%), hsl(260 30% 5%));
  border: 1px solid hsl(var(--blue) / .3);
  overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: -40% -10% auto -10%; height: 260px;
  background: radial-gradient(closest-side, hsl(var(--blue) / .35), transparent);
  filter: blur(10px);
}
.final-cta h2 { position: relative; font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.final-cta p { position: relative; margin-top: 16px; color: hsl(0 0% 85%); font-size: 17px; max-width: 560px; margin-left: auto; margin-right: auto; }
.final-cta .btn { position: relative; margin-top: 32px; }

/* ---------- CTA intermediário ---------- */
.mid-cta { text-align: center; padding: 8px 24px 56px; position: relative; z-index: 2; }

/* ---------- Card de preço ---------- */
.price-card {
  position: relative; margin: 44px auto 0; max-width: 420px; text-align: left;
  background: linear-gradient(180deg, hsl(260 24% 12%), hsl(260 28% 7%));
  border: 1px solid hsl(var(--blue) / .4);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 20px 60px hsl(var(--blue-dark) / .35);
}
.price-card-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-blue); color: #fff; white-space: nowrap;
  font-family: var(--font-kicker); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 8px 24px hsl(var(--blue) / .5);
}
.price-card-was {
  display: block; text-align: center; font-size: 17px; font-weight: 600;
  color: hsl(var(--muted-dim)); text-decoration: line-through; text-decoration-thickness: 1.5px;
  margin-bottom: 2px;
}
.price-card-value {
  font-family: var(--font-display); font-weight: 900; font-size: 48px;
  color: #fff; text-align: center;
}
.price-card-currency { font-size: 20px; vertical-align: top; margin-right: 2px; }
.price-card-period { font-size: 16px; font-weight: 600; color: hsl(var(--muted)); }
.price-card-list { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-card-list li {
  list-style: none; display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: hsl(0 0% 88%);
}
.price-card-list li::before {
  content: "✓"; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%;
  background: hsl(var(--blue) / .15); border: 1px solid hsl(var(--blue) / .5); color: hsl(var(--blue-light));
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

/* ---------- Footer ---------- */
.footer { padding: 40px 0; border-top: 1px solid hsl(var(--border)); }
.footer .container { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid hsl(var(--border));
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, color .25s, transform .25s, background .25s;
  color: hsl(var(--muted));
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { border-color: hsl(var(--blue)); color: hsl(var(--blue-light)); background: hsl(var(--blue) / .1); transform: translateY(-3px); }
.footer p { font-size: 13px; color: hsl(var(--muted-dim)); }
.footer-tagline { font-size: 13px; color: hsl(var(--muted)); margin-top: -4px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
