/* ========================================
   TU NEGOCIO CON IA — SISTEMA DE DISEÑO
   ======================================== */

:root {
  --bg-primary: #080c18;
  --bg-secondary: #0f1422;
  --bg-card: #141929;
  --bg-card-hover: #1a2138;
  --accent: #7c3aed;
  --accent-dark: #5b21b6;
  --accent-light: #a78bfa;
  --accent-glow: rgba(124, 58, 237, 0.25);
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --green: #10b981;
  --red: #ef4444;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(124, 58, 237, 0.3);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

p { line-height: 1.7; }

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

/* Utility */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-lg {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent { color: var(--accent-light); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-gradient {
  background: linear-gradient(135deg, #a78bfa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-accent);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(14, 20, 40, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-banner.visible {
  transform: translateY(0);
}

#cookie-banner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 700px;
}

#cookie-banner p a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 12, 24, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo span {
  background: linear-gradient(135deg, #a78bfa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 60% at 30% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: pulse-border 2.5s infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Lead Form */
.hero-form-card {
  background: rgba(20, 25, 41, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--cyan));
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}

.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: #fca5a5;
}

.urgency-bar strong {
  color: #ef4444;
}

.countdown-inline {
  font-weight: 700;
  color: #ef4444;
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}

/* ========================================
   PAIN SECTION
   ======================================== */
#dolor {
  padding: 100px 0;
  position: relative;
}

.pain-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.pain-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.pain-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.pain-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pain-transition {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
}

.pain-transition h2 {
  margin-bottom: 16px;
}

.pain-transition p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   WHAT YOU'LL DISCOVER SECTION
   ======================================== */
#descubres {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#descubres::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.discover-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.discover-header h2 {
  margin-bottom: 16px;
}

.discover-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.discover-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.discover-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.discover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.discover-card:hover::before {
  transform: scaleX(1);
}

.discover-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.discover-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.discover-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.discover-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.scarcity-banner {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.scarcity-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.scarcity-text h3 {
  color: #fca5a5;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.scarcity-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.scarcity-timer {
  margin-left: auto;
  text-align: center;
  flex-shrink: 0;
}

.timer-display {
  display: flex;
  gap: 10px;
  align-items: center;
}

.timer-unit {
  text-align: center;
}

.timer-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ef4444;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
  min-width: 60px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
}

.timer-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.timer-sep {
  font-size: 2rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 20px;
}

/* ========================================
   KIKE CADENA SECTION
   ======================================== */
#kike {
  padding: 100px 0;
}

.kike-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.kike-visual {
  position: relative;
}

.kike-avatar {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1a2035, #1e2a4a);
  border: 2px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), var(--shadow-glow);
}

.kike-avatar-inner {
  font-size: 6rem;
  line-height: 1;
}

.kike-stat-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.kike-stat-badge.top-right {
  top: -20px;
  right: -20px;
}

.kike-stat-badge.bottom-left {
  bottom: -20px;
  left: -20px;
}

.kike-stat-badge .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
  line-height: 1;
}

.kike-stat-badge .stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.kike-content .section-label {
  margin-bottom: 16px;
}

.kike-content h2 {
  margin-bottom: 20px;
}

.kike-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.975rem;
}

.kike-quote {
  background: rgba(124, 58, 237, 0.08);
  border-left: 3px solid var(--accent);
  padding: 18px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--accent-light);
  margin: 24px 0;
  font-size: 0.975rem;
}

.kike-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cred-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   BENEFITS / RESULTS SECTION
   ======================================== */
#resultados {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.results-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.results-header h2 {
  margin-bottom: 16px;
}

.results-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.result-card:hover::after {
  transform: scaleX(1);
}

.result-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.result-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.result-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.result-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.result-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.transform-section {
  margin-top: 80px;
}

.transform-header {
  text-align: center;
  margin-bottom: 48px;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.transform-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.transform-col.before {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.03);
}

.transform-col.after {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

.transform-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}

.transform-col.before .transform-col-title {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.transform-col.after .transform-col-title {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
}

.transform-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transform-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.transform-list li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.transform-col.after .transform-list li::before {
  content: '✓';
  color: var(--green);
}

.transform-col.after .transform-list li {
  color: var(--text-primary);
}

.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-light);
}

/* ========================================
   BONUS SECTION
   ======================================== */
#bonos {
  padding: 100px 0;
}

.bonus-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.bonus-header h2 { margin-bottom: 16px; }
.bonus-header p { color: var(--text-secondary); font-size: 1.05rem; }

.bonus-main-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.08));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  text-align: center;
}

.bonus-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--cyan));
}

.bonus-star {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.bonus-main-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.bonus-main-card p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 1rem;
}

.bonus-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
}

.bonus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
  text-align: left;
}

.bonus-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.bonus-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(124, 58, 237, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-feature h4 {
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.bonus-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
#testimonios {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.testimonials-header h2 { margin-bottom: 16px; }
.testimonials-header p { color: var(--text-secondary); font-size: 1.05rem; }

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  cursor: grab;
}

.testimonials-track.dragging {
  cursor: grabbing;
  transition: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.slider-btn:hover {
  border-color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Floating Testimonials */
#floating-testimonials {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 999;
  pointer-events: none;
}

.floating-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 20, 40, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 13px 18px;
  width: 340px;
  max-width: calc(100vw - 40px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateX(calc(-100% - 30px));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.floating-toast.show {
  transform: translateX(0);
}

.float-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.float-content {
  min-width: 0;
}

.float-name {
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.float-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.float-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 2px;
}

.float-stars .star {
  font-size: 0.7rem;
  color: var(--gold);
}

/* ========================================
   FAQ SECTION
   ======================================== */
#preguntas {
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.faq-header h2 { margin-bottom: 16px; }
.faq-header p { color: var(--text-secondary); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 0.975rem;
  font-weight: 600;
  gap: 20px;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-light);
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
#cta-final {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-final-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-final-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.cta-form-final {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form-row .form-group:last-child {
  grid-column: 1 / -1;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
}

.guarantee-badge .shield {
  font-size: 2rem;
  flex-shrink: 0;
}

.guarantee-badge p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

.guarantee-badge strong {
  color: var(--green);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent-light);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
  min-height: 100vh;
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.legal-page .last-updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--accent-light);
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 12px 0 14px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ========================================
   GRACIAS PAGE
   ======================================== */
.gracias-page {
  min-height: 100vh;
  background: var(--bg-primary);
}

.gracias-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gracias-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.gracias-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.gracias-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.gracias-hero h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto 20px;
}

.gracias-name {
  color: var(--accent-light);
}

.gracias-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}

/* Video Section */
.video-section {
  padding: 20px 0 80px;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border-accent);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), var(--shadow-glow);
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
}

.video-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  width: 0%;
  transition: width 0.3s linear;
  z-index: 5;
  border-radius: 4px 4px 0 0;
}

.video-unlock-msg {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* CTA & Bonus Buttons */
.cta-buttons-area {
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 40px;
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2s infinite;
  width: 100%;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 0 0 16px rgba(124, 58, 237, 0); }
}

.btn-checkout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.6) !important;
}

.btn-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.btn-bonus:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hidden-btn {
  display: none !important;
}

/* Checkout Popup/Modal */
#checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#checkout-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  width: 95%;
  max-width: 640px;
  height: 90vh;
  max-height: 750px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  animation: modal-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.modal-iframe {
  flex: 1;
  border: none;
  width: 100%;
  overflow: auto;
}

.modal-loading {
  position: absolute;
  inset: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-card);
  z-index: 2;
}

.modal-loading.hidden {
  display: none;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE - TABLETS
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #hero-canvas {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-form-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kike-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kike-avatar {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .transform-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .transform-arrow {
    transform: rotate(90deg);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(8, 12, 24, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-hamburger {
    display: flex;
  }

  #hero {
    padding: 100px 0 60px;
  }

  .hero-badge {
    font-size: 0.72rem;
  }

  .hero-form-card {
    padding: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .discover-grid {
    grid-template-columns: 1fr;
  }

  .bonus-features {
    grid-template-columns: 1fr;
  }

  .bonus-main-card {
    padding: 28px 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  .scarcity-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .scarcity-timer {
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btn-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .cta-form-row .form-group:last-child {
    grid-column: auto;
  }

  .floating-toast {
    width: calc(100vw - 40px);
  }

  .timer-number {
    font-size: 1.6rem;
    min-width: 48px;
    padding: 6px 10px;
  }

  .gracias-hero {
    padding: 90px 0 40px;
  }

  .modal-box {
    max-height: 85vh;
  }
}

@media (max-width: 480px) {
  .hero-form-card {
    padding: 20px;
  }

  .kike-stat-badge.top-right {
    top: -10px;
    right: -10px;
  }

  .kike-stat-badge.bottom-left {
    bottom: -10px;
    left: -10px;
  }

  .btn-checkout {
    font-size: 1rem;
    padding: 18px 24px;
  }
}
