@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;600;700&display=swap');

:root {
  /* Colors */
  --bg-base: #03060f;
  --bg-surface: rgba(10, 18, 36, 0.45);
  --bg-surface-solid: #080f1d;
  --bg-glass-card: rgba(10, 18, 36, 0.4);
  --border-glass: rgba(212, 175, 55, 0.15);
  --border-glass-hover: rgba(212, 175, 55, 0.35);
  
  --gold-primary: #D4AF37;
  --gold-light: #fbe396;
  --gold-dark: #aa841c;
  --gold-gradient: linear-gradient(135deg, #f7d373 0%, #d4af37 50%, #9e7a15 100%);
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-glow-strong: rgba(212, 175, 55, 0.6);
  
  --neon-active: #00ff87;
  --neon-active-glow: rgba(0, 255, 135, 0.25);
  
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-primary) var(--bg-base);
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Ambient Cursor Aura */
.cursor-aura {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 255, 135, 0.02) 40%, transparent 70%);
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  mix-blend-mode: screen;
  filter: blur(30px);
}

/* Background Parallax Elements */
.parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.parallax-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  mix-blend-mode: screen;
  will-change: transform;
}

.shape-gold-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-gradient);
  top: 15%;
  left: -100px;
}

.shape-blue-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #0f2b5c 0%, transparent 80%);
  top: 40%;
  right: -200px;
}

.shape-gold-2 {
  width: 350px;
  height: 350px;
  background: var(--gold-gradient);
  bottom: 10%;
  left: 20%;
}

.shape-neon-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--neon-active) 0%, transparent 70%);
  top: 75%;
  right: 15%;
}

/* Layout Utilities */
section {
  position: relative;
  padding: 140px 80px;
  z-index: 2;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Premium Tags */
.tag-agency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-glass);
  background: rgba(212, 175, 55, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tag-agency span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-active);
  box-shadow: 0 0 10px var(--neon-active);
  animation: neonPulse 2s infinite alternate;
}

@keyframes neonPulse {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 4px var(--neon-active); }
  100% { transform: scale(1.15); opacity: 1; box-shadow: 0 0 12px var(--neon-active); }
}

/* Interactive Buttons */
.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold-gradient);
  color: #03060f;
  padding: 18px 44px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.btn-premium:hover::before {
  left: 100%;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
  color: #000;
  background: linear-gradient(135deg, #fff 0%, #fbe396 100%);
}

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  padding: 18px 44px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-outline-premium:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

/* Glassmorphism Generic Card */
.glass-card {
  background: var(--bg-glass-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 48px;
  transition: var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.08);
}

/* NAVIGATION */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

nav.scrolled {
  background: rgba(3, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 16px 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo span {
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-gradient);
  color: #03060f !important;
  padding: 12px 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 0;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

/* HERO SECTION */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.85;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(3, 6, 15, 0.3) 0%, rgba(3, 6, 15, 0.85) 60%, var(--bg-base) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 28px;
}

.hero-content h1 em {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 80px rgba(212, 175, 55, 0.2);
}

.hero-content p {
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.8;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.hero-scroll:hover {
  color: var(--gold-primary);
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-gradient);
  animation: scrollAnim 2.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  80%, 100% { transform: translateY(200%); }
}

/* LOGOS SECTION (INFINITE MARQUEE) */
#logos {
  padding: 80px 0;
  background: rgba(3, 6, 15, 0.6);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

#logos p {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.logos-marquee {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  animation: marqueeLoop 50s linear infinite;
  will-change: transform;
}

.logos-marquee img {
  height: 40px;
  object-fit: contain;
  opacity: 0.8;
  border-radius: 6px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.logos-marquee img:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(212,175,55,0.4);
}
.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

@keyframes marqueeLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* STATS SECTION */
#stats {
  padding: 120px 80px;
  background: radial-gradient(circle at 80% 20%, rgba(10, 18, 36, 0.3) 0%, transparent 60%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.stat-card {
  padding: 48px 36px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: var(--text-primary);
  display: block;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* EL PROBLEMA SECTION */
#problema {
  padding: 140px 80px;
  background: radial-gradient(circle at 30% 20%, rgba(10, 18, 36, 0.25) 0%, transparent 60%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.prob-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(212, 175, 55, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.problem-card:hover .prob-icon {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.1);
}

.problem-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.problem-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* PROPUESTA (Tu Partner de Marca Blanca) */
#propuesta {
  padding: 140px 80px;
}

.prop-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: center;
}

.prop-left h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.prop-left h2 em {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.prop-intro-lead {
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.prop-cta-wrapper {
  margin-top: 36px;
}

.prop-right-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
  transform: translateY(-4px);
}

.benefit-card .icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
  background: rgba(212, 175, 55, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-fast);
}

.benefit-card:hover .icon {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.benefit-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-header h2 em {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-secondary);
}

/* CASES NARRATIVE GRID (REPLACING CHART) */
#mercado {
  background: radial-gradient(circle at 10% 50%, rgba(10, 18, 36, 0.3) 0%, transparent 60%);
  padding: 140px 80px;
}

.cases-narrative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.narrative-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  text-align: left;
  transition: var(--transition-smooth);
}

.narrative-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.case-story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.4;
  border-left: 2px solid var(--gold-primary);
  padding-left: 12px;
  margin-bottom: 4px;
}

.case-story p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.story-highlight {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 18px;
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--text-primary);
  margin-top: 8px;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.market-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  padding: 36px;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition-smooth);
}

.market-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.market-card .val {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-light);
  display: block;
}

.market-card .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 8px 0;
  display: block;
}

.market-card .desc {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* PROCESO SECTION (4 STEPS) */
#proceso {
  padding: 140px 80px;
  background: radial-gradient(circle at 90% 10%, rgba(10, 18, 36, 0.25) 0%, transparent 60%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 44px 32px;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.25);
  line-height: 1;
  transition: var(--transition-fast);
}

.process-step:hover .step-number {
  -webkit-text-stroke: 1px var(--gold-primary);
  color: var(--gold-primary);
  text-shadow: 0 0 20px var(--gold-glow);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ROSTER SECTION (VERTICAL SCROLL TRIGGERING HORIZONTAL PAN) */
#roster {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 18, 36, 0.2) 50%, transparent);
}

.filter-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: -30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 5;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.horizontal-scroll-container {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  cursor: grab;
}

.horizontal-scroll-container:active {
  cursor: grabbing;
}

.roster-track {
  display: flex;
  gap: 32px;
  padding: 20px 80px;
  width: max-content;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Talent Cards */
.athlete-card {
  width: 380px;
  background: var(--bg-surface-solid);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  transform-style: preserve-3d;
  transition: border-color var(--transition-fast), box-shadow var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.athlete-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.12);
}

.card-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.athlete-card:hover .card-img img {
  filter: grayscale(0);
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(3, 6, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.card-club {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

.card-detail-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.card-metric span {
  display: block;
}

.card-metric span:first-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-metric span:last-child {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.card-btn {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 8px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-btn:hover {
  background: var(--gold-primary);
  color: #03060f;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

/* MUSIC ENTERTAINMENT SECTION (MARQUEES) */
#artistas {
  padding: 100px 0;
  background: rgba(3, 6, 15, 0.5);
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.marquee-track-vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.marquee-row-scroll {
  display: flex;
  white-space: nowrap;
  gap: 60px;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.marquee-item-scrolled {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(212, 175, 55, 0.1));
  -webkit-background-clip: text;
  background-clip: text;
  transition: var(--transition-fast);
  cursor: pointer;
}

.marquee-item-scrolled:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  transform: scale(1.03);
}

.marquee-separator {
  color: rgba(212, 175, 55, 0.2);
  font-size: 24px;
  align-self: center;
}

/* STEPPER WIZARD FORM */
#acceso {
  background: radial-gradient(circle at 50% 90%, rgba(10, 18, 36, 0.4) 0%, transparent 60%);
}

.form-shell {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 48px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px var(--gold-primary);
}

.stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}

.stepper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
  transform: translateY(-50%);
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 2;
  transition: var(--transition-smooth);
}

.step-dot.active {
  border-color: var(--gold-primary);
  color: #03060f;
  background: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow-strong);
  transform: scale(1.1);
}

.step-dot.done {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
}

.step-panel {
  display: none;
  animation: stepFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.step-panel.show {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-q {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.step-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.opt-grid {
  display: grid;
  gap: 16px;
}

.opt {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.opt:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.03);
  transform: translateX(6px);
}

.opt.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
}

.opt .check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.opt:hover .check-circle {
  border-color: var(--gold-primary);
}

.opt.selected .check-circle {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
}

.opt.selected .check-circle::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #03060f;
}

.opt-label {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.opt-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* Form Inputs */
.form-input-container {
  position: relative;
  margin-bottom: 32px;
}

.form-input-premium {
  width: 100%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  transition: var(--transition-fast);
}

.form-input-premium:focus {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.05);
}

.form-input-premium::placeholder {
  color: var(--text-muted);
}

/* FOOTER */
footer {
  padding: 100px 80px 48px;
  background: #010307;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 64px;
  margin-bottom: 80px;
}

.footer-brand .logo {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-info {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.8;
}

.footer-col span {
  color: var(--gold-primary);
  margin: 0 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom p:last-child {
  font-family: monospace;
}

/* RESPONSIVE MEDIA QUERIES */
@media(max-width: 1100px) {
  section {
    padding: 100px 40px;
  }
  nav {
    padding: 24px 40px;
  }
  nav.scrolled {
    padding: 16px 40px;
  }
  .prop-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-narrative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  section {
    padding: 80px 24px;
  }
  nav {
    padding: 20px 24px;
  }
  nav.scrolled {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.8rem);
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-premium, .btn-outline-premium {
    width: 100%;
  }
  .glass-card {
    padding: 32px 24px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .cases-narrative-grid {
    grid-template-columns: 1fr;
  }
  .benefit-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .benefit-card .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .roster-track {
    padding: 20px 24px;
  }
  .athlete-card {
    width: 320px;
  }
  .form-shell {
    padding: 0;
  }
  .opt {
    padding: 20px;
  }
  .footer-info {
    gap: 40px;
  }
}

/* SCROLL REVEAL CLASESS (FOR PHYSICAL ACCELERATION REVEAL) */
.reveal-init {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* -- NUEVAS ANIMACIONES Y FONDOS -- */
.fabric-wave-bg {
  background: radial-gradient(circle at 50% 50%, rgba(20,20,30,1) 0%, rgba(5,5,10,1) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.015" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.04"/></svg>');
  background-size: cover;
  animation: wavePulse 20s infinite alternate ease-in-out;
}

@keyframes wavePulse {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.gradient-bg-1 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, #03060f 40%, rgba(0, 255, 135, 0.03) 100%);
}

.gradient-bg-2 {
  background: linear-gradient(225deg, rgba(0, 255, 135, 0.03) 0%, #03060f 50%, rgba(212, 175, 55, 0.03) 100%);
}

/* -- SPOTS GRID -- */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.spot-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.spot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.spot-video-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spot-video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.spot-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.spot-metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.spot-views {
  color: #D4AF37;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.spot-platform {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spot-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.spot-insight {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.spot-btn {
  text-align: center;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #D4AF37;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.spot-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* -- ROSTER HOVER EFFECT -- */
.athlete-card .card-img {
  position: relative;
  overflow: hidden;
}

.athlete-card .card-img .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}

.athlete-card:hover .card-img .img-hover {
  opacity: 1;
}

.athlete-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.athlete-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.athlete-socials a:hover {
  color: #D4AF37;
}
