/* Futuristic / Cyperpunk-ish Corporate Dark Theme */
:root {
  --bg-base: #050505;
  --bg-surface: rgba(15, 15, 15, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --brand-primary: #c6ff00; /* Neon Lime */
  --brand-primary-rgb: 198, 255, 0;
  --brand-secondary: #00f0ff; /* Cyan */
  --brand-secondary-rgb: 0, 240, 255;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-inverse: #050505;
  
  --font-sans: 'RBNo3.1', 'Inter', sans-serif;
  --font-display: 'RBNo3.1', 'Space Grotesk', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-glow: 0 0 20px rgba(198, 255, 0, 0.2);
  --shadow-glow-strong: 0 0 40px rgba(198, 255, 0, 0.4);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Rest & Base */
@font-face {
  font-family: 'RBNo3.1';
  src: local('RBNo3.1'), local('RBNo31'), local('RBNo3.1-Regular'),
       url('./fonts/RBNo3.1-Regular.woff2') format('woff2'),
       url('./fonts/RBNo3.1-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RBNo3.1';
  src: local('RBNo3.1 Bold'), local('RBNo31-Bold'),
       url('./fonts/RBNo3.1-Bold.woff2') format('woff2'),
       url('./fonts/RBNo3.1-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Background Effects */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}
.bg-glow-1 {
  width: 50vw;
  height: 50vw;
  background: var(--brand-primary);
  top: -10vw;
  left: -20vw;
}
.bg-glow-2 {
  width: 40vw;
  height: 40vw;
  background: var(--brand-secondary);
  bottom: 10vw;
  right: -10vw;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.z-10 { position: relative; z-index: 10; }
.relative { position: relative; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.futuristic-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.colossal-heading {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-brand { color: var(--brand-primary); }
.text-muted { color: var(--text-muted); }
.text-danger { color: #ff3366; }
.text-dark { color: var(--text-inverse); }

.glow-text {
  text-shadow: 0 0 20px rgba(var(--brand-primary-rgb), 0.5);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.max-w-md { max-width: 800px; }

.section-padding { padding: 6rem 0; }
.py-xl { padding: 4rem 0; }
.p-xl { padding: 3rem; }
.p-md { padding: 1.5rem; }
.p-0 { padding: 0; }
.mt-xl { margin-top: 4rem; }
.mt-xxl { margin-top: 6rem; }
.mt-md { margin-top: 1.5rem; }
.mt-sm { margin-top: 0.75rem; }
.mb-xl { margin-bottom: 3rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-sm { margin-bottom: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.text-center { text-align: center; }
.block { display: block; }
.inline-flex { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.overflow-hidden { overflow: hidden; }

/* Components */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.active-glow {
  border-color: rgba(var(--brand-primary-rgb), 0.4);
  box-shadow: var(--shadow-glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 99px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--text-inverse);
}
.btn-primary:hover {
  background: #d4ff33;
  transform: scale(1.05);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(var(--brand-primary-rgb), 0.4);
}
.btn-glow:hover {
  box-shadow: 0 0 30px rgba(var(--brand-primary-rgb), 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-main);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
}
.btn-outline:hover {
  background: rgba(var(--brand-primary-rgb), 0.1);
  box-shadow: inset 0 0 10px rgba(var(--brand-primary-rgb), 0.2);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-md { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 3rem; height: 3rem; }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 1rem 0;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-container { text-decoration: none; }
.logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--text-main); letter-spacing: -1px;}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.highlight {
  color: var(--text-main);
}
.nav-link.highlight {
  color: var(--brand-primary);
  text-shadow: 0 0 10px rgba(var(--brand-primary-rgb), 0.5);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}
.mobile-only { display: none; }

/* Hero */
.dotted-surface-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.8;
}

.hero {
  padding: 10rem 0 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(var(--brand-primary-rgb), 0.1);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.3);
  border-radius: 99px;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(var(--brand-primary-rgb), 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--brand-primary-rgb), 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(var(--brand-primary-rgb), 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--brand-primary-rgb), 0); }
}
.highlight-urgency { color: var(--brand-primary); font-weight: 700; }

.hero h1 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Float Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}

/* Mockup */
.hero-mockup-wrapper {
  margin-top: 5rem;
  width: 100%;
  max-width: 900px;
  perspective: 1000px;
}
.glass-mockup {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), 0 0 30px rgba(var(--brand-primary-rgb), 0.15);
  transform: rotateX(5deg) scale(0.95);
  transition: transform 0.5s ease;
}
.glass-mockup:hover {
  transform: rotateX(0deg) scale(1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5), 0 0 50px rgba(var(--brand-primary-rgb), 0.3);
}
.mockup-header {
  height: 2rem;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.dot:nth-child(1) { background: #ff5f56; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #27c93f; }

.mockup-body {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(5,5,5,1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-placeholder {
  text-align: center;
  color: var(--brand-primary);
  opacity: 0.5;
}
.mockup-icon { width: 4rem; height: 4rem; margin-bottom: 1rem; display: inline-block; }

/* Grid Cols Component */
.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Feature Cards */
.feature-card {
  padding: 2.5rem 2rem;
}
.card-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: rgba(var(--brand-primary-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.feature-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Journey Section */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.journey-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.journey-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
  width: 100%;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bg-dark { background: #111; }
.bg-gradient-brand { background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary)); }

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.badge-before { background: rgba(0,0,0,0.8); color: #fff; border: 1px solid #333; }
.badge-after { background: var(--text-inverse); color: var(--brand-primary); }

.journey-info { padding: 0 1rem 1rem; }
.journey-title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.journey-desc { color: var(--text-muted); font-size: 0.9rem; }
.active-card { border-color: rgba(var(--brand-primary-rgb), 0.3); }

/* Comparison */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.comp-col { padding: 2rem; }
.comp-header { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; text-align: center; }
.comp-list { display: flex; flex-direction: column; gap: 1rem; }
.comp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Modules */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.module-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.module-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}
.module-list li:hover { background: rgba(255,255,255,0.05); transform: translateX(5px); }
.module-list li.locked { opacity: 0.5; }

/* Video */
.neon-border {
  padding: 2px;
  background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 16px;
  margin-top: 3rem;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}
.bridge-card { border-color: rgba(var(--brand-primary-rgb), 0.2); max-width: 600px; margin: 4rem auto 0; padding: 2rem; }

/* Offer */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.offer-checklist { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.offer-checklist li { display: flex; align-items: flex-start; gap: 1rem; font-size: 1.1rem; }

.pricing-card { padding: 3rem 2rem; position: relative; }
.cyber-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(var(--brand-primary-rgb), 0.1);
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: monospace;
  letter-spacing: 1px;
}
.old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; }
.pricing-value { display: flex; justify-content: center; align-items: flex-start; line-height: 1; }
.currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; }
.amount { font-size: 4.5rem; font-weight: 700; font-family: var(--font-display); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pricing-features li { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; }

/* Offer Guarantee Box */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  max-width: 800px;
  margin: 4rem auto 0;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.3);
  background: rgba(10, 10, 10, 0.5);
}

.guarantee-seal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-seal {
  width: 10rem; /* Increased size significantly for desktop */
  height: auto;
  display: block;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.guarantee-desc {
  line-height: 1.6;
}

/* Mentor */
.mentor-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
}
.mentor-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(to bottom right, #111, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-glass);
}
.mentor-icon { width: 5rem; height: 5rem; color: #333; }
.cyber-tag { font-family: monospace; font-size: 0.85rem; letter-spacing: 1px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; font-family: var(--font-display); }

/* FAQ */
.faq-item { overflow: hidden; transition: var(--transition); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.faq-icon { transition: transform 0.3s ease; }
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  opacity: 0;
}
.faq-item.active .faq-content {
  max-height: 200px; /* arbitrary max height for transition */
  padding-bottom: 1.5rem;
  opacity: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active { border-color: rgba(var(--brand-primary-rgb), 0.3); }


/* Responsive */
@media (max-width: 992px) {
  .offer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mentor-grid { grid-template-columns: 1fr; }
  .mentor-placeholder { min-height: 300px; border-right: none; border-bottom: 1px solid var(--border-glass); }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  
  .header-actions { display: none; }
  .mobile-toggle { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 72px; /* Header height approx */
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 40;
  }
  .nav-menu.show { transform: translateY(0); }
  .mobile-only { display: inline-flex; width: 100%; margin-top: 1rem; }
  
  .hero { padding-top: 8rem; }
  
  .comparison-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .modules-grid { grid-template-columns: 1fr; }
  
  .p-xl { padding: 1.5rem; }
  
  .hero h1 { font-size: 2rem; }
  .colossal-heading { font-size: 2.5rem; }

  /* Ajuste no Celular pra deixar Bem Grande */
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .guarantee-seal {
    width: 60vw; /* Bem massivo adaptado á tela do cel */
    max-width: 280px; 
  }
  .guarantee-title {
    font-size: 1.8rem;
  }
}

