/* =========================================
   ARMA ACADEMY — Design System v2
   ========================================= */

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --color-bg: #030e05;
  --color-bg-darker: #020a03;
  --color-bg-card: rgba(10, 22, 12, 0.6);
  --color-neon: #ccff00;
  --color-neon-dim: rgba(204, 255, 0, 0.12);
  --color-neon-glow: rgba(204, 255, 0, 0.35);
  --color-neon-soft: rgba(204, 255, 0, 0.08);
  --color-text-main: #f0f4ee;
  --color-text-muted: #7a8c79;
  --color-text-subtle: #4a5c49;
  --font-main: 'Inter', sans-serif;
  --container-width: 1240px;
  --glass-bg: rgba(255, 255, 255, 0.025);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-hover: rgba(204, 255, 0, 0.28);
  --trans-fast: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  --trans-smooth: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  --trans-slow: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-neon: 0 0 60px rgba(204, 255, 0, 0.2), 0 0 120px rgba(204, 255, 0, 0.06);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: page-enter 0.5s ease forwards;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ── Noise Texture ────────────────────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  z-index: 9000;
}

/* ── Global Ambient Glow ──────────────────────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(204, 255, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(204, 255, 0, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  transition: background 1.2s ease;
}

/* ── Scroll Progress Bar ──────────────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-neon), #a3eb00);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--color-neon-glow);
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-neon {
  color: var(--color-neon);
  text-shadow: 0 0 20px var(--color-neon-glow), 0 0 40px rgba(204, 255, 0, 0.15);
}

.text-white {
  color: #fff;
}

.text-muted {
  color: var(--color-text-muted);
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.w-full {
  width: 100%;
}

.strike {
  text-decoration: line-through;
  opacity: 0.45;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.font-bold {
  font-weight: 700;
}

.section-padding {
  padding: 160px 0;
}

.bg-darker {
  background-color: var(--color-bg-darker);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-neon);
  opacity: 0.8;
  margin-bottom: 16px;
}

/* ── Reveal Animations ────────────────────────────────────────────────────── */

/* Simple reveal (fade + slide) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-60px);
}

[data-reveal="right"] {
  transform: translateX(60px);
}

[data-reveal="scale"] {
  transform: scale(0.9) translateY(30px);
}

[data-reveal="fade"] {
  transform: translateY(20px);
}

[data-reveal="zoom"] {
  transform: scale(0.85);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* showFromBottom — reveal-style: blur + translate + opacity */
[data-reveal-blur] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(28px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-blur].revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

/* Word-split reveal */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  /* prevents clipping descenders */
}

.word-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.word-inner.word-revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger children */
.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-child.revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

p {
  line-height: 1.72;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  line-height: 1.05;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  font-weight: 400;
  line-height: 1.7;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-text-main);
  opacity: 0.88;
  font-weight: 400;
  line-height: 1.8;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
}

/* ── Glass Card ───────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.5s ease, background 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  background: rgba(10, 25, 12, 0.7);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(204, 255, 0, 0.08);
  transform: translateY(-4px);
}

.card-highlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: background 0.15s ease;
}

/* ── Components ───────────────────────────────────────────────────────────── */

/* Top Bar */
.top-bar {
  background: var(--color-neon);
  color: #000;
  text-align: center;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

/* Logo */
.logo {
  max-width: 210px;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
  animation: logo-float 6s ease-in-out infinite;
}

@keyframes logo-float {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
    transform: translateY(0);
  }

  50% {
    filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.3));
    transform: translateY(-5px);
  }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neon-bg {
  background: var(--color-neon);
  color: #000;
  box-shadow: 0 0 20px var(--color-neon-glow), 0 0 40px rgba(204, 255, 0, 0.12);
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--color-neon-glow), 0 0 40px rgba(204, 255, 0, 0.12);
  }

  50% {
    box-shadow: 0 0 30px var(--color-neon-glow), 0 0 60px rgba(204, 255, 0, 0.2);
  }
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  gap: 12px;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s ease;
}

.cta-button:hover::after {
  background: rgba(255, 255, 255, 0.07);
}

.primary-cta {
  background: linear-gradient(105deg, #ccff00 0%, #a8f000 55%, #89d200 100%);
  color: #000;
  box-shadow: 0 8px 32px rgba(204, 255, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
  padding-right: 14px;
  font-size: 1.05rem;
}

.primary-cta .icon-box {
  background: rgba(0, 0, 0, 0.18);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-left: 8px;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.primary-cta:hover .icon-box {
  background: rgba(0, 0, 0, 0.28);
}

.secondary-cta {
  background: transparent;
  color: var(--color-neon);
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: 1.5px solid rgba(204, 255, 0, 0.5);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.08);
}

.secondary-cta:hover {
  background: rgba(204, 255, 0, 0.06);
  border-color: var(--color-neon);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
}

.cta-button:not(.secondary-cta):hover {
  box-shadow: 0 16px 50px rgba(204, 255, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 0;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero background with mesh gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(204, 255, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(80, 160, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(0, 80, 20, 0.08) 0%, transparent 50%),
    var(--color-bg);
  z-index: 0;
}

/* Hero video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-video.active {
  opacity: 0.25;
}

/* Particles canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Radial overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--color-bg) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding: 120px 28px 60px;
}

.hero-inner {
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-neon);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 8px var(--color-neon);
  animation: dot-pulse 1.5s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-size: clamp(2rem, 6.5vw, 4.6rem);
  margin-bottom: 24px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .line-block {
  display: block;
  overflow: hidden;
}

.hero-title .text-neon {
  background: linear-gradient(90deg, #ccff00, #a3ff00, #ccff00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shimmer 3s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(204, 255, 0, 0.4));
}

@keyframes text-shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin: 0 auto 44px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  line-height: 1.7;
}

/* CTA Group */
.cta-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

/* Social Proof */
.social-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 20px 10px 10px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(204, 255, 0, 0.2);
  transition: var(--trans-fast);
}

.avatars img:first-child {
  margin-left: 0;
}

.avatars:hover img {
  margin-left: -5px;
}

.proof-text {
  text-align: left;
  font-size: 0.86rem;
  line-height: 1.3;
}

.proof-text strong {
  color: #fff;
  display: block;
  font-weight: 800;
}

.proof-text span {
  color: var(--color-text-muted);
}

/* Ticker Bar */
.ticker-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(204, 255, 0, 0.5);
  border-bottom: 1px solid rgba(204, 255, 0, 0.3);
  padding: 14px 0;
  margin-top: auto;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker-content {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-neon);
  white-space: nowrap;
  padding-right: 0;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
}

.ticker-divider {
  margin: 0 14px;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.ticker-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.55;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(40deg);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Flex Layout ──────────────────────────────────────────────────────────── */
.flex-layout {
  display: flex;
  align-items: center;
  gap: 100px;
}

.content-side {
  flex: 1;
  min-width: 0;
}

.visual-side {
  flex: 1;
  min-width: 0;
}

/* ── Image Glow ───────────────────────────────────────────────────────────── */
.glow-img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(204, 255, 0, 0.1);
  box-shadow: 0 0 80px rgba(204, 255, 0, 0.12), 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.glow-img:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 100px rgba(204, 255, 0, 0.2), 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* ── News Stack (Low Ticket) ──────────────────────────────────────────────── */
.news-stack {
  position: relative;
  width: 100%;
  min-height: 380px;
}

.news-bg-shape {
  position: absolute;
  width: 70%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-neon);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.news-card {
  position: absolute;
  width: 75%;
  max-width: 380px;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  will-change: transform;
}

.news-card-1 {
  top: 0;
  left: 0;
  z-index: 3;
}

.news-card-2 {
  bottom: 0;
  right: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .low-ticket .visual-side {
    width: 100%;
  }

  .low-ticket.section-padding {
    padding: 80px 0;
  }

  .news-stack {
    width: 100%;
    min-height: 320px;
  }

  .news-card {
    width: 80%;
    max-width: 280px;
  }
}

/* ── Section Divider Glow ────────────────────────────────────────────────── */
.section-padding {
  position: relative;
}

.section-padding::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-neon-dim), transparent);
}

/* ── Stats Counter ────────────────────────────────────────────────────────── */
.stats-counter {
  padding: 56px 0;
  background: var(--color-bg);
  position: relative;
}

.stats-counter::before,
.stats-counter::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.15), transparent);
}

.stats-counter::before {
  top: 0;
}

.stats-counter::after {
  bottom: 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
  max-width: 280px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-affix {
  font-size: 0.55em;
  font-weight: 800;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(204, 255, 0, 0.2), transparent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-counter {
    padding: 40px 0;
  }

  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }

  .stat-value {
    font-size: 2.6rem;
  }

  .stat-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.15), transparent);
  }

  .stat-item {
    max-width: none;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
}

/* ── Low Ticket Section ───────────────────────────────────────────────────── */
.low-ticket .content-side p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.85;
  font-weight: 400;
}

.low-ticket .content-side .text-white.font-bold {
  font-size: 1.15rem;
  color: var(--color-neon) !important;
  line-height: 1.7;
}

.low-ticket .section-title {
  margin-bottom: 32px;
}

/* ── Ecosystem / Pillars ──────────────────────────────────────────────────── */
.ecosystem {
  position: relative;
}

.ecosystem .section-title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ecosystem-logo {
  filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.2));
}

.pillars-img {
  max-width: 440px;
  margin: 0 auto;
  perspective: 1000px;
}

.pillars-img img {
  width: 100%;
  height: auto;
  transform: rotateY(-8deg) rotateX(2deg);
  border-radius: var(--radius-md);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(204, 255, 0, 0.05);
  border: 1px solid rgba(204, 255, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillars-img img:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar-card {
  padding: 60px 48px;
  text-align: left;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
  min-height: 340px;
}

.pillar-card h3 {
  margin-bottom: 16px;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.pillar-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

.pillar-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--color-neon-soft);
  border: 1px solid var(--color-neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.pillar-card:hover .pillar-icon-wrap {
  background: var(--color-neon-dim);
  border-color: var(--color-neon-glow);
  box-shadow: 0 0 28px var(--color-neon-glow);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 8px var(--color-neon-glow));
  transition: var(--trans-smooth);
}

.pillar-card:hover .pillar-icon {
  filter: drop-shadow(0 0 16px rgba(204, 255, 0, 0.7));
  transform: scale(1.1);
}

.pillar-number {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--color-neon);
  opacity: 0.5;
  margin-bottom: 8px;
}

/* ── ARMAFLIX ─────────────────────────────────────────────────────────────── */
.armaflix-logo {
  max-width: 240px;
  filter: drop-shadow(0 0 18px var(--color-neon-glow));
  transition: var(--trans-smooth);
}

.armaflix-logo:hover {
  filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.7));
}

.armaflix .content-side p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(204, 255, 0, 0.07);
  border: 1px solid rgba(204, 255, 0, 0.25);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.06);
}

/* ── Mastery Section ─────────────────────────────────────────────────────── */
.mastery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.mastery-item {
  padding: 44px 36px;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

.mastery-item h3 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-top: 20px;
  line-height: 1.25;
}

.mastery-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin: 0 auto;
  background: rgba(204, 255, 0, 0.06);
  border: 1px solid rgba(204, 255, 0, 0.18);
  border-radius: 18px;
  color: var(--color-neon);
  transition: var(--trans-smooth);
}

.mastery-item:hover .mastery-icon-wrap {
  background: rgba(204, 255, 0, 0.12);
  border-color: rgba(204, 255, 0, 0.4);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
}

.mastery-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 44px 80px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.mastery-stat-item {
  flex: 1;
  text-align: center;
}

.mastery-stat-num {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-neon);
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px var(--color-neon-glow);
  line-height: 1;
  margin-bottom: 10px;
}

.mastery-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mastery-stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ── Academy Section ─────────────────────────────────────────────────────── */
.academy .content-side p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

/* ── Community Section ───────────────────────────────────────────────────── */
.community-big-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.community-stat-num {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--color-neon);
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 0 60px var(--color-neon-glow), 0 0 120px rgba(204, 255, 0, 0.12);
}

.community-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── Exclusivity Section ─────────────────────────────────────────────────── */
.exclusivity-box {
  background: linear-gradient(145deg, rgba(10, 30, 14, 0.95), rgba(4, 14, 6, 0.98));
  border: 2px solid rgba(204, 255, 0, 0.4);
  padding: 90px 60px;
  border-radius: var(--radius-xl);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(204, 255, 0, 0.07), var(--shadow-card);
}

.exclusivity-box::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.06), transparent 70%);
  pointer-events: none;
}

.exclusivity-box .lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Responsive: mastery grid ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mastery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mastery-stats {
    padding: 40px 52px;
  }
}

@media (max-width: 700px) {
  .mastery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mastery-item {
    padding: 32px 24px;
  }

  .mastery-stats {
    padding: 32px 28px;
  }

  .mastery-stat-sep {
    margin: 0 24px;
    height: 44px;
  }

  .community-stat-num {
    font-size: 4.5rem;
  }

  .exclusivity-box {
    padding: 60px 28px;
  }
}

@media (max-width: 480px) {
  .mastery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Bonuses ──────────────────────────────────────────────────────────────── */
/* ── Bonus V2 — Stacked blocks ─────────────────────────────────────────── */
.bonuses-v2 {
  background: var(--color-bg);
}

.bonus-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 0 0;
}

.bonus-block-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 10px 28px;
  margin-bottom: 28px;
}

.bonus-block-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.bonus-block-title .text-muted-light {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.bonus-block-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.bonus-block-desc strong {
  color: #fff;
  font-weight: 700;
}

.bonus-block-value {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-neon);
  background: rgba(204, 255, 0, 0.06);
  border: 1px solid rgba(204, 255, 0, 0.15);
  border-radius: 8px;
  padding: 8px 18px;
}

.bonus-block-img {
  margin-top: 40px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bonus-block-img img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

/* Divider between bonus blocks */
.bonus-block+.bonus-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .bonus-block {
    padding: 56px 0 0;
  }

  .bonus-block-title {
    font-size: 1.6rem;
  }
}

/* ── Guarantee ────────────────────────────────────────────────────────────── */
/* ── Guarantee Card (light theme) ─────────────────────────────────────────── */
.guarantee-card {
  background: linear-gradient(160deg, #f7f5f0 0%, #e8e4da 100%);
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.guarantee-ribbon {
  position: absolute;
  top: 28px;
  left: -50px;
  width: 200px;
  transform: rotate(-45deg);
  overflow: hidden;
  z-index: 5;
}

.guarantee-ribbon-track {
  display: flex;
  gap: 24px;
  animation: ribbonSlide 6s linear infinite;
  white-space: nowrap;
}

.guarantee-ribbon-track span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #fff;
  background: #2d5a1e;
  padding: 6px 16px;
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes ribbonSlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4a7a2e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.guarantee-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.15;
}

.guarantee-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #444;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-desc strong {
  color: #1a1a1a;
}

.guarantee-watermark {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 900;
  color: rgba(74, 122, 46, 0.1);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .guarantee-card {
    padding: 70px 28px 50px;
  }

  .guarantee-ribbon {
    top: 22px;
    left: -55px;
  }
}

/* ── Mentors ──────────────────────────────────────────────────────────────── */
.mentor-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.mentor-card {
  text-align: center;
  cursor: default;
}

.mentor-img-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.mentor-img-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--color-neon) 0deg,
      rgba(204, 255, 0, 0.2) 120deg,
      var(--color-neon) 240deg,
      rgba(204, 255, 0, 0.2) 360deg);
  animation: spin-border 8s linear infinite;
  z-index: -1;
}

@keyframes spin-border {
  to {
    transform: rotate(360deg);
  }
}

.mentor-img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-bg);
  box-shadow: var(--shadow-neon);
  transition: var(--trans-smooth);
  display: block;
}

.mentor-card:hover .mentor-img {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.5);
}

.mentor-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.mentor-card p {
  color: var(--color-text-muted);
  font-size: 0.97rem;
  max-width: 260px;
  margin: 0 auto;
}

.mentor-tag {
  display: inline-block;
  background: rgba(204, 255, 0, 0.08);
  color: var(--color-neon);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(204, 255, 0, 0.18);
}

/* ── Academia Educacional ─────────────────────────────────────────────────── */
.academia-card {
  position: relative;
  padding: 64px 56px 56px;
  margin-top: 48px;
  overflow: visible !important;
}

.academia-card-logo {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #0d1e0f;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
  z-index: 2;
}

.academia-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.academia-card-value {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-neon);
  letter-spacing: 0.02em;
}

.academia-card-body {
  margin-top: 20px;
}

.academia-card-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-neon);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.academia-card-desc {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.75;
}

.academia-card-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

/* ── Ecosystem Cards Stack ────────────────────────────────────────────────── */
.ecosystem-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.text-red {
  color: #e84040;
}

.exclusividade-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.exclusividade-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
}

/* ── Floating Dashboards (Exclusividade Card) ─────────────────────────────── */
.exclusividade-card {
  position: relative;
  overflow: visible;
}

.floating-logos {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 10;
  pointer-events: none;
}

.floating-logo {
  position: absolute;
  width: 44px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(204, 255, 0, 0.1);
}

.floating-logo-1 {
  top: 0;
  left: 0;
  animation: floatDash1 4s ease-in-out infinite;
}

.floating-logo-2 {
  top: 28px;
  left: 36px;
  animation: floatDash2 5s ease-in-out infinite;
}

@keyframes floatDash1 {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

@keyframes floatDash2 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@media (max-width: 768px) {
  .floating-logo {
    width: 36px;
  }

  .floating-logos {
    top: -12px;
    left: -8px;
  }

  .floating-logo-2 {
    top: 22px;
    left: 28px;
  }
}

@media (max-width: 700px) {
  .academia-card {
    padding: 80px 28px 40px;
  }

  .academia-card-title {
    font-size: 1.6rem;
  }

  .academia-card-value {
    font-size: 1rem;
    top: 52px;
    right: 24px;
  }

  .academia-card-desc {
    font-size: 0.95rem;
  }
}

/* ── Social Proof Section (inverted colors) ──────────────────────────────── */
.sp-section {
  background: #f5f5f0 !important;
  color: #111;
}

.sp-section .section-title {
  color: #111;
}

.sp-section .text-neon {
  color: #1a6b1a;
}

.sp-section .sp-item {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

/* ── Social Proof Grid ────────────────────────────────────────────────────── */
.sp-count {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a1f00;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 12px 26px;
  border: 1px solid rgba(204, 255, 0, 0.9);
  border-radius: 999px;
  background: var(--color-neon);
  margin-bottom: 32px;
}

.sp-count strong {
  font-size: 1.3rem;
  color: #000;
  font-weight: 900;
  letter-spacing: 0;
}

.sp-cta-spacing {
  margin-top: 80px;
}

#provas {
  scroll-margin-top: 120px;
}

#pricing {
  scroll-margin-top: 40px;
}

#bonus {
  scroll-margin-top: 120px;
}

@media (max-width: 900px) {
  #provas {
    scroll-margin-top: 40px;
  }
  #pricing {
    scroll-margin-top: 20px;
  }
  #bonus {
    scroll-margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .sp-cta-spacing {
    margin-top: 56px;
  }
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.sp-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: border-color 0.3s ease;
}

.sp-item:hover {
  border-color: rgba(204, 255, 0, 0.3);
}

.sp-meta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
  padding: 10px 14px 8px;
  border-bottom: 1px solid var(--glass-border);
}

.sp-media {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Video */
.sp-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #0a1a0c;
  cursor: pointer;
}

.sp-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sp-play-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.sp-play-btn svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.sp-video-wrap.playing .sp-play-btn {
  display: none;
}

/* Duo grid (apenas 2 depoimentos) */
.sp-grid-duo {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 32px;
}

.sp-grid-duo .sp-col:last-child {
  display: flex;
}

.sp-meta-name {
  font-size: 1.5rem;
  text-align: center;
  color: #000;
  background: var(--color-neon);
  border-bottom: none;
  padding: 14px 14px 16px;
  letter-spacing: 0.02em;
  font-weight: 800;
}

@media (max-width: 600px) {
  .sp-grid-duo {
    grid-template-columns: 1fr;
  }
  .sp-meta-name {
    font-size: 1.25rem;
  }
}

@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-col:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .sp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-col:last-child {
    display: none;
  }

  .sp-meta {
    font-size: 0.7rem;
  }
}

/* ── Modules Carousel ─────────────────────────────────────────────────────── */
.modules-strip {
  width: 100%;
  overflow: hidden;
  background: var(--color-bg-darker);
  border-top: 3px solid rgba(120, 160, 40, 0.5);
  border-bottom: 3px solid rgba(120, 160, 40, 0.5);
  padding: 20px 0;
}

.modules-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee-modules 35s linear infinite;
}

.modules-track:hover {
  animation-play-state: paused;
}

.module-card {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.module-card:hover {
  transform: scale(1.04);
  border-color: rgba(204, 255, 0, 0.4);
}

.module-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  /* placeholder visual enquanto imagens não estão disponíveis */
  background: linear-gradient(160deg, #0d1e0f 0%, #1a3020 100%);
  min-height: 330px;
}

@keyframes marquee-modules {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Workshop ─────────────────────────────────────────────────────────────── */
.workshop-box {
  padding: 72px 80px;
}

.ticket-3d {
  filter: drop-shadow(0 30px 60px rgba(204, 255, 0, 0.25));
  animation: float-ticket 5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes float-ticket {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-28px) rotate(1.5deg);
  }
}

/* ── Social Proof Grid ────────────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.proof-img {
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  transition: var(--trans-smooth);
  cursor: pointer;
}

.proof-img:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(204, 255, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(204, 255, 0, 0.08);
}

/* ── Stats Row ────────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--trans-smooth);
}

.stat-item:hover {
  border-color: rgba(204, 255, 0, 0.2);
  background: rgba(204, 255, 0, 0.03);
}

.stat-number {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-neon);
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px var(--color-neon-glow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover,
.faq-item.faq-open {
  border-color: rgba(204, 255, 0, 0.28);
}

.faq-item.faq-open {
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-neon);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(204, 255, 0, 0.25);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
  font-weight: 900;
}

.faq-item.faq-open .faq-icon {
  background: rgba(204, 255, 0, 0.12);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease;
}

.faq-answer p {
  padding: 0 32px 28px;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Suporte / WhatsApp ───────────────────────────────────────────────────── */
.suporte-box {
  background: linear-gradient(145deg, rgba(10, 30, 14, 0.95), rgba(4, 14, 6, 0.98));
  border: 1px solid var(--glass-border);
  padding: 90px 60px;
  border-radius: var(--radius-xl);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.suporte-box:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.suporte-box::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05), transparent 70%);
  pointer-events: none;
}

.suporte-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  color: #25d366;
  animation: suporte-pulse 2.8s ease-in-out infinite;
}

@keyframes suporte-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.25);
  }

  50% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

.suporte-cta {
  background: linear-gradient(105deg, #25d366 0%, #1da851 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.4);
  font-size: 1.05rem;
  padding: 18px 38px;
  gap: 14px;
}

.suporte-cta:hover {
  box-shadow: 0 16px 50px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

.suporte-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .suporte-box {
    padding: 60px 28px;
  }
}

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-card {
  border: 2px solid rgba(204, 255, 0, 0.45);
  padding: 80px 52px;
  border-radius: var(--radius-xl);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(12, 30, 14, 0.95), rgba(4, 12, 6, 0.98));
  box-shadow: 0 0 100px rgba(204, 255, 0, 0.1), var(--shadow-card);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-neon), transparent);
}

.glow-box {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 80px rgba(204, 255, 0, 0.08), var(--shadow-card);
  }

  50% {
    box-shadow: 0 0 120px rgba(204, 255, 0, 0.16), var(--shadow-card);
  }
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 28px 0;
}

.price-strikethrough {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 700;
}

.price-main {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--color-neon);
  text-shadow: 0 0 40px var(--color-neon-glow);
  line-height: 1;
  margin: 8px 0;
}

.price-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.pricing-features li::before {
  content: '✓';
  font-weight: 900;
  color: var(--color-neon);
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(204, 255, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  max-width: 100px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer p {
  color: var(--color-text-subtle);
  font-size: 0.85rem;
}

/* ── Float Animation ──────────────────────────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-box {
    padding: 60px 48px;
  }
}

@media (max-width: 900px) {
  .flex-layout {
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .flex-layout .text-left {
    text-align: center;
  }

  .flex-layout.reverse {
    flex-direction: column-reverse;
  }

  .mentor-grid {
    gap: 48px;
  }
}

@media (max-width: 700px) {
  .section-padding {
    padding: 100px 0;
  }

  .hero .container {
    padding: 100px 20px 50px;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .workshop-box {
    padding: 44px 28px;
  }

  .guarantee-box {
    padding: 60px 28px;
  }

  .pricing-card {
    padding: 60px 28px;
  }

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .pillars-grid .pillar-card {
    padding: 28px 16px;
  }

  .cta-group {
    flex-direction: column;
  }

  .mentor-grid {
    gap: 52px;
  }

  .price-main {
    font-size: 3.2rem;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer p {
    padding: 0 24px 22px;
  }

  .flex-layout {
    gap: 56px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .mentor-img {
    width: 230px;
    height: 230px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    padding: 28px 18px;
  }

  .pillar-card h3 {
    font-size: 1.2rem;
  }

  .pillar-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* ── Horizontal Rule Divider ──────────────────────────────────────────────── */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), transparent);
  border-radius: 100px;
  margin: 20px auto;
  opacity: 0.6;
}

/* ── Tilt card base ───────────────────────────────────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease, box-shadow 0.3s ease !important;
}

/* ── Mastery subtitle ─────────────────────────────────────────────────────── */
.mastery-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-neon);
  opacity: 0.75;
}

/* ── Second ticker ────────────────────────────────────────────────────────── */
.ticker-bar-2 {
  background: rgba(204, 255, 0, 0.06);
  border-top: 1px solid rgba(204, 255, 0, 0.12);
  border-bottom: 1px solid rgba(204, 255, 0, 0.12);
}

.ticker-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.7;
  vertical-align: middle;
  margin-right: 14px;
}

/* ── Para Quem ────────────────────────────────────────────────────────────── */
.para-quem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pq-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.pq-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-neon);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.05em;
  position: absolute;
  top: 20px;
  right: 24px;
}


.pq-img {
  width: 72px;
  height: 72px;
  background: var(--color-neon-soft);
  border: 1px solid var(--color-neon-dim);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-smooth);
  position: relative;
}

.pq-icon-svg {
  color: var(--color-neon);
  filter: drop-shadow(0 0 10px var(--color-neon-glow));
  transition: var(--trans-smooth);
}

.pq-card:hover .pq-img {
  background: var(--color-neon-dim);
  border-color: var(--color-neon);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.15);
  transform: translateY(-4px) rotate(-3deg);
}

.pq-card:hover .pq-icon-svg {
  filter: drop-shadow(0 0 18px var(--color-neon));
  transform: scale(1.1);
}

.pq-card p,
.pq-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .para-quem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .para-quem-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Bonus AVISO ──────────────────────────────────────────────────────────── */
.bonus-aviso {
  text-align: center;
  padding: 60px 48px;
  border: 1px solid rgba(204, 255, 0, 0.15);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(204, 255, 0, 0.03), transparent);
  position: relative;
  overflow: hidden;
}

.bonus-aviso::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-neon), transparent);
  opacity: 0.5;
}

.bonus-aviso-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-neon);
  background: rgba(204, 255, 0, 0.08);
  border: 1px solid rgba(204, 255, 0, 0.22);
  border-radius: 100px;
  padding: 6px 20px;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
}

.testimonial-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, rgba(204, 255, 0, 0.04), rgba(255, 255, 255, 0.02));
  border-bottom: 1px solid var(--glass-border);
}

.testimonial-label {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.testimonial-result {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-neon);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Atenção! warning ─────────────────────────────────────────────────────── */
.atencao-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 60px;
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 77, 77, 0.04), rgba(4, 12, 6, 0.8));
  position: relative;
  overflow: hidden;
}

.atencao-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 77, 0.6), transparent);
}

.atencao-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.atencao-checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.atencao-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.atencao-checklist li:last-child {
  border-bottom: none;
}

.atencao-checklist li strong {
  color: #fff;
  font-size: 1.05rem;
}

.check-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.check-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .atencao-box {
    padding: 52px 28px;
  }

  .atencao-checklist {
    gap: 0;
  }

  .bonus-aviso {
    padding: 48px 24px;
  }
}


.guarantee-img {
  max-width: 250px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(204, 255, 0, 0.35));
  animation: float 5s ease-in-out infinite;
}

.testimonial-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--trans-smooth);
}

.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
}


/* ── Visual Stack & Iceberg ──────────────────────────────────────────────── */
.visual-stack {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iceberg-img {
  width: 90%;
  margin-left: 10%;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--trans-smooth);
}

.visual-stack:hover .iceberg-img {
  transform: scale(1.02) translateY(10px);
}

.ecosystem-logo {
  max-width: clamp(200px, 30vw, 400px);
  filter: drop-shadow(0 0 20px rgba(204, 255, 0, 0.25));
  margin-bottom: 2rem !important;
  opacity: 0.9;
  transition: var(--trans-smooth);
}

.ecosystem-logo:hover {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 0 40px rgba(204, 255, 0, 0.4));
  opacity: 1;
}

/* ── Hologram Ticket Effect ────────────────────────────────────────────── */
.hologram-wrap {
  perspective: 1200px;
  margin: 28px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hologram-ticket {
  width: clamp(200px, 40vw, 280px);
  filter: drop-shadow(0 0 35px var(--color-neon-glow));
  animation: hologram-rotate 8s infinite linear, hologram-flicker 2s infinite alternate ease-in-out;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes hologram-rotate {
  0% {
    transform: rotateY(0deg) translateY(0px) rotateX(5deg);
  }

  50% {
    transform: rotateY(180deg) translateY(-10px) rotateX(-5deg);
  }

  100% {
    transform: rotateY(360deg) translateY(0px) rotateX(5deg);
  }
}

@keyframes hologram-flicker {

  0%,
  100% {
    opacity: 0.9;
    filter: drop-shadow(0 0 30px var(--color-neon-glow)) brightness(1.1) contrast(1.1);
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 50px var(--color-neon-glow)) brightness(1.4) contrast(1.2);
    transform: scale(1.02);
  }
}

/* ── Para Quem ─────────────────────────────────────────────────────────────── */
.para-quem-badge {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 20px 8px 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

.pq-badge-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.pq-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

/* ── Atenção Bônus ──────────────────────────────────────────────────────────── */
.atencao-section {
  background: radial-gradient(ellipse at center, rgba(120, 20, 20, 0.35) 0%, transparent 70%), var(--color-bg);
}

.atencao-box {
  max-width: 720px;
  margin: 0 auto;
}

.atencao-icon svg {
  filter: drop-shadow(0 0 18px rgba(229, 62, 62, 0.5));
}

.atencao-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.atencao-desc {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.atencao-cta-text {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.atencao-cta-text strong {
  font-weight: 800;
}

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--color-bg);
}

.pricing-header {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.pricing-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.pricing-brand {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-text);
}

.pricing-tagline {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-tagline-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.pricing-hero-img {
  max-width: 420px;
  margin: 0 auto 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0 20px;
}

.pricing-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.pricing-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-check-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-check-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.pricing-check-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.pricing-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--color-neon-dim);
  border: 1px solid var(--color-neon-glow);
  color: var(--color-neon);
  margin-top: 1px;
}

.pricing-mentoria-wrap {
  border-top: 1px solid var(--glass-border);
  padding-top: 36px;
  padding-bottom: 56px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-mentoria {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.pricing-mentoria strong {
  color: var(--color-text);
  font-weight: 800;
}

@media (max-width: 480px) {
  .pricing-checklist {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-hover);
  border-radius: 24px;
  padding: 52px 48px;
  position: relative;
  box-shadow: 0 0 60px var(--color-neon-glow), inset 0 1px 0 rgba(204, 255, 0, 0.06);
}

.pricing-de {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.pricing-de s {
  text-decoration-color: rgba(255, 255, 255, 0.3);
}

.pricing-parcelas {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  font-weight: 400;
}

.pricing-valor {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  font-weight: 900;
  color: var(--color-neon);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 8px;
  text-shadow: 0 0 40px var(--color-neon-glow);
}

.pricing-avista {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 16px;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-neon);
  color: #050f03;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 20px 44px;
  border-radius: 100px;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 8px 40px var(--color-neon-glow);
}

.pricing-cta:hover {
  box-shadow: 0 12px 60px rgba(204, 255, 0, 0.55);
  transform: translateY(-2px);
  opacity: 0.92;
}

.pricing-cta-icon {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  padding: 6px;
}

@media (max-width: 600px) {
  .pricing-card {
    padding: 40px 24px;
  }

  .pricing-cta {
    font-size: 1rem;
    padding: 18px 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PREMIUM ANIMATION ENHANCEMENTS
   ══════════════════════════════════════════════════════════════════════════════ */

/* Smooth CTA button pulse glow */
.cta-button.primary-cta {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,255,0,0.3); }
  50% { box-shadow: 0 0 30px 8px rgba(204,255,0,0.15); }
}

/* Enhanced glass card hover glow */
.glass-card {
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.23,1,0.32,1);
}

.glass-card:hover {
  box-shadow: 0 0 40px rgba(204,255,0,0.06), 0 20px 60px rgba(0,0,0,0.4);
}

/* Pricing section number reveal */
.price-main {
  animation: priceGlow 2.5s ease-in-out infinite alternate;
}

@keyframes priceGlow {
  0% { text-shadow: 0 0 30px rgba(204,255,0,0.2); }
  100% { text-shadow: 0 0 60px rgba(204,255,0,0.4), 0 0 100px rgba(204,255,0,0.1); }
}

/* Social proof items - stagger slide up on reveal */
.sp-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.sp-col.revealed .sp-item,
.sp-grid.revealed .sp-item {
  opacity: 1;
  transform: translateY(0);
}

.sp-col.revealed .sp-item:nth-child(2),
.sp-grid.revealed .sp-col:nth-child(2) .sp-item { transition-delay: 0.15s; }
.sp-grid.revealed .sp-col:nth-child(3) .sp-item { transition-delay: 0.3s; }
.sp-col.revealed .sp-item:nth-child(2) { transition-delay: 0.2s; }

/* Mentor card enhanced hover */
.mentor-card {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), box-shadow 0.5s ease;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(204,255,0,0.08);
}

.mentor-img-wrap {
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.mentor-card:hover .mentor-img-wrap {
  transform: scale(1.03);
}

/* Bonus block premium entrance */
.bonus-block-pill {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bonus-block:hover .bonus-block-pill {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.08);
}

.bonus-block-img {
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1), box-shadow 0.6s ease;
}

.bonus-block-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Guarantee badge subtle bounce */
.guarantee-badge {
  animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Modules strip glow edges */
.modules-strip::before,
.modules-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.modules-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg), transparent);
}

.modules-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-bg), transparent);
}

.modules-strip {
  position: relative;
}

/* Para Quem cards enhanced */
.pq-card {
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1), border-color 0.4s ease, box-shadow 0.5s ease;
}

.pq-card:hover {
  border-color: rgba(204,255,0,0.3);
  box-shadow: 0 0 30px rgba(204,255,0,0.05), 0 20px 50px rgba(0,0,0,0.4);
}

/* Footer subtle fade line */
.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,255,0,0.2), transparent);
  margin-bottom: 40px;
}

/* Neon text shimmer on scroll reveal */
.text-neon {
  background-size: 200% auto;
  transition: background-position 0.8s ease;
}

/* Suporte box enhanced glow */
.suporte-box {
  transition: box-shadow 0.5s ease;
}

.suporte-box:hover {
  box-shadow: 0 0 60px rgba(204, 255, 0, 0.04);
}

/* Price Wrap Fix */
.price-nowrap {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .price-main {
    font-size: 2.8rem;
    line-height: 1.1;
  }
}