/* ============================================
   GOLD TICKETS - Premium Landing Page
   Archetype: Glassmorphism Modern + Passion
   ============================================ */

/* CSS Variables */
:root {
  --color-gold: #D4AF37;
  --color-gold-light: #F4D06F;
  --color-gold-dark: #AA8C2C;
  --color-gold-bright: #FFD700;
  --color-dark: #0A0A0F;
  --color-dark-light: #12121A;
  --color-dark-card: #1A1A24;
  --color-text: #FFFFFF;
  --color-text-muted: #A0A0B0;
  --color-border: rgba(212, 175, 55, 0.3);
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-hover: rgba(255, 255, 255, 0.08);
  --color-accent: rgba(212, 175, 55, 0.1);
  --gradient-gold: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  --gradient-gold-bright: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 100%);
  --gradient-fire: linear-gradient(135deg, #FF6B35 0%, #D4AF37 50%, #FFD700 100%);
  --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-glow-strong: 0 0 60px rgba(212, 175, 55, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-dark);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.splash-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Splash Screen */
.splash {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: splashFade 0.6s ease-out 2.5s forwards;
}

.splash-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.splash-line {
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  animation: splashLine 1.2s ease-out 0.3s forwards;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes splashLine {
  to { width: 200px; }
}

@keyframes splashFade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text {
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-sede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
}

.btn-glow {
  animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3); }
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--color-glass);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-sede {
  background: var(--color-glass);
  color: var(--color-gold);
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 8px;
}

.btn-sede:hover {
  background: var(--gradient-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transform: translateY(-100%);
  animation: navSlideDown 0.8s ease-out 3s forwards;
}

@keyframes navSlideDown {
  to { transform: translateY(0); }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--color-dark) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
}

.nav-cta::after {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  animation: imageZoom 20s ease-in-out infinite;
}

@keyframes imageZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--color-dark) 80%);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.95) 100%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem 3rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.3);
}

.hero-trust {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 4;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.8rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Fieber Banner */
.fieber-banner {
  background: var(--gradient-fire);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.fieber-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.fieber-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.fieber-emoji {
  font-size: 2rem;
  animation: fire 0.5s ease-in-out infinite;
}

@keyframes fire {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(-10deg); }
}

.fieber-text {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 600;
}

.fieber-text strong {
  color: var(--color-dark);
  text-decoration: underline;
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Beneficios Section */
.beneficios {
  background: var(--gradient-dark);
  position: relative;
}

.beneficios::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.beneficio-card {
  background: var(--color-glass);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.beneficio-card:hover::before {
  transform: scaleX(1);
}

.beneficio-card:hover {
  background: var(--color-glass-hover);
  border-color: var(--color-gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.beneficio-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.glow-icon {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.beneficio-card:hover .beneficio-icon {
  background: var(--gradient-gold);
  color: var(--color-dark);
  transform: scale(1.1) rotate(5deg);
}

.beneficio-icon svg {
  width: 32px;
  height: 32px;
}

.beneficio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.beneficio-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sedes Section */
.sedes {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.sedes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sedes-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.sedes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-dark) 0%, rgba(10, 10, 15, 0.9) 100%);
  z-index: 1;
}

.sedes-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sede-header {
  position: relative;
  margin-bottom: 1rem;
}

.sede-flag {
  font-size: 4rem;
  display: block;
}

.sede-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.sede-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-gold);
  font-weight: 700;
}

.sede-cities {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sede-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.sede-stat {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.sede-stat strong {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Emocion Section */
.emocion {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.emocion-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.emocion-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.emocion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-dark) 0%, rgba(10, 10, 15, 0.8) 50%, rgba(10, 10, 15, 0.95) 100%);
  z-index: 1;
}

.emocion-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.emocion-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.emocion-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.emocion-intro {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.emocion-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.emocion-list li {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.emocion-list .check {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.emocion-list strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.emocion-list span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Fans Banner */
.fans-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.fans-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fans-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.fans-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, var(--color-dark) 100%);
  z-index: 1;
}

.fans-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fans-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.fans-content p {
  font-size: 1.3rem;
  color: var(--color-text-muted);
}

/* Testimonios Section */
.testimonios {
  background: var(--gradient-dark);
  padding: 6rem 0;
}

.testimonio-visual {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.testimonio-image-large {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonio-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.testimonio-visual:hover .testimonio-main-image {
  transform: scale(1.05);
}

.testimonio-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonio-visual:hover .testimonio-image-glow {
  opacity: 1;
}

.testimonio-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
}

.testimonio-author {
  text-align: center;
  margin-bottom: 1rem;
}

.testimonio-author .stars {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.testimonio-author h4 {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.testimonio-location {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.testimonio-quote {
  text-align: center;
  color: var(--color-text);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}

/* Galería Pasión */
.galeria-pasion {
  background: var(--color-dark);
  padding: 6rem 0;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.galeria-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.galeria-item.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

.galeria-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover .galeria-image {
  transform: scale(1.1);
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Sedes con imágenes de fondo */
.sede-card {
  background: var(--color-glass);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
}

.sede-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.sede-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sede-card:hover .sede-bg-image {
  transform: scale(1.1);
}

.sede-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
}

.sede-content {
  padding: 2rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 15, 0.95) 100%);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  animation: trophy 2s ease-in-out infinite;
}

@keyframes trophy {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.cta-urgency {
  margin-bottom: 2rem;
}

.urgency-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid #FF6B35;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FF6B35;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
}

.cta-guarantee {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Contacto Section */
.contacto {
  background: var(--color-dark);
}

.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contacto-info {
  padding-top: 2rem;
}

.contacto-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.contacto-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contacto-info > p {
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.contacto-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacto-features .feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-muted);
}

.contacto-features svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contacto-form {
  background: var(--color-glass);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* Footer */
footer {
  background: var(--color-dark-light);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 350px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
  transition: fill 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-link:hover svg {
  fill: var(--color-dark);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ============================================
   ANIMATION CLASSES
   ============================================ */

.reveal-text,
.reveal-card,
.reveal-image {
  opacity: 0;
}

.reveal-text {
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-card {
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-image {
  transform: scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-text.revealed,
.reveal-card.revealed,
.reveal-image.revealed {
  opacity: 1;
  transform: none;
}

/* Tilt Card Effect */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Parallax Card */
.parallax-card {
  will-change: transform;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .contacto-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats {
    gap: 2rem;
    padding: 1.5rem 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    gap: 1.5rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

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

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

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .galeria-item.featured {
    grid-row: auto;
    aspect-ratio: 3/4;
  }

  .testimonio-visual {
    max-width: 400px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  section {
    padding: 4rem 0;
  }

  .contacto-form {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .beneficio-card,
  .testimonio-card {
    padding: 1.5rem;
  }

  .sede-card {
    padding: 2rem 1.5rem;
  }

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

  .testimonio-author h4 {
    font-size: 1.1rem;
  }

  .testimonio-quote {
    font-size: 0.9rem;
  }

  .fieber-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-notification {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark-card);
  border: 1px solid var(--color-gold);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
  z-index: 9999;
  transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90%;
  width: auto;
}

.toast-notification.visible {
  top: 20px;
}

.toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-content strong {
  color: var(--color-gold-light);
  font-size: 0.95rem;
  font-weight: 600;
}

.toast-content span {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--color-gold);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 6px rgba(37, 211, 102, 0.15);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
  fill: currentColor;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .toast-notification {
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0.9rem 1.2rem;
  }

  .toast-content strong {
    font-size: 0.9rem;
  }

  .toast-content span {
    font-size: 0.8rem;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================
   SAFETY NETS
   ============================================ */

/* Legal Modals */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--color-dark-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.legal-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.legal-modal-content {
  position: relative;
}

.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
  z-index: 10;
}

.legal-modal-close:hover {
  color: var(--color-gold);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.legal-content > p:first-of-type {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-content h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--color-text);
}

/* Custom scrollbar for legal modal */
.legal-modal::-webkit-scrollbar {
  width: 8px;
}

.legal-modal::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.legal-modal::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 4px;
}

.legal-modal::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

/* Mobile adjustments for legal modal */
@media (max-width: 768px) {
  .legal-modal {
    padding: 1.5rem;
    max-width: 90%;
    max-height: 90vh;
  }

  .legal-content h3 {
    font-size: 1.5rem;
  }

  .legal-content h4 {
    font-size: 1rem;
  }
}

.reveal-text.revealed,
.reveal-card.revealed,
.reveal-image.revealed {
  opacity: 1 !important;
  transform: none !important;
}

noscript {
  display: block;
  padding: 2rem;
  text-align: center;
  color: var(--color-gold);
  background: var(--color-dark-card);
}
