/* =====================================================
   DYNAMIC BYPASS — Cyberpunk / Gamer Landing Page
   ===================================================== */

/* ---------- Theme Variables ---------- */
:root {
  --neon: #9d4edd;
  --neon-2: #8a2be2;
  --neon-soft: rgba(157, 78, 221, 0.18);
  --neon-glow: rgba(157, 78, 221, 0.55);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --bg: #0b0b0b;
  --bg-elev: #121214;
  --bg-elev-2: #17171b;
  --text: #f1eaff;
  --text-muted: #a89fbf;
  --border: rgba(157, 78, 221, 0.25);
  --border-strong: rgba(157, 78, 221, 0.6);
  --card-bg: linear-gradient(160deg, #141416 0%, #0d0d10 100%);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  --grid-color: rgba(157, 78, 221, 0.08);
}

[data-theme="light"] {
  --bg: #f8f9fa;
  --bg-elev: #ffffff;
  --bg-elev-2: #f1ecfb;
  --text: #15101f;
  --text-muted: #5a5170;
  --border: rgba(138, 43, 226, 0.25);
  --border-strong: rgba(138, 43, 226, 0.55);
  --card-bg: linear-gradient(160deg, #ffffff 0%, #f6f1ff 100%);
  --shadow: 0 10px 30px rgba(138, 43, 226, 0.12);
  --grid-color: rgba(138, 43, 226, 0.07);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* ---------- Background ambient effects ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(157, 78, 221, 0.28) 0%, transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(138, 43, 226, 0.24) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 70% 10%, rgba(157, 78, 221, 0.18) 0%, transparent 28%);
  pointer-events: none;
  animation: ambientMove 12s ease-in-out infinite alternate;
}
@keyframes ambientMove {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -2%); }
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(157, 78, 221, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 78, 221, 0.08) 1px, transparent 1px);
  background-size: 45px 45px;
  pointer-events: none;
}

/* Scanlines roxas sutis */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(157, 78, 221, 0.03) 2px,
    rgba(157, 78, 221, 0.03) 4px
  );
  pointer-events: none;
}

body {
  font-family: 'Rajdhani', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: var(--transition);
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
.reveal {
  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);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.2s; }
.stagger-2 { transition-delay: 0.4s; }
.stagger-3 { transition-delay: 0.6s; }
.stagger-4 { transition-delay: 0.8s; }
.stagger-5 { transition-delay: 1.0s; }
.stagger-6 { transition-delay: 1.2s; }

/* Hero entrance animations */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroStatsIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  animation: heroLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero-title {
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-subtitle {
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}
.hero-description {
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero-cta {
  animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
.hero-stats {
  animation: heroStatsIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

/* Glow pulse animation for featured elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--neon-soft); }
  50% { box-shadow: 0 0 40px var(--neon-glow), 0 0 60px var(--neon-soft); }
}
.plan-featured {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Card hover lift with glow */
.plan-card, .service-card, .termo-block, .faq-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}
.plan-card:hover, .service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.25), 0 0 60px rgba(157, 78, 221, 0.1);
}

/* Neon border pulse nos cards */
@keyframes borderPulse {
  0%, 100% { border-color: rgba(157, 78, 221, 0.25); }
  50% { border-color: rgba(157, 78, 221, 0.65); }
}
.plan-card, .service-card {
  animation: borderPulse 4s ease-in-out infinite;
}

/* Button ripple effect base */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.btn:active::after {
  opacity: 1;
  transform: scale(2);
  transition: 0s;
}

/* Pulse neon shadow nos botões CTA */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(157, 78, 221, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(157, 78, 221, 0.2); }
}
.btn-primary, .plan-cta, .service-cta {
  animation: btnPulse 2.5s ease-in-out infinite;
}

/* Scanning line nos cards de planos */
@keyframes scanLine {
  0% { top: -2px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.plan-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  box-shadow: 0 0 12px var(--neon-glow);
  opacity: 0;
  pointer-events: none;
}
.plan-card:hover::after {
  animation: scanLine 1.8s ease-in-out infinite;
}

/* Tech spinner ring */
@keyframes techSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.spinner-tech {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--neon);
  border-right-color: var(--neon-2);
  animation: techSpin 0.8s linear infinite;
  box-shadow: 0 0 10px var(--neon-soft);
  margin: 0 auto 12px;
}

/* Navbar glass effect enhancement */
.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Section tag glow animation */
@keyframes tagGlow {
  0%, 100% { text-shadow: 0 0 10px var(--neon-soft); }
  50% { text-shadow: 0 0 20px var(--neon-glow), 0 0 30px var(--neon-soft); }
}
.section-tag {
  animation: tagGlow 2s ease-in-out infinite;
}

/* FAQ item entrance */
.faq-item {
  transform-origin: center top;
}

/* Modal enhanced animations */
.modal-overlay {
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.modal-overlay:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.modal-overlay.active {
  opacity: 1;
}
.modal {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.modal-overlay:not(.active) .modal {
  transform: translateY(40px) scale(0.95);
  opacity: 0;
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Price counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.amount {
  animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Neon flicker effect for special text */
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}
.glow-text {
  animation: neonFlicker 4s ease-in-out infinite;
}

/* Particle background for hero */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 8s ease-in-out infinite;
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* ---------- Typography ---------- */
h1, h2, h3, .brand-text { font-family: 'Orbitron', sans-serif; letter-spacing: 1px; }

.glow-text {
  color: var(--neon);
  text-shadow: 0 0 10px var(--neon-glow), 0 0 24px var(--neon-soft);
}

.brand-accent { color: var(--neon); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: 14px; transition: var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn-primary {
  background: linear-gradient(135deg, var(--neon-2), var(--neon));
  color: #fff;
  box-shadow: 0 0 0 0 var(--neon-glow), 0 6px 20px rgba(138, 43, 226, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--neon-glow), 0 10px 30px rgba(138, 43, 226, 0.5);
}

.btn-outline {
  background: transparent; color: var(--neon);
  border: 2px solid var(--neon);
}
.btn-outline:hover {
  background: var(--neon); color: #fff;
  box-shadow: 0 0 24px var(--neon-glow);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 8px var(--neon-glow)); }
.brand-text { font-size: 18px; font-weight: 900; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-weight: 600; font-size: 15px; letter-spacing: 0.5px;
  text-transform: uppercase; position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px;
  background: var(--neon); transition: var(--transition);
  box-shadow: 0 0 8px var(--neon-glow);
}
.nav-link:hover { color: var(--neon); }
.nav-link:hover::after { right: 0; }

.discord-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #7289DA;
  font-weight: 600; font-size: 13px;
  transition: var(--transition);
}
.discord-nav:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: rgba(88, 101, 242, 0.6);
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.35);
}
.discord-nav::after { display: none !important; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
  background: var(--bg-elev);
}
.theme-toggle:hover {
  box-shadow: 0 0 16px var(--neon-glow);
  transform: rotate(20deg);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: var(--text); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(157, 78, 221, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: bgPulse 8s ease-in-out infinite alternate;
}
@keyframes bgPulse {
  from { opacity: 0.8; }
  to { opacity: 1.2; }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 880px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.hero-logo {
  width: 160px; height: 160px; object-fit: contain;
  filter: drop-shadow(0 0 30px var(--neon-glow)) drop-shadow(0 0 60px var(--neon-soft));
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05;
}
.hero-subtitle {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.95rem);
  letter-spacing: 4px; color: var(--neon); font-weight: 600;
}
.hero-description {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted); max-width: 720px;
}
.hero-cta { margin-top: 8px; padding: 18px 38px; font-size: 15px; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; margin-top: 30px;
  padding-top: 30px; border-top: 1px solid var(--border); width: 100%;
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow);
}
.stat span { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; color: var(--neon); font-family: 'Orbitron', sans-serif;
  letter-spacing: 4px; font-size: 0.8rem; font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* ===================== SHOP / PLANS ===================== */
.shop { padding: 100px 24px; max-width: 1400px; margin: 0 auto; }
.plans-grid {
  display: grid; 
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto 24px;
}
.plans-grid-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 784px;
  margin: 0 auto;
}
.plans-grid::after {
  content: none;
}
.plan-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: var(--transition);
  overflow: hidden;
  min-width: 0;
}
.plan-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--neon-soft), transparent 70%);
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
}
.plan-card:hover::before { opacity: 1; }

.plan-featured {
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-soft);
}
.plan-featured::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1.5px;
  background: linear-gradient(135deg, var(--neon), transparent, var(--neon));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--neon-2), var(--neon));
  color: #fff; padding: 6px 14px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  box-shadow: 0 0 16px var(--neon-glow);
}
.badge-kellerguard {
  background: linear-gradient(135deg, #ff4d4d 0%, #c0392b 100%);
  box-shadow: 0 0 16px rgba(255, 77, 77, 0.55);
}
.badge-new {
  background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.45);
}
.badge-kellerguard,
.badge-new {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.plan-name { font-size: 1.5rem; font-weight: 900; color: var(--neon); }
.plan-tagline { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

/* Duration toggle */
.duration-toggle {
  display: flex; background: var(--bg-elev-2); border-radius: 10px;
  padding: 4px; border: 1px solid var(--border);
}
.dur-btn {
  flex: 1; padding: 10px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition);
}
.dur-btn.active {
  background: linear-gradient(135deg, var(--neon-2), var(--neon));
  color: #fff;
  box-shadow: 0 0 12px var(--neon-glow);
}

.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Orbitron', sans-serif;
}
.currency { font-size: 1.1rem; color: var(--text-muted); }
.amount { font-size: 2.6rem; font-weight: 900; color: var(--text); }
.period { font-size: 0.95rem; color: var(--text-muted); }

.plan-description { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

.plan-features { display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  position: relative; padding-left: 26px; font-size: 0.95rem;
}
.plan-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--neon-soft); color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 0 8px var(--neon-soft);
}

.plan-cta { width: 100%; margin-top: 8px; }

@media (max-width: 1180px) {
  .plans-grid { gap: 14px; }
  .plan-card { padding: 28px 18px; gap: 16px; }
  .plan-name { font-size: 1.2rem; }
  .plan-tagline,
  .plan-description,
  .plan-features li { font-size: 0.88rem; }
  .amount { font-size: 2rem; }
  .dur-btn { padding: 9px 6px; font-size: 0.78rem; }
  .plan-badge { right: 10px; top: 10px; padding: 5px 10px; font-size: 0.65rem; }
}

/* ===================== SERVICES ===================== */
.services { padding: 100px 24px; max-width: 1280px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; justify-items: center;
}
.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: var(--transition);
  overflow: hidden;
  max-width: 400px; width: 100%;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--neon-soft), transparent 70%);
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-name { font-size: 1.4rem; font-weight: 900; color: var(--neon); }
.service-tagline { color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }

.service-price {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Orbitron', sans-serif;
}
.service-price .currency { font-size: 1.1rem; color: var(--text-muted); }
.service-price .amount { font-size: 2.4rem; font-weight: 900; color: var(--text); }

.service-description { color: var(--text-muted); font-size: 0.95rem; flex: 1; }

.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  position: relative; padding-left: 26px; font-size: 0.95rem;
}
.service-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--neon-soft); color: var(--neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  box-shadow: 0 0 8px var(--neon-soft);
}

.service-cta { width: 100%; margin-top: 8px; }

/* ===================== REFS USOS ===================== */
.refs-usos {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.refs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.ref-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(157, 78, 221, 0.08), rgba(157, 78, 221, 0.02)),
    var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ref-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--neon-soft), transparent 48%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.ref-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 0 30px var(--neon-glow), var(--shadow);
}
.ref-card:hover::before { opacity: 1; }

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(157, 78, 221, 0.16);
  border: 1px solid rgba(157, 78, 221, 0.35);
  color: #d8b4fe;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.ref-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(157, 78, 221, 0.18);
  background: #08080b;
}
.ref-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.ref-image:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.ref-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(157, 78, 221, 0.16);
}
.ref-meta-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ref-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ref-value {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.25;
  word-break: break-word;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}
.image-lightbox.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.image-lightbox-dialog {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 40px var(--neon-soft), var(--shadow);
  background: #08080b;
}
.image-lightbox-dialog img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}
.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 8, 11, 0.75);
  border: 1px solid var(--border-strong);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.image-lightbox-close:hover {
  background: var(--neon);
  box-shadow: 0 0 20px var(--neon-glow);
}

/* ===================== TERMOS ===================== */
.termos { padding: 100px 24px; max-width: 920px; margin: 0 auto; }
.termos-content {
  display: flex; flex-direction: column; gap: 28px;
}
.termo-block {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 26px;
  transition: var(--transition);
}
.termo-block:hover {
  border-color: var(--border-strong);
  box-shadow: 0 0 20px var(--neon-soft);
}
.termo-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--neon);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.termo-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--neon-soft);
  color: var(--neon);
  font-size: 0.85rem; font-weight: 900;
  box-shadow: 0 0 10px var(--neon-soft);
  flex-shrink: 0;
}
.termo-text {
  color: var(--text-muted);
  font-size: 0.98rem; line-height: 1.65;
}
.termo-list {
  display: flex; flex-direction: column; gap: 12px;
  color: var(--text-muted);
  font-size: 0.98rem; line-height: 1.6;
}
.termo-list li {
  position: relative; padding-left: 22px;
}
.termo-list li::before {
  content: "•";
  position: absolute; left: 0; top: 0;
  color: var(--neon); font-weight: 700;
}
.termo-list li strong { color: var(--text); }

/* ===================== FAQ ===================== */
.faq { padding: 100px 24px; max-width: 920px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item.active {
  border-color: var(--neon);
  box-shadow: 0 0 20px var(--neon-soft);
}

.faq-question {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; font-weight: 600; font-size: 1.02rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--neon); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--neon); border-radius: 50%; color: var(--neon);
  font-size: 1rem; transition: var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--neon); color: #fff; }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted); padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 500px; padding: 0 24px 22px; }

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 40px 24px;
  margin-top: 60px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: 'Orbitron', sans-serif; font-weight: 900; }
.footer-logo { width: 32px; height: 32px; object-fit: contain; filter: drop-shadow(0 0 6px var(--neon-glow)); }
.footer-text { color: var(--text-muted); font-size: 0.9rem; }

.footer-social { display: flex; align-items: center; gap: 12px; }
.discord-footer {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #7289DA;
  font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.discord-footer:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: rgba(88, 101, 242, 0.6);
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.35);
  transform: translateY(-1px);
}

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  max-width: 520px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 36px 28px;
  box-shadow: 0 0 40px var(--neon-soft), var(--shadow);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.4rem; color: var(--text-muted);
  transition: var(--transition);
}
.modal-close:hover { color: var(--neon); background: var(--neon-soft); transform: rotate(90deg); }

.modal-title { font-size: 1.5rem; color: var(--neon); margin-bottom: 4px; }
.modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }

.summary {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; }
.summary-row span { color: var(--text-muted); }
.summary-row.total {
  border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px;
  font-size: 1.1rem;
}
.summary-row.total strong { color: var(--neon); font-family: 'Orbitron', sans-serif; }
.discount { color: #4ade80 !important; }

/* Coupon */
.coupon { display: flex; gap: 8px; margin-bottom: 8px; }
.coupon input {
  flex: 1; padding: 12px 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  transition: var(--transition);
}
.coupon input:focus { outline: none; border-color: var(--neon); box-shadow: 0 0 0 3px var(--neon-soft); }
.coupon-msg { font-size: 0.85rem; min-height: 18px; margin-bottom: 12px; }
.coupon-msg.success { color: #4ade80; }
.coupon-msg.error { color: #f87171; }

/* PIX */
.pix-section {
  border-top: 1px solid var(--border);
  padding-top: 20px; margin-top: 6px;
}
.pix-visual {
  display: flex; justify-content: center; align-items: center;
  min-height: 220px; margin-bottom: 16px;
}
.pix-loading { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--text-muted); }
.spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--neon-soft);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pix-qr img {
  width: 220px; height: 220px;
  background: #fff; padding: 12px; border-radius: 12px;
  box-shadow: 0 0 30px var(--neon-soft);
}

.pix-copy label {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.pix-copy-row { display: flex; gap: 8px; }
.pix-copy-row input {
  flex: 1; padding: 12px 14px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.85rem;
  font-family: 'Courier New', monospace;
}
.pix-status { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; min-height: 18px; }
.pix-status.success { color: #4ade80; }

/* Methods */
.methods {
  border-top: 1px solid var(--border);
  margin-top: 22px; padding-top: 18px; text-align: center;
}
.methods p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
.methods-icons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.method-pill {
  padding: 6px 14px; border-radius: 20px;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  color: var(--neon);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
}

/* ============ POLLING INDICATOR ============ */
.pix-poll-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
}
.poll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.pix-already-paid {
  display: block;
  width: 100%;
  margin-top: 12px;
}
.pix-already-paid:disabled {
  opacity: 0.5; cursor: not-allowed;
}

/* ============ PAYMENT SUCCESS ============ */
.payment-success {
  text-align: center;
  padding: 30px 20px 20px;
  animation: successFadeIn 0.5s ease;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 2px solid rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes successPop {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem; font-weight: 900;
  color: #4ade80;
  text-shadow: 0 0 16px rgba(74, 222, 128, 0.45);
  margin-bottom: 12px; letter-spacing: 1px;
}
.success-text {
  color: var(--text-muted);
  font-size: 0.98rem; line-height: 1.55;
  max-width: 420px; margin: 0 auto 22px;
}
.success-text strong { color: var(--text); }
.success-discord { margin: 8px 0 14px; }
.discord-btn {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  padding: 14px 26px;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.4);
  text-transform: none;
  letter-spacing: 0.5px;
}
.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(88, 101, 242, 0.6), 0 8px 24px rgba(88, 101, 242, 0.5);
}
.success-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin-top: 6px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 20px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    transform: translateX(100%); transition: var(--transition);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-link::after { display: none; }

  .hero-logo { width: 120px; height: 120px; }
  .hero-stats { gap: 24px; }
  .stat strong { font-size: 1.4rem; }

  .plan-featured { transform: none; }

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

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

  .shop, .services, .refs-usos, .faq, .termos { padding: 70px 20px; }

  .modal { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 12px 18px; }
  .brand-text { font-size: 15px; }
  .nav-logo { width: 32px; height: 32px; }
  .hero { padding: 100px 18px 60px; }
  .hero-cta { padding: 14px 28px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card, .service-card { padding: 28px 22px; }
  .ref-card { padding: 14px; }
  .ref-meta { grid-template-columns: 1fr; gap: 12px; }
  .image-lightbox { padding: 16px; }
  .image-lightbox-close { top: 12px; right: 12px; }
  .termo-block { padding: 22px 18px; }
  .termo-title { font-size: 1rem; gap: 10px; }
  .termo-num { width: 32px; height: 32px; font-size: 0.8rem; }
  .pix-qr img { width: 180px; height: 180px; }
}

/* ===================== CURSOR TRAIL ===================== */
body {
  cursor: none;
}
.cursor-trail-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(157,78,221,0.4);
  will-change: transform;
}
a, button, input, [role="button"] {
  cursor: none;
}
