/* =============================================
   Ruben.BG.Coach — styles.css
   Paleta neón: #FFA249 / #9E00F6 / #FF0099 / #00FFE5
   Fondo base: #0D0B1E (deep dark purple)
   ============================================= */

:root {
  --neon-orange: #FFA249;
  --neon-purple: #9E00F6;
  --neon-pink:   #FF0099;
  --neon-cyan:   #00FFE5;
  --neon-gold:   #FFD700;
  --bg-deep:   #0D0B1E;
  --bg-mid:    #120F2A;
  --bg-card:   #1A1535;
  --bg-card-2: #1F1A40;
  --text-white: #F0EEFF;
  --text-muted: #8B84B8;
  --border: rgba(158, 0, 246, 0.25);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --glow-purple: 0 0 40px rgba(158, 0, 246, 0.4);
  --glow-orange: 0 0 40px rgba(255, 162, 73, 0.4);
  --glow-pink:   0 0 40px rgba(255, 0, 153, 0.4);
  --glow-cyan:   0 0 30px rgba(0, 255, 229, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

.cursor {
  position: fixed; width: 12px; height: 12px; background: var(--neon-cyan);
  border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: screen;
  transition: transform 0.1s ease; box-shadow: var(--glow-cyan);
}
.cursor-trail {
  position: fixed; width: 32px; height: 32px; border: 1px solid var(--neon-purple);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transition: transform 0.25s ease, left 0.12s ease, top 0.12s ease;
}

.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.visible { opacity: 1; transform: translateY(0); }

.section-header { text-align: center; padding: 0 40px; margin-bottom: 70px; }
.section-header .section-desc { margin: 0 auto; }
.section-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1; letter-spacing: 2px; margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; line-height: 1.7; }
.neon-text { background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 60px; transition: background 0.4s ease, backdrop-filter 0.4s ease; }
.nav.scrolled { background: rgba(13, 11, 30, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 4px; color: var(--text-white); }
.nav-logo span { color: var(--neon-orange); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--neon-cyan); }
.nav-cta { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; padding: 10px 24px; border: 1px solid var(--neon-orange); color: var(--neon-orange); text-decoration: none; border-radius: 2px; transition: background 0.3s, box-shadow 0.3s; }
.nav-cta:hover { background: var(--neon-orange); color: var(--bg-deep); box-shadow: var(--glow-orange); }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 60px 80px; }
.hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(158, 0, 246, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(158, 0, 246, 0.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(158, 0, 246, 0.3), transparent 70%); top: -100px; right: -100px; }
.orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(255, 162, 73, 0.2), transparent 70%); bottom: 100px; left: 100px; }
.orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(255, 0, 153, 0.2), transparent 70%); top: 50%; right: 30%; }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--neon-cyan); margin-bottom: 20px; transition-delay: 0.1s; }
.hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.95; letter-spacing: 2px; margin-bottom: 32px; }
.hero-title .line { display: block; }
.hero-title .accent-line { background: linear-gradient(90deg, var(--neon-orange), var(--neon-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; max-width: 480px; transition-delay: 0.2s; }
.hero-desc strong { color: var(--text-white); }
.hero-pillars { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.pillar { display: flex; align-items: center; gap: 8px; background: rgba(158, 0, 246, 0.08); border: 1px solid rgba(158, 0, 246, 0.2); padding: 8px 16px; border-radius: 20px; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 1px; color: var(--text-muted); transition: border-color 0.3s, color 0.3s; }
.pillar:hover { border-color: var(--neon-purple); color: var(--text-white); }
.hero-stats { display: flex; gap: 30px; align-items: center; margin-bottom: 48px; transition-delay: 0.3s; }
.stat { text-align: center; }
.stat-num, .stat span { font-family: var(--font-display); font-size: 2.8rem; color: var(--neon-orange); line-height: 1; }
.stat p { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }
.hero-ctas { display: flex; gap: 20px; transition-delay: 0.4s; }
.btn-primary { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); color: white; text-decoration: none; border-radius: 2px; transition: box-shadow 0.3s, transform 0.2s; }
.btn-primary:hover { box-shadow: var(--glow-orange); transform: translateY(-2px); }
.btn-ghost { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; padding: 16px 36px; border: 1px solid var(--border); color: var(--text-muted); text-decoration: none; border-radius: 2px; transition: border-color 0.3s, color 0.3s; }
.btn-ghost:hover { border-color: var(--neon-purple); color: var(--text-white); }
.hero-visual { display: flex; justify-content: center; transition-delay: 0.2s; }
.trainer-frame { position: relative; width: 420px; height: 520px; }
.trainer-photo-main { position: absolute; top: 0; left: 30px; width: 300px; height: 420px; border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.trainer-photo-secondary { position: absolute; bottom: 20px; left: 0; width: 150px; height: 180px; border-radius: 4px; overflow: hidden; border: 1px solid rgba(255, 162, 73, 0.3); box-shadow: var(--glow-orange); }
.trainer-photo-third { position: absolute; bottom: 60px; right: 0; width: 140px; height: 170px; border-radius: 4px; overflow: hidden; border: 1px solid rgba(0, 255, 229, 0.3); box-shadow: var(--glow-cyan); }
.trainer-photo-main img, .trainer-photo-secondary img, .trainer-photo-third img { width: 100%; height: 100%; object-fit: cover; }
.trainer-badge { position: absolute; top: 20px; right: -10px; background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); padding: 8px 16px; border-radius: 2px; z-index: 3; }
.trainer-badge span { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 4px; color: white; }
.floating-tag { position: absolute; background: rgba(26, 21, 53, 0.9); border: 1px solid var(--border); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 20px; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 1px; color: var(--text-white); z-index: 4; animation: float 4s ease-in-out infinite; }
.tag-1 { top: 60px; right: -20px; animation-delay: 0s; border-color: rgba(255, 162, 73, 0.4); }
.tag-2 { top: 170px; right: -40px; animation-delay: 1.5s; border-color: rgba(255, 0, 153, 0.4); }
.tag-3 { top: 280px; right: -30px; animation-delay: 3s; border-color: rgba(0, 255, 229, 0.4); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0.4; }
.scroll-indicator span { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--neon-purple), transparent); animation: scrollDrop 2s ease-in-out infinite; }
@keyframes scrollDrop { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

.discipline { padding: 100px 60px; position: relative; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.discipline-orb { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(158, 0, 246, 0.12), transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(60px); pointer-events: none; }
.discipline-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center; }
.discipline-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase; color: var(--neon-purple); margin-bottom: 28px; }
.discipline-quote { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.1; letter-spacing: 1px; margin-bottom: 28px; color: var(--text-white); font-style: normal; }
.discipline-body { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 620px; margin: 0 auto 60px; }
.discipline-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: left; margin-bottom: 48px; }
.disc-pillar { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; transition: border-color 0.3s, transform 0.3s; }
.disc-pillar:hover { border-color: rgba(158, 0, 246, 0.4); transform: translateY(-4px); }
.disc-num { font-family: var(--font-display); font-size: 2rem; color: var(--neon-purple); line-height: 1; flex-shrink: 0; opacity: 0.6; }
.disc-text strong { display: block; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--text-white); margin-bottom: 6px; }
.disc-text p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.discipline-explication { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; max-width: 620px; margin: 0 auto 60px; }

.clients { padding: 120px 0; overflow: hidden; width: 100%; max-width: 100vw; }
.clients-track-wrapper { overflow: hidden; padding: 20px 0; position: relative; width: 100%; max-width: 100vw; }
.clients-track-wrapper::before, .clients-track-wrapper::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.clients-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-deep), transparent); }
.clients-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-deep), transparent); }
.clients-track { display: flex; gap: 28px; padding: 20px 60px; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform; width: max-content; opacity: 0; transition: opacity 0.3s ease; }
.clients-track.ready { opacity: 1; }
.client-card { width: 340px; min-width: 340px; max-width: 340px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 28px; position: relative; flex-shrink: 0; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.client-card:hover { transform: translateY(-8px); border-color: rgba(158, 0, 246, 0.5); box-shadow: var(--glow-purple); }
.client-card.featured { border-color: rgba(255, 162, 73, 0.4); background: linear-gradient(135deg, var(--bg-card), rgba(255, 162, 73, 0.05)); }
.client-card.featured:hover { border-color: var(--neon-orange); box-shadow: var(--glow-orange); }
.card-badge { position: absolute; top: -12px; left: 28px; background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); padding: 4px 14px; border-radius: 20px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 2px; color: white; }
.card-photo { display: flex; gap: 4px; height: 240px; border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.photo-side { flex: 1; position: relative; overflow: hidden; }
.photo-side img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.photo-label { position: absolute; top: 8px; left: 8px; z-index: 1; font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 2px; padding: 2px 8px; border-radius: 2px; background: rgba(13, 11, 30, 0.75); color: var(--neon-cyan); }
.client-name { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 8px; }
.client-stats { display: flex; gap: 12px; margin-bottom: 12px; }
.loss { font-family: var(--font-mono); font-size: 0.75rem; padding: 4px 12px; background: rgba(0, 255, 229, 0.1); color: var(--neon-cyan); border-radius: 20px; border: 1px solid rgba(0, 255, 229, 0.2); }
.gain { font-family: var(--font-mono); font-size: 0.75rem; padding: 4px 12px; background: rgba(255, 162, 73, 0.1); color: var(--neon-orange); border-radius: 20px; border: 1px solid rgba(255, 162, 73, 0.2); }
.time { font-family: var(--font-mono); font-size: 0.75rem; padding: 4px 12px; background: rgba(158, 0, 246, 0.1); color: var(--neon-purple); border-radius: 20px; border: 1px solid rgba(158, 0, 246, 0.2); }
.client-quote { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.stars { color: var(--neon-gold); font-size: 0.9rem; letter-spacing: 2px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 48px; }
.carousel-btn { width: 48px; height: 48px; background: var(--bg-card); border: 1px solid var(--border); color: var(--text-white); font-size: 1.2rem; cursor: none; border-radius: 2px; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s, box-shadow 0.3s; }
.carousel-btn:hover { background: var(--neon-purple); border-color: var(--neon-purple); box-shadow: var(--glow-purple); }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: none; transition: background 0.3s, transform 0.3s; }
.dot.active { background: var(--neon-orange); transform: scale(1.3); }

.certs { padding: 100px 60px; border-top: 1px solid var(--border); }
.certs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.cert-card { display: flex; align-items: center; gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; position: relative; overflow: hidden; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.cert-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--neon-orange), var(--neon-purple)); opacity: 0; transition: opacity 0.3s; }
.cert-card:hover { border-color: rgba(255, 162, 73, 0.35); transform: translateX(6px); box-shadow: var(--glow-orange); }
.cert-card:hover::before { opacity: 1; }
.cert-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.cert-info { flex: 1; }
.cert-title { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--text-white); margin-bottom: 4px; }
.cert-org { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 1px; color: var(--neon-orange); margin-bottom: 4px; }
.cert-year { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 2px; color: var(--text-muted); }
.cert-badge { width: 28px; height: 28px; border-radius: 50%; background: rgba(0, 255, 229, 0.1); border: 1px solid rgba(0, 255, 229, 0.3); color: var(--neon-cyan); font-size: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.pricing { padding: 120px 60px; position: relative; overflow: hidden; }
.pricing-bg-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.orb-p1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(158, 0, 246, 0.15), transparent 70%); top: -100px; left: -200px; }
.orb-p2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(255, 0, 153, 0.1), transparent 70%); bottom: 0; right: 0; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto 48px; position: relative; z-index: 2; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 40px 36px; position: relative; overflow: hidden; transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.price-card:hover { transform: translateY(-8px); }
.price-card-glow { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-purple), transparent); opacity: 0; transition: opacity 0.3s; }
.price-card:hover .price-card-glow { opacity: 1; }
.price-card.popular { border-color: rgba(255, 162, 73, 0.5); background: linear-gradient(135deg, var(--bg-card), rgba(255, 162, 73, 0.04)); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-8px); box-shadow: var(--glow-orange); }
.price-card.popular .price-card-glow { opacity: 1; background: linear-gradient(90deg, transparent, var(--neon-orange), transparent); }
.price-card.elite { border-color: rgba(255, 215, 0, 0.3); }
.price-card.elite:hover { box-shadow: 0 0 40px rgba(255, 215, 0, 0.2); border-color: rgba(255, 215, 0, 0.6); }
.price-card.elite .price-card-glow { background: linear-gradient(90deg, transparent, var(--neon-gold), transparent); }
.price-card.elite:hover .price-card-glow { opacity: 1; }
.popular-badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); padding: 6px 14px; border-radius: 20px; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 1px; color: white; }
.price-tier { font-family: var(--font-display); font-size: 1rem; letter-spacing: 6px; color: var(--text-muted); margin-bottom: 20px; }
.price-amount { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 16px; }
.currency { font-family: var(--font-mono); font-size: 1.2rem; color: var(--neon-orange); margin-top: 10px; }
.amount { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.price-card.elite .amount { background: linear-gradient(135deg, var(--neon-gold), #FFA249); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.period { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); margin-top: auto; padding-bottom: 12px; }
.price-monthly { display: flex; align-items: baseline; gap: 4px; }
.price-quarterly { display: flex; align-items: baseline; gap: 3px; opacity: 0.55; margin-top: 4px; }
.currency-small { font-size: 0.85rem; }
.amount-small { font-size: 1.3rem; font-weight: 700; }
.period-small { font-size: 0.75rem; }
.price-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.price-features li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--text-white); }
.price-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.check { color: var(--neon-cyan); font-weight: bold; flex-shrink: 0; }
.check.gold { color: var(--neon-gold); }
.price-features li.disabled span { color: var(--text-muted); }
.price-btn { display: block; text-align: center; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; border-radius: 2px; text-decoration: none; transition: all 0.3s ease; }
.ghost-btn { border: 1px solid var(--border); color: var(--text-muted); }
.ghost-btn:hover { border-color: var(--neon-purple); color: var(--text-white); box-shadow: var(--glow-purple); }
.neon-btn { background: linear-gradient(135deg, var(--neon-orange), var(--neon-pink)); color: white; }
.neon-btn:hover { box-shadow: var(--glow-orange); transform: translateY(-2px); }
.gold-btn { border: 1px solid rgba(255, 215, 0, 0.4); color: var(--neon-gold); }
.gold-btn:hover { background: rgba(255, 215, 0, 0.1); border-color: var(--neon-gold); box-shadow: 0 0 30px rgba(255, 215, 0, 0.2); }
.pricing-note { text-align: center; position: relative; z-index: 2; }
.pricing-note p { font-size: 0.9rem; color: var(--text-muted); }
.pricing-note a { color: var(--neon-cyan); text-decoration: none; border-bottom: 1px solid rgba(0, 255, 229, 0.3); transition: border-color 0.3s; }
.pricing-note a:hover { border-color: var(--neon-cyan); }

.footer { padding: 40px 60px; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 4px; }
.footer-logo span { color: var(--neon-orange); }
.footer p { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 2px; color: var(--text-muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 3px; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--neon-cyan); }

.contact-bubbles { position: fixed; bottom: 32px; right: 32px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.contact-bubble { position: relative; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; cursor: none; transform-origin: center; animation: bubbleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, opacity 0.4s ease; }
.wsp-bubble { animation-delay: 0.05s; background: #128C7E; box-shadow: 0 4px 20px rgba(18, 140, 126, 0.45), 0 0 0 0 rgba(0, 255, 229, 0); }
.ig-bubble { animation-delay: 0.15s; background: linear-gradient(135deg, #FFA249 0%, #FF0099 50%, #9E00F6 100%); box-shadow: 0 4px 20px rgba(255, 0, 153, 0.4), 0 0 0 0 rgba(255, 162, 73, 0); }
.tiktok-bubble { animation-delay: 0.25s; background: #000; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(0, 255, 229, 0); }
@keyframes bubbleIn { from { opacity: 0; transform: scale(0) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.wsp-bubble:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(18, 140, 126, 0.6), var(--glow-cyan); }
.ig-bubble:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(255, 0, 153, 0.6), var(--glow-pink); }
.tiktok-bubble:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(0, 0, 0, 0.6), 0 0 0 4px rgba(0, 255, 229, 0.15), var(--glow-pink); }
.bubble-icon { width: 26px; height: 26px; color: white; display: flex; align-items: center; justify-content: center; }
.bubble-icon svg { width: 100%; height: 100%; }
.bubble-tooltip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(8px); background: rgba(13, 11, 30, 0.95); border: 1px solid var(--border); backdrop-filter: blur(12px); color: var(--text-white); font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 1px; white-space: nowrap; padding: 8px 14px; border-radius: 4px; pointer-events: none; opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease; }
.bubble-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--border); }
.contact-bubble:hover .bubble-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }
.bubble-pulse { position: absolute; inset: 0; border-radius: 50%; animation: pulse 2.5s ease-out infinite; pointer-events: none; }
.wsp-bubble .bubble-pulse { box-shadow: 0 0 0 0 rgba(18, 140, 126, 0.5); animation-name: pulse-wsp; }
.ig-bubble .bubble-pulse { box-shadow: 0 0 0 0 rgba(255, 0, 153, 0.5); }
.tiktok-bubble .bubble-pulse { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); animation-name: pulse-tiktok; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 162, 73, 0.5); } 70% { box-shadow: 0 0 0 16px rgba(255, 162, 73, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 162, 73, 0); } }
@keyframes pulse-wsp { 0% { box-shadow: 0 0 0 0 rgba(0, 255, 229, 0.4); } 70% { box-shadow: 0 0 0 16px rgba(0, 255, 229, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 255, 229, 0); } }
@keyframes pulse-tiktok { 0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.45); } 70% { box-shadow: 0 0 0 16px rgba(0, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); } }

/* ==================================
   RESPONSIVE Y ADAPTACIÓN MÓVIL
   ================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .trainer-frame { width: 340px; height: 420px; }
  .trainer-photo-main { width: 240px; height: 340px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .price-card.popular { transform: scale(1); }
  .price-card.popular:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  /* 1. RESET Y CURSOR EN MÓVIL */
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none !important; }

  /* 2. NAVEGACIÓN */
  .nav { padding: 16px 20px; }
  .nav-logo { font-size: 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 16px; font-size: 0.65rem; }

  /* 3. HERO SECTION */
  .hero { padding: 100px 20px 40px; align-items: flex-start; }
  .hero-content { gap: 40px; }
  .hero-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero-desc { font-size: 0.95rem; }

  .trainer-frame { width: 100%; max-width: 300px; height: 380px; margin: 0 auto; }
  .trainer-photo-main { width: 220px; height: 310px; left: 50%; transform: translateX(-50%); }
  .trainer-photo-secondary { width: 110px; height: 140px; bottom: 0; left: 0; }
  .trainer-photo-third { width: 100px; height: 130px; bottom: 20px; right: 0; }

  .floating-tag { transform: scale(0.85); }
  .tag-1 { top: 10px; right: 0; }
  .tag-2 { top: 140px; right: -10px; }
  .tag-3 { top: 260px; right: 0; }

  .hero-stats { flex-wrap: wrap; justify-content: space-evenly; gap: 16px; }
  .stat-divider { display: none; }
  .stat-num, .stat span { font-size: 2.2rem; }

  .hero-ctas { flex-direction: column; width: 100%; gap: 12px; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; }

  /* 4. FILOSOFÍA */
  .discipline { padding: 60px 20px; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .discipline-quote { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .discipline-pillars { grid-template-columns: 1fr; gap: 20px; }
  .disc-pillar { padding: 20px; }

  /* 5. CARRUSEL CLIENTES */
  .clients { padding: 60px 0; }
  .clients-track-wrapper::before, .clients-track-wrapper::after { width: 30px; }
  .clients-track { padding: 20px 16px; gap: 16px; }
  .client-card { width: 85vw; min-width: 85vw; max-width: 360px; padding: 20px; }
  .card-photo { height: 180px; }

  /* 6. CERTIFICACIONES Y PRECIOS */
  .certs { padding: 60px 20px; }
  .certs-grid { grid-template-columns: 1fr; }

  .pricing { padding: 60px 20px; }
  .price-card { padding: 32px 24px; }
  .amount { font-size: 3.5rem; }
  .price-features li { font-size: 0.85rem; }

  /* 7. FOOTER Y BURBUJAS */
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 20px; }
  .contact-bubbles { bottom: 20px; right: 16px; gap: 12px; }
  .contact-bubble { width: 50px; height: 50px; }
  .bubble-tooltip { display: none; }
}

/* Clase para ocultar textos visualmente pero que Google los lea (SEO) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ==================================
   CAJA DE MEJORA (UPSELL) PLANES
   ================================== */
.price-addon {
  background: rgba(0, 255, 229, 0.05);
  border: 1px dashed var(--neon-cyan);
  border-radius: 6px;
  padding: 14px;
  margin-bottom: 24px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}

.price-addon:hover {
  background: rgba(0, 255, 229, 0.1);
  border-style: solid;
  box-shadow: var(--glow-cyan);
}

.addon-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-price {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-white);
  background: var(--bg-deep);
  padding: 2px 6px;
  border-radius: 4px;
}

.price-addon p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

.price-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subtle-link {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 4px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.subtle-link:hover {
  color: var(--neon-cyan);
  text-decoration-color: var(--neon-cyan);
}