/* =========================================================================
   SISTEMA DE ESTILOS PREMIUM - CONEXIÓN Y NEGOCIOS NETWORKING
   ========================================================================= */

:root {
  /* Paleta de colores VIP (Modificada para fondo blanco) */
  --bg-dark: #ffffff;
  --bg-card: #ffffff;
  --bg-glass: rgba(245, 245, 245, 0.8);
  --gold-primary: #1874c1;
  --gold-glow: #1f8cf3;
  --gold-dark: #12558c;
  --emerald-primary: #1874c1;
  --emerald-hover: #12558c;
  --text-main: #111827;
  --text-muted: #4b5563;
  --text-gold: #1874c1;
  --border-glass: rgba(24, 116, 193, 0.2);
  --border-glass-focus: rgba(24, 116, 193, 0.5);
  
  /* Fuentes */
  --font-sans: 'League Spartan', sans-serif;
  --font-serif: 'League Spartan', serif;
  
  /* Transiciones */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}



/* 1. RESET Y AJUSTES GENERALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Efectos de fondo ambiental */
.glass-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

.ambient-glow {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 176, 116, 0.02) 50%, transparent 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-left {
  position: fixed;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 176, 116, 0.04) 0%, rgba(212, 175, 55, 0.01) 50%, transparent 100%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* 2. HEADER Y NAVBAR */
.header {
  width: 100vw;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: #000000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--gold-primary);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-main);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.event-date-badge {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-glass);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-glow);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 3. CONTENEDORES PRINCIPALES (HERO Y CONTENIDO) */
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .header {
    padding: 1.5rem 1rem;
  }
  .nav-actions {
    display: none; /* Ocultar badges extra en mobile para limpiar espacio */
  }
}

/* Textos e informaciones del Hero */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag {
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Ficha Técnica de Detalles Rápidos */
.event-quick-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 968px) {
  .event-quick-details {
    justify-content: center;
  }
}

.quick-detail-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.quick-detail-item:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
}

.quick-detail-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.quick-detail-text p:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.quick-detail-text p:last-child {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

/* 4. TARJETA DE COMPRA DIRECTA (TICKET CARD) */
.ticket-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: var(--transition-smooth);
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--emerald-primary));
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.ticket-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ticket-phase {
  font-size: 0.8rem;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.ticket-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.ticket-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.ticket-price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-primary);
}

.ticket-price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
}

.ticket-price-original {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

/* Botones Premium */
.btn-primary {
  width: 100%;
  background: var(--emerald-primary);
  color: #ffffff;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--emerald-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-emerald {
  background: var(--emerald-primary);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-emerald:hover {
  background: var(--emerald-hover);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

/* Lista de Beneficios en Ticket */
.ticket-features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.ticket-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.ticket-feature-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

/* 5. SECCIÓN DE BENEFICIOS / QUÉ VAS A VIVIR */
.section-title-wrapper {
  text-align: center;
  margin: 6rem 0 3rem;
}

.section-tag {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-top: 0.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.benefit-card {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-focus);
  background: rgba(25, 28, 38, 0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.benefit-icon-box {
  width: 55px;
  height: 55px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-box {
  background: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text-main);
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 6. MODAL DE REGISTRO VIP */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.modal-container {
  background: #ffffff;
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 50px rgba(212, 175, 55, 0.08);
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-glow);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Selector de Cantidad */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  width: fit-content;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.2rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.qty-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

.qty-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  min-width: 20px;
  text-align: center;
}

/* 7. PANTALLA DE ÉXITO (VIP BOARDING PASS TICKET) */
.success-card {
  max-width: 680px;
  margin: 2rem auto;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  position: relative;
}

.success-badge {
  width: 70px;
  height: 70px;
  background: rgba(0, 176, 116, 0.1);
  border: 2px solid var(--emerald-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--emerald-primary);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 15px rgba(0, 176, 116, 0.2));
}

.success-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.success-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Boleto Virtual Boarding Pass */
.boarding-pass {
  background: #ffffff;
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  margin-bottom: 2.5rem;
  text-align: left;
  position: relative;
}

/* Círculos recortados estilo Ticket clásico */
.boarding-pass::before, .boarding-pass::after {
  content: '';
  position: absolute;
  top: 55%;
  width: 24px;
  height: 24px;
  background: var(--bg-dark);
  border-radius: 50%;
  z-index: 2;
  border: 2px solid var(--gold-primary);
}

.boarding-pass::before {
  left: -14px;
}

.boarding-pass::after {
  right: -14px;
}

.pass-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 1.5rem;
  border-bottom: 1px dashed rgba(196, 154, 74, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pass-header-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.pass-header-logo span {
  color: var(--gold-primary);
}

.pass-folio {
  font-size: 0.85rem;
  color: var(--gold-glow);
  font-weight: 700;
  letter-spacing: 1px;
}

.pass-body {
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .pass-body {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.pass-field-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.pass-field-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.pass-field-value.gold {
  color: var(--gold-glow);
}

.pass-footer {
  grid-column: span 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .pass-footer {
    flex-direction: column;
    text-align: center;
    grid-column: span 1;
  }
}

.pass-barcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
}

.pass-barcode img {
  width: 90px;
  height: 90px;
}

/* 8. FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: inline-block;
}

.footer-logo span {
  color: var(--gold-primary);
}

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

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.footer-social-link {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* 9. ANIMACIONES */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 10. ESTILOS DE CARGA */
.loader-spinner {
  border: 3px solid rgba(255, 255, 255, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border-left-color: #000;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Botón flotante para movil */
.mobile-sticky-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  animation: slideUp 0.6s ease;
}

@media (max-width: 768px) {
  .mobile-sticky-btn {
    display: block;
  }
}

/* 11. ADICIONALES PREMIUM */
.hover-scale {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-scale:hover {
  transform: scale(1.05);
}

