:root {
  --navy-brand: #0F2B5B;      
  --blue-bright: #00A8FF;     
  --bg-dark: #060911;
  --text-white: #FFFFFF;
  --text-sub: #E2E8F0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-button: 12px;      
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR DUAL */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.navbar.scrolled {
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 3.5rem;
  transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
  padding: 1.2rem 3.5rem;
}

/* LOGO MÁS GRANDE Y FILTRO BLANCO ABSOLUTO */
.logo-img {
  height: 75px; /* Tamaño ampliado en escritorio */
  width: auto;
  object-fit: contain;
  display: block;
  /* Convierte la imagen completamente a blanco manteniendo la sombra */
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem; /* Menú más legible */
  transition: var(--transition);
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--blue-bright);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--blue-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-cta {
  background: linear-gradient(135deg, var(--navy-brand), #1B4079);
  color: #FFF;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-cta:hover {
  background: #FFF;
  color: var(--navy-brand);
  border-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* HAMBURGER MÓVIL */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 32px;
  height: 2.5px;
  background: #FFF;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider, .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(1.3) contrast(1.1) brightness(0.95);
  transition: opacity 1.4s ease-in-out, transform 1.4s ease-in-out;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* GRADIENTE LATERAL */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 9, 17, 0.92) 0%,
    rgba(6, 9, 17, 0.7) 45%,
    rgba(6, 9, 17, 0.15) 82%,
    rgba(6, 9, 17, 0.3) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  margin-top: 3.5rem;
}

.hero-info-wrapper {
  position: relative;
  max-width: 880px;
  min-height: 380px;
}

.hero-info {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-info.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.tagline {
  display: inline-block;
  font-size: 0.95rem; /* Tagline más grande */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-bright);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-info h1 {
  font-family: var(--font-serif);
  font-size: 5.2rem; /* Título masivo e imponente en computador */
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 1.6rem;
  color: #FFFFFF;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85);
  letter-spacing: -1px;
}

.hero-info p {
  font-size: 1.35rem; /* Texto descriptivo más amplio */
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

/* BOTONES XL SEMI-REDONDEADOS */
.hero-btns {
  display: flex;
  gap: 1.4rem;
}

.btn-primary {
  background: #FFFFFF;
  color: var(--navy-brand);
  padding: 1.2rem 2.8rem; /* Tamaño de botón más imponente */
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  background: var(--blue-bright);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 168, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  padding: 1.2rem 2.8rem;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

/* INDICADORES LATERALES */
.slider-dots {
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.dot {
  width: 7px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--blue-bright);
  height: 42px;
  box-shadow: 0 0 12px var(--blue-bright);
}

/* RESPONSIVO PARA MÓVILES */
@media (max-width: 992px) {
  .hero-info h1 {
    font-size: 3.8rem;
  }
  .nav-container {
    padding: 1.4rem 2rem;
  }
  .hero-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 1.2rem 1.5rem;
  }

  /* Logo más grande en celular con filtro blanco */
  .logo-img {
    height: 58px;
  }

  .btn-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(6, 9, 17, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(6, 9, 17, 0.75) 0%,
      rgba(6, 9, 17, 0.92) 100%
    );
  }

  .hero-container {
    padding: 0 1.5rem;
  }

  /* Título y texto más grandes e impactantes en móvil */
  .hero-info h1 {
    font-size: 3.1rem;
    line-height: 1.1;
  }

  .hero-info p {
    font-size: 1.15rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1.15rem 2rem;
    font-size: 1rem;
  }

  .slider-dots {
    right: 1.2rem;
  }
}





















:root {
  --bg-light-surface: #F8FAFC;
  --bg-card-glass: rgba(255, 255, 255, 0.85);
  --text-dark-main: #0F172A;
  --text-dark-sub: #475569;
  --accent-gold: #C5A059;      /* Dorado sutil editorial */
  --accent-blue: #0088FF;      /* Azul vibrante internacional */
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

.about-light-section {
  position: relative;
  background-color: var(--bg-light-surface);
  padding: 11rem 0;
  overflow: hidden;
  color: var(--text-dark-main);
}

/* DECORACIÓN EN VUELO (AVIÓN Y ESTRELA) */
.plane-flight-container {
  position: absolute;
  top: 15%;
  left: -100px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.flying-plane {
  width: 55px;
  height: 55px;
  stroke: var(--accent-blue);
  transform: rotate(25deg);
  filter: drop-shadow(0 10px 15px rgba(0, 136, 255, 0.3));
}

.plane-trail {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 136, 255, 0.4), transparent);
  margin-left: -10px;
}

.about-light-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 3.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* TEXTOS EDITORIALES CLAROS */
.about-light-tagline {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1.2rem;
}

.about-light-title {
  font-family: var(--font-editorial);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--text-dark-main);
  margin-bottom: 2rem;
}

.about-light-lead {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark-main);
  margin-bottom: 1.4rem;
}

.about-light-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-dark-sub);
  margin-bottom: 3rem;
}

/* MÉTRICAS */
.about-light-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.stat-num {
  font-family: var(--font-editorial);
  font-size: 3rem;
  font-weight: 600;
  color: var(--text-dark-main);
  line-height: 1;
  display: block;
}

.stat-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dark-sub);
  margin-top: 0.4rem;
  display: block;
}

/* MARCO VISUAL DERECHO */
.about-light-visual {
  position: relative;
  width: 100%;
}

.curtain-mask {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  background-color: #E2E8F0;
}

.curtain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.02);
  transform: scale(1.15);
}

/* BADGE FLOTANTE CON BAMBOLEO/AGITACIÓN (LUGGAGE) */
.floating-badge {
  position: absolute;
  top: -25px;
  right: -20px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.1rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
}

.badge-icon {
  width: 32px;
  height: 32px;
  stroke: var(--accent-gold);
}

.floating-badge strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark-main);
}

.floating-badge span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-dark-sub);
}

/* CARD INFERIOR EN CRISTAL */
.glass-light-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--bg-card-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.8rem 2.4rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.card-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.3rem;
}

.card-heading {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark-main);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .about-light-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 0 2rem;
  }
  .about-light-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .about-light-section {
    padding: 6rem 0;
  }
  .about-light-title {
    font-size: 2.5rem;
  }
  .curtain-mask {
    height: 400px;
  }
  .floating-badge {
    top: 10px;
    right: 10px;
  }
  .glass-light-card {
    left: 10px;
    bottom: -20px;
  }
}









































:root {
  --bg-dark-surface: #060911;
  --card-bg-glass: rgba(15, 23, 42, 0.7);
  --accent-gold: #C5A059;
  --accent-cyan: #00A8FF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);
}

.mv-hybrid-section {
  position: relative;
  background-color: var(--bg-dark-surface);
  padding: 9rem 2rem;
  overflow: hidden; /* Garantiza cero desbordamientos o barras horizondales */
  color: var(--text-primary);
}

/* GLOWS ATMOSFÉRICOS */
.mv-orb {
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 550px;
  max-height: 550px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  pointer-events: none;
}
.orb-gold { background: var(--accent-gold); top: -10%; left: -10%; }
.orb-cyan { background: var(--accent-cyan); bottom: -10%; right: -10%; }

.mv-hybrid-container {
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* CABECERA */
.mv-header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.mv-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1rem;
}

.mv-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.mv-main-title em {
  color: var(--accent-gold);
  font-style: italic;
}

/* GRID RESPONSIVE: 2 COLUMNAS EN PC, 1 EN MÓVIL */
.mv-hybrid-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem;
  perspective: 1000px; /* Sensación de profundidad 3D suave */
}

/* TARJETAS GLASS */
.mv-card {
  background: var(--card-bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  will-change: transform, opacity;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.mv-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 168, 255, 0.1);
}

.card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
}

.card-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tag-cyan { color: var(--accent-cyan); }
.tag-gold { color: var(--accent-gold); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.card-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.cyan-glow .dot { background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }
.gold-glow .dot { background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); }

/* ADAPTACIÓN MÓVIL */
@media (max-width: 900px) {
  .mv-hybrid-section {
    padding: 5rem 1.2rem;
  }

  .mv-hybrid-grid {
    grid-template-columns: 1fr; /* Pasa a 1 columna automáticamente */
    gap: 2rem;
  }

  .mv-card {
    padding: 2.2rem;
    border-radius: 20px;
  }

  .card-title {
    font-size: 2rem;
  }
}





























:root {
  --section-bg: #070A11;
  --accent-cyan: #00A8FF;
  --accent-gold: #C5A059;
  --text-white: #FFFFFF;
}

.destinos-epic-section {
  background-color: var(--section-bg);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  color: var(--text-white);
}

.destinos-epic-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ENCABEZADO */
.destinos-epic-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.epic-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 0.8rem;
}

.epic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 400;
  color: var(--text-white);
}

/* GRID DE 4 COLUMNAS */
.destinos-epic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  perspective: 1000px;
  margin-bottom: 4rem;
}

/* TARJETA INTEGRADA EN LA IMAGEN */
.epic-card {
  position: relative;
  height: 480px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.epic-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* DEGRADADO PROFUNDO DENTRO DE LA TARJETA */
.epic-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg, 
    rgba(7, 10, 17, 0.2) 0%, 
    rgba(7, 10, 17, 0.4) 40%, 
    rgba(7, 10, 17, 0.95) 100%
  );
  transition: opacity 0.4s ease;
}

/* ETIQUETA FLOTANTE GLASS */
.epic-card-glass-tag {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* TEXTO DENTRO DE LA IMAGEN */
.epic-card-content {
  position: relative;
  z-index: 3;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.epic-location {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 0.2rem;
}

.epic-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 1rem;
}

.epic-card-arrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.epic-card-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* HOVER EFFECTS */
.epic-card:hover {
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 25px 50px rgba(0, 168, 255, 0.2);
}

.epic-card:hover .epic-card-bg {
  transform: scale(1.1);
}

.epic-card:hover .epic-card-content {
  transform: translateY(0);
}

.epic-card:hover .epic-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.epic-card:hover .epic-card-arrow svg {
  transform: translateX(5px);
}

/* BOTÓN INFERIOR GLOW */
.destinos-epic-footer {
  text-align: center;
}

.btn-catalogo-glow {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem 3rem;
  border-radius: 60px;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-icon svg {
  width: 16px;
  height: 16px;
}

.btn-catalogo-glow:hover {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-catalogo-glow:hover .btn-icon {
  background: #000000;
  color: #FFFFFF;
  transform: translateX(4px);
}

/* RESPONSIVE MÓVIL Y TABLET */
@media (max-width: 1100px) {
  .destinos-epic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .destinos-epic-section {
    padding: 5rem 1.2rem;
  }

  .destinos-epic-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .epic-card {
    height: 420px;
  }

  /* En móviles se muestra la flecha siempre activa para mayor usabilidad */
  .epic-card-content {
    transform: translateY(0);
  }

  .epic-card-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-catalogo-glow {
    width: 100%;
    justify-content: center;
    padding: 1.1rem 1.8rem;
  }
}















:root {
  --bg-light: #F8FAFC;
  --card-bg-light: #FFFFFF;
  --accent-gold: #F59E0B;
  --accent-blue: #0284C7;
  --text-dark-title: #0F172A;
  --text-dark-body: #475569;
  --card-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
  --hover-glow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.testimonios-light-section {
  background-color: var(--bg-light);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: var(--text-dark-title);
}

/* ORBES DE FONDO SOFT */
.light-orb {
  position: absolute;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 { background: rgba(2, 132, 199, 0.12); top: -10%; left: -5%; }
.orb-2 { background: rgba(245, 158, 11, 0.12); bottom: -10%; right: -5%; }

/* ENCABEZADO */
.testimonios-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonios-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--accent-blue);
  display: block;
  margin-bottom: 0.8rem;
}

.testimonios-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--text-dark-title);
}

/* MARQUEE WRAPPER Y DIFUMINADO EN LOS EXTREMOS */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  z-index: 2;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  max-width: 180px;
  z-index: 5;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg-light) 0%, rgba(248, 250, 252, 0) 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-light) 0%, rgba(248, 250, 252, 0) 100%);
}

/* TRACK CONTINUO SIN FRENO EN HOVER/TOUCH */
.marquee-track {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  animation: marquee-infinite 30s linear infinite !important;
  will-change: transform;
}

/* SE ASEGURA DE QUE NO SE DETENGA BAJO NINGUNA INTERACCIÓN */
.marquee-wrapper:hover .marquee-track,
.marquee-track:hover,
.marquee-track:active {
  animation-play-state: running !important;
}

@keyframes marquee-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* TARJETAS REDONDEADAS PRO */
.testimonio-card-light {
  width: 360px;
  background: var(--card-bg-light);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px; /* BORDES SÚPER REDONDEADOS Y ELEGANTES */
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease;
  flex-shrink: 0;
}

/* ILUMINACIÓN Y ELEVACIÓN EN HOVER MIENTRAS SIGUE MOVIÉNDOSE */
.testimonio-card-light:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: var(--hover-glow);
}

/* AVATAR CIRCULAR CON BORDE SUTIL */
.avatar-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
  margin-bottom: 1.2rem;
}

.testimonio-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
}

/* ESTRELLAS DORADAS */
.testimonio-stars {
  color: var(--accent-gold);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* MENSAJE */
.testimonio-msg {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark-body);
  margin-bottom: 1.6rem;
  font-style: italic;
}

/* AUTOR */
.testimonio-author {
  margin-top: auto;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark-title);
  margin-bottom: 0.2rem;
}

.author-trip {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 768px) {
  .testimonios-light-section {
    padding: 5rem 0;
  }

  .testimonio-card-light {
    width: 295px;
    border-radius: 26px;
    padding: 1.8rem 1.4rem;
  }

  .avatar-ring {
    width: 72px;
    height: 72px;
  }

  .testimonio-msg {
    font-size: 0.9rem;
  }
}






















:root {
  --cyan-electric: #00F0FF;
  --blue-vibrant: #0284C7;
  --blue-deep: #0369A1;
  --text-pure: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.82);
}

.counter-brutal-section {
  position: relative;
  padding: 5.5rem 1.5rem;
  background: #011627;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* GRADIENTE ANIMADO DE FONDO */
.mesh-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 240, 255, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(2, 132, 199, 0.35) 0%, transparent 45%),
    linear-gradient(135deg, #0284C7 0%, #004E89 50%, #001F3F 100%);
  z-index: 1;
}

.light-beam {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
}
.beam-1 { top: -200px; left: 10%; background: var(--cyan-electric); opacity: 0.3; }
.beam-2 { bottom: -200px; right: 10%; background: #3B82F6; opacity: 0.35; }

.brutal-container {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brutal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

/* TARJETA GLASS ULTRA PRO */
.brutal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.brutal-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.2), 
              0 0 20px rgba(2, 132, 199, 0.3);
}

.brutal-card:hover .card-glow {
  opacity: 1;
}

/* ICONOS CON EFECTO DE PORTAL GIRATORIO Y PULSANTE */
.icon-portal {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: floatContinuous 4.5s ease-in-out infinite;
}

.portal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(0, 240, 255, 0.6);
  animation: spinRing 12s linear infinite;
}

.portal-icon {
  width: 32px;
  height: 32px;
  stroke: var(--cyan-electric);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  z-index: 2;
  transition: transform 0.3s ease;
}

.brutal-card:hover .portal-icon {
  transform: scale(1.18) rotate(-5deg);
}

/* ANIMACIONES DEL PORTAL */
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatContinuous {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.float-delay-1 { animation-delay: 0s; }
.float-delay-2 { animation-delay: 0.9s; }
.float-delay-3 { animation-delay: 1.8s; }
.float-delay-4 { animation-delay: 2.7s; }

/* NÚMEROS IMPACTANTES CON GRADIENTE FLUIDO */
.card-content {
  position: relative;
  z-index: 2;
}

.metric-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 30%, var(--cyan-electric) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.metric-suffix {
  font-size: 2.6rem;
  margin-left: 2px;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 0.6rem;
}

/* ADAPTACIÓN MÓVIL */
@media (max-width: 1100px) {
  .brutal-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 600px) {
  .counter-brutal-section { padding: 4rem 1rem; }
  .brutal-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .metric-number { font-size: 3.2rem; }
}











/* Centra y sube las tarjetas dentro de la franja azul */
.counter-brutal-section {
  padding-top: 20px !important;    /* Reduce el espacio vacío de arriba */
  padding-bottom: 40px !important; /* Mantiene margen abajo */
  display: flex !important;
  align-items: center !important;  /* Alinea las tarjetas al centro vertical */
}

/* Sube las 4 tarjetas hacia arriba */
.brutal-grid {
  transform: translateY(-40px);   /* Sube todo el grupo de tarjetas */
}






/* Franja más delgada y centrada */
.counter-brutal-section {
  min-height: auto !important; /* Quita cualquier altura forzada */
  padding: 40px 0;             /* Controla qué tan gruesa es la franja (puedes bajar a 30px si la quieres aún más delgada) */
  display: flex;
  align-items: center;
  justify-content: center;
}

.brutal-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Opcional: Hace las tarjetas más compactas verticalmente */
.brutal-card {
  padding: 25px 20px; 
}


























:root {
  --bg-section-light: #F8FAFC;
  --ticket-bg-white: #FFFFFF;
  --text-dark-main: #0F172A;
  --text-dark-sub: #475569;
  --text-muted-light: #94A3B8;
  --accent-blue: #0284C7;
  --accent-cyan: #00A8FF;
  --accent-wa: #25D366;
  --accent-wa-hover: #1EBD5A;
  --accent-gold: #D97706;
  --border-light-soft: #E2E8F0;
  --input-bg-light: #F1F5F9;
  --ticket-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08), 
                  0 0 0 1px rgba(15, 23, 42, 0.05);
}

.contacto-light-section {
  position: relative;
  background-color: var(--bg-section-light);
  padding: 6rem 1.5rem;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark-main);
}

/* GLOWS AMBIENTALES */
.light-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.6;
}
.glow-blue { top: -100px; left: -100px; background: rgba(2, 132, 199, 0.12); }
.glow-amber { bottom: -100px; right: -100px; background: rgba(245, 158, 11, 0.1); }

.contacto-container {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ================= COLUMNA IZQUIERDA ================= */
.contacto-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-blue);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-wa);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-wa);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.95); opacity: 1; }
}

.info-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark-main);
}

.info-description {
  font-size: 1.05rem;
  color: var(--text-dark-sub);
  line-height: 1.6;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--ticket-bg-white);
  border: 1px solid var(--border-light-soft);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  border-color: rgba(2, 132, 199, 0.4);
  transform: translateX(6px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.08);
}

.highlight-wa {
  background: rgba(37, 211, 102, 0.04);
  border-color: rgba(37, 211, 102, 0.25);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.wa-icon-bg {
  background: rgba(37, 211, 102, 0.12);
  color: var(--accent-wa);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
  margin-bottom: 0.2rem;
}

.card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark-main);
}

.status-widget {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.08), rgba(37, 211, 102, 0.05));
  border: 1px dashed rgba(2, 132, 199, 0.3);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.route-code {
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.status-pill {
  background: var(--accent-blue);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  letter-spacing: 1px;
}

.widget-text {
  font-size: 0.85rem;
  color: var(--text-dark-sub);
}

/* ================= COLUMNA DERECHA: BOARDING PASS CLARO ================= */
.contacto-ticket-col {
  position: relative;
}

.boarding-pass-light {
  background: var(--ticket-bg-white);
  border: 1px solid var(--border-light-soft);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr auto 290px;
  box-shadow: var(--ticket-shadow);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.boarding-pass-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12);
}

/* TICKET MAIN */
.ticket-main {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light-soft);
  padding-bottom: 1rem;
}

.airline-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  color: var(--accent-blue);
}

.brand-plane {
  width: 20px;
  height: 20px;
}

.ticket-type {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(217, 119, 6, 0.25);
}

/* RUTA ANIMADA */
.ticket-flight-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--input-bg-light);
  padding: 1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--border-light-soft);
}

.flight-node {
  display: flex;
  flex-direction: column;
}

.city-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark-main);
}

.city-name {
  font-size: 0.75rem;
  color: var(--text-dark-sub);
  text-transform: uppercase;
  margin-top: 0.2rem;
  font-weight: 600;
}

.flight-route-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  position: relative;
}

.flight-route-line::before {
  content: '';
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 2px;
  border-top: 2px dashed rgba(2, 132, 199, 0.35);
}

.line-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  z-index: 2;
}

.animated-plane {
  color: var(--accent-blue);
  font-size: 1.2rem;
  z-index: 2;
  transform: rotate(90deg);
}

/* INPUTS DEL FORMULARIO */
.ticket-grid-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.full-width {
  grid-column: span 2;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-dark-sub);
}

.input-group input,
.input-group select {
  background: var(--input-bg-light);
  border: 1px solid var(--border-light-soft);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--text-dark-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--accent-blue);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

/* DIVISOR CON CORTE DE MUESCAS DE CORTE TICKET */
.ticket-divider {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 20px;
}

.notch {
  width: 24px;
  height: 24px;
  background-color: var(--bg-section-light);
  border-radius: 50%;
  position: absolute;
  z-index: 5;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
}

.notch-top { top: -12px; }
.notch-bottom { bottom: -12px; }

.dashed-line {
  height: 100%;
  border-left: 2px dashed var(--border-light-soft);
}

/* STUB DEL TICKET (DERECHA) */
.ticket-stub {
  background: #FAFAFA;
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  border-left: 1px solid var(--border-light-soft);
}

.stub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dark-sub);
}

.seat-badge {
  color: var(--accent-blue);
}

.stub-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stub-item {
  display: flex;
  flex-direction: column;
}

.stub-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-muted-light);
  font-weight: 700;
}

.stub-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark-main);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gold-text { color: var(--accent-gold); }

/* CÓDIGO DE BARRAS */
.barcode-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #FFFFFF;
  padding: 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border-light-soft);
}

.barcode-lines {
  display: flex;
  gap: 3px;
  height: 38px;
  align-items: center;
}

.barcode-lines span {
  background-color: var(--text-dark-main);
  height: 100%;
  border-radius: 1px;
}

.barcode-lines span:nth-child(3n) { width: 4px; }
.barcode-lines span:nth-child(2n) { width: 1px; }
.barcode-lines span:nth-child(5n) { width: 3px; }

.barcode-num {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-dark-sub);
}

/* BOTÓN WHATSAPP */
.btn-wa-submit {
  background: linear-gradient(135deg, #25D366, #1EBD5A);
  border: none;
  border-radius: 14px;
  padding: 1rem;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 10px 20px -5px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-wa-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px -4px rgba(37, 211, 102, 0.5);
}

.btn-wa-submit svg {
  width: 20px;
  height: 20px;
}

/* MENSAJE DE ÉXITO */
.ticket-success-message {
  position: absolute;
  inset: 0;
  background: var(--ticket-bg-white);
  border: 2px solid var(--accent-wa);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.ticket-success-message.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.success-icon {
  font-size: 3.5rem;
  color: var(--accent-wa);
  margin-bottom: 1rem;
}

.ticket-success-message h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--text-dark-main);
  margin-bottom: 0.6rem;
}

.ticket-success-message p {
  color: var(--text-dark-sub);
  max-width: 400px;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.btn-reset {
  background: var(--input-bg-light);
  border: 1px solid var(--border-light-soft);
  color: var(--text-dark-main);
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-reset:hover {
  background: #E2E8F0;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .boarding-pass-light {
    grid-template-columns: 1fr;
  }

  .ticket-divider {
    width: 100%;
    height: 20px;
    flex-direction: row;
  }

  .notch-top { left: -12px; top: calc(50% - 12px); }
  .notch-bottom { right: -12px; top: calc(50% - 12px); bottom: auto; }

  .dashed-line {
    width: 100%;
    height: 0;
    border-left: none;
    border-top: 2px dashed var(--border-light-soft);
  }

  .ticket-stub {
    border-left: none;
    border-top: 1px solid var(--border-light-soft);
  }
}

@media (max-width: 600px) {
  .contacto-light-section { padding: 4rem 1rem; }
  .ticket-grid-inputs { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }
  .ticket-main, .ticket-stub { padding: 1.5rem; }
  .city-code { font-size: 1.8rem; }
}






















:root {
  --footer-bg: #090d16;
  --footer-card-bg: rgba(255, 255, 255, 0.04);
  --footer-border: rgba(255, 255, 255, 0.08);
  --footer-text: #94a3b8;
  --footer-heading: #ffffff;
  --accent-blue: #0284c7;
  --accent-cyan: #38bdf8;
}

.footer-pro {
  background-color: var(--footer-bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.12), transparent 75%);
  color: var(--footer-text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  padding: 4.5rem 1.5rem 2rem 1.5rem;
  border-top: 1px solid var(--footer-border);
  position: relative;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--footer-border);
}

/* LOGO EN BLANCO Y EFECTO HOVER */
.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1); /* Pasa cualquier logo PNG a blanco puro */
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-bottom: 1rem;
  display: block;
}

.footer-logo:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 340px;
  color: var(--footer-text);
}

/* TÍTULOS Y ENLACES */
.footer-title {
  color: var(--footer-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(4px);
}

.social-text {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

/* BOTONES DE REDES SOCIALES CON GLOW */
.social-icons {
  display: flex;
  gap: 0.85rem;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--footer-card-bg);
  border: 1px solid var(--footer-border);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

/* Colores específicos en Hover */
.social-btn.fb:hover { 
  background: #1877f2; 
  border-color: #1877f2; 
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
}

.social-btn.ig:hover { 
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
  border-color: transparent; 
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.35);
}

.social-btn.tt:hover { 
  background: #000000; 
  border-color: #00f2fe; 
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4); 
}

/* PIE INFERIOR Y BADGE STRADA LAB */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  margin: 0;
  color: #64748b;
}

.developer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
}

.strada-badge {
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.strada-badge strong {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.strada-badge:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

/* DISEÑO RESPONSIVO */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}





































































