html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    :root {
      --bg-dark: #080b1c;
      --bg-card: #0c1027;
      --cyan-accent: #48c0ed;
      --purple-accent: #7000ff;
      --text-muteddd: #ffffff !important;
    }

    body {
      background-color: var(--bg-dark);
      color: #ffffff;
      font-family: 'Plus Jakarta Sans', sans-serif;
      overflow-x: hidden;
      position: relative;
    }

    /* Ambient Pulsing Glow Effects */
    @keyframes pulseGlow {
      0% { opacity: 0.35; transform: scale(1); }
      50% { opacity: 0.75; transform: scale(1.08); }
      100% { opacity: 0.35; transform: scale(1); }
    }

    .ambient-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      z-index: 0;
      animation: pulseGlow 8s infinite ease-in-out;
      pointer-events: none;
    }
    .glow-cyan {
      width: 400px;
      height: 400px;
      background: rgba(0, 240, 255, 0.15);
      top: 5%;
      left: -100px;
    }
    .glow-purple {
      width: 500px;
      height: 500px;
      background: rgba(112, 0, 255, 0.18);
      top: 25%;
      right: -150px;
    }

    /* Navbar */
    .navbar {
      background-color: rgba(5, 7, 22, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      z-index: 1030;
    }
    .nav-link {
      color: #cbd5e1 !important;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      padding: 0.5rem 0.8rem !important;
      transition: all 0.3s ease;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--cyan-accent) !important;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    }
    .btn-register {
      background: linear-gradient(90deg, #00d2ff, #7000ff);
      color: #fff;
      font-weight: 800;
      font-size: 0.75rem;
      border-radius: 50px;
      padding: 0.6rem 1.8rem;
      border: none;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
      transition: all 0.3s ease;
    }
    .btn-register:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 25px rgba(112, 0, 255, 0.7);
      color: #fff;
    }

    .brand-title {
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.5px;
    }
    .brand-year {
      color: var(--cyan-accent);
      font-weight: 700;
    }

    /* Hero Section */


    .hero-section {
position: relative;
  overflow: hidden;
  background-color: #0c1027; /* Fallback color while video loads */
    }


.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Semi-transparent black overlay for text legibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Adjust opacity (0.5 to 0.8) as needed */
  z-index: 1;
}

/* Alternative: Using ::before pseudo-element instead of .hero-overlay */
/*
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 16, 39, 0.75);
  z-index: 1;
}





    .hero-title {
      font-weight: 800;
      font-size: clamp(2.3rem, 5vw, 4rem);
      letter-spacing: 1px;
      line-height: 1.05;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: #e2e8f0;
      max-width: 520px;
    }






    .text-cyan {
      color: var(--cyan-accent);
    }

    /* Countdown Card */
    .countdown-card {
      background: rgba(12, 16, 39, 0.75);
      border: 1px solid rgba(0, 240, 255, 0.2);
      border-radius: 20px;
      backdrop-filter: blur(16px);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.05);
    }
    .countdown-number {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--cyan-accent);
      line-height: 1;
      text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    }
    .countdown-label {
      font-size: 0.75rem;
      color: var(--text-muteddd);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 6px;
      font-weight: 600;
    }

    /* Section Titles */
    .section-title {
      color: var(--cyan-accent);
      font-weight: 800;
      letter-spacing: 2.5px;
      font-size: 1.1rem;
      text-transform: uppercase;
      text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    /* Timeline Cards */
    .timeline-card {
      background: rgba(12, 16, 39, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 20px 25px;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }
    .timeline-card:hover {
      border-color: var(--cyan-accent);
      transform: translateX(6px);
      box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15);
    }

    /* Outer Box for Speaker Carousel matching image structure */
    .carousel-outer-box {
      background: rgba(12, 16, 39, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px 20px;
      position: relative;
    }

    /* Speaker Cards */
    .speaker-card {
      background: rgba(5, 7, 22, 0.85);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 22px 18px;
      text-align: center;
      transition: all 0.4s ease;
      height: 100%;
    }
    .speaker-card:hover {
      transform: translateY(-8px);
      border-color: var(--cyan-accent);
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.25);
    }
    .speaker-img-wrapper {
      width: 110px;
      height: 110px;
      margin: 0 auto 15px;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(135deg, var(--cyan-accent), var(--purple-accent));
    }
    .speaker-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }
    .speaker-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 4px;
    }
    .speaker-role {
      font-size: 0.8rem;
      color: var(--cyan-accent);
      font-weight: 600;
      margin-bottom: 10px;
    }
    .speaker-topic {
      font-size: 0.78rem;
      color: var(--text-muteddd);
      line-height: 1.4;
    }

    /* Owl Navigation Arrows */
    .speakers-container {
      position: relative;
      padding: 0 35px;
    }
    .owl-nav button.owl-prev,
    .owl-nav button.owl-next {
      position: absolute;
      top: 40%;
      width: 44px;
      height: 44px;
      border-radius: 50% !important;
      background: #7000ff !important;
      color: #fff !important;
      font-size: 1.4rem !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease !important;
      box-shadow: 0 0 15px rgba(112, 0, 255, 0.5);
    }
    .owl-nav button.owl-prev { left: -15px; }
    .owl-nav button.owl-next { right: -15px; }
    .owl-nav button.owl-prev:hover,
    .owl-nav button.owl-next:hover {
      background: var(--cyan-accent) !important;
      color: #000 !important;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    }

    /* Pricing Section */
    .price-card {
      background: rgba(12, 16, 39, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 24px;
      padding: 35px 25px;
      transition: all 0.4s ease;
      position: relative;
      backdrop-filter: blur(12px);
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .price-card:hover {
      transform: translateY(-10px);
      border-color: var(--cyan-accent);
      box-shadow: 0 15px 35px rgba(0, 240, 255, 0.2);
    }
    .price-card.featured {
      background: linear-gradient(180deg, rgba(112, 0, 255, 0.15) 0%, rgba(12, 16, 39, 0.9) 100%);
      border: 2px solid var(--cyan-accent);
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.25);
    }
    .badge-popular {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, var(--cyan-accent), var(--purple-accent));
      color: #000;
      font-weight: 800;
      font-size: 0.7rem;
      padding: 4px 16px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .price-amount {
      font-size: 3rem;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
    }
    .price-currency {
      font-size: 1.2rem;
      color: var(--cyan-accent);
      vertical-align: super;
    }
    .price-features {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }
    .price-features li {
      margin-bottom: 12px;
      color: #cbd5e1;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .price-features i {
      color: var(--cyan-accent);
      font-size: 1.1rem;
    }

    /* Venue Card */
    .venue-card {
      background: linear-gradient(135deg, #0e1333 0%, #070919 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    .venue-img {
      width: 100%;
      height: 100%;
      min-height: 340px;
      object-fit: cover;
      border-radius: 16px;
      transition: transform 0.5s ease;
    }
    .venue-card:hover .venue-img {
      transform: scale(1.03);
    }

    /* Custom Buttons */
    .btn-outline-cyan {
      border: 1.5px solid #1d4ed8;
      background: transparent;
      color: #ffffff;
      border-radius: 50px;
      padding: 10px 28px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.3s ease;
    }
    .btn-outline-cyan:hover {
      border-color: var(--cyan-accent);
      background: var(--cyan-accent);
      color: #000;
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
    }

    /* Hotel Cards */
    .hotel-card {
      background-color: #0b0f24;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
    }
    .hotel-card:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 240, 255, 0.4);
      box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
    }
    .hotel-card img {
      height: 180px;
      object-fit: cover;
      width: 100%;
      transition: transform 0.5s ease;
    }

    /* Sponsor Cards */
    .sponsor-logo-box {
      background: rgba(12, 16, 39, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      padding: 25px 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #ffffff;
      font-size: 1.1rem;
      letter-spacing: 1px;
      transition: all 0.3s ease;
    }
    .sponsor-logo-box:hover {
      border-color: var(--cyan-accent);
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
      transform: translateY(-4px);
    }

    /* Footer */
    footer {
      background-color: #03040c;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }
    .footer-link {
      color: var(--text-muteddd);
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      font-size: 0.85rem;
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: var(--cyan-accent);
    }
    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      margin-right: 8px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .social-btn:hover {
      background: var(--cyan-accent);
      color: #000;
      box-shadow: 0 0 15px var(--cyan-accent);
    }



/* Floating Countdown Positioning */
.hero-countdown-wrapper {
  margin-top: -60px; /* Pulls the timer up over the Hero boundary */
  margin-bottom: 20px;
}

/* Feature Badges for +180 Conferencias, etc. */
.badge-feature {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.badge-feature:hover {
  border-color: rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.15);
}

/* Glowing Primary CTA Button */
.btn-glow {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.8), 0 0 15px rgba(112, 0, 255, 0.5);
  transform: scale(1.04);
}
.card-nexus-bevel {
  background: linear-gradient(135deg, #0a0e22 0%, #140e33 100%) !important;
  border-radius: 1.25rem; /* rounded-4 equivalent */
  border: 1px solid rgba(0, 240, 255, 0.2) !important;
  
  /* Inner Bevel & Inset Glow Effect */
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),      /* Top inner highlight */
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),           /* Bottom inner shadow */
    inset 0 0 15px rgba(0, 240, 255, 0.08),        /* Symmetrical cyan inset glow */
    0 10px 30px rgba(0, 0, 0, 0.4);                /* Drop shadow */
    
  transition: all 0.4s ease;
}

/* Hover Effect for extra polish */
.card-nexus-bevel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.6) !important;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 0 20px rgba(0, 240, 255, 0.18),
    0 15px 35px rgba(0, 240, 255, 0.15);
}
/* Active Navigation Link Highlight */
nav a.nav-link.active,
nav a[href^="#"].active {
  color: #00f0ff !important;
  font-weight: 700;
  border-bottom: 2px solid #00f0ff;
}
/* ==========================================================================
   ESTILOS DE LECTURA (SINGLE.PHP)
   ========================================================================== */

/* Fondo claro de la sección de lectura */
.bg-light-section {
    background-color: #f8f9fa;
}

/* Título H1 Estilo Nexus Futurista */
.nexus-single-title {
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Badge Neon para Categorías */
.bg-cyan-glow {
    background: rgba(6, 182, 212, 0.1);
}
.border-cyan {
    border-color: rgba(6, 182, 212, 0.3) !important;
}
.text-cyan {
    color: #06b6d4 !important;
}
.tracking-wider {
    letter-spacing: 0.1em;
}

/* Tarjeta Blanca de Lectura */
.single-post-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Formateo de Contenido Dinámico (.article-body) */
.article-body {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Estilo H2 para Subtítulos dentro del Contenido Blanco */
.article-body h2 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.85rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #06b6d4; /* Línea lateral cian */
}

/* Estilo H3 para Subtítulos menores */
.article-body h3 {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* Enlaces de navegación al pie de la entrada */
.post-navigation a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.post-navigation a:hover {
    color: #0891b2;
}

/* ==========================================================================
   ESTILOS 404 (NEXUS SUMMIT)
   ========================================================================== */

/* Altura mínima para centrar el contenido verticalmente */
.min-vh-75 {
    min-height: 75vh;
}

/* Texto 404 Gigante con Degradado Celeste -> Morado Oscuro */
.nexus-404-number {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #4c1d95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
}

/* Botón con Degradado Corporativo */
.btn-nexus-gradient {
    background: linear-gradient(135deg, #06b6d4 0%, #4c1d95 100%);
    border: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-nexus-gradient:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    color: #ffffff;
}

/* Max Width Helpers */
.max-w-500 {
    max-width: 500px;
}

/* ==========================================================================
   ESTILOS DE WIDGETS EN SIDEBAR (FONDO BLANCO)
   ========================================================================== */

.sidebar-wrapper .widget {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.03);
}

.sidebar-wrapper .widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #06b6d4; /* Línea de acento cian corporativo */
}

.sidebar-wrapper .widget ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-wrapper .widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.sidebar-wrapper .widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-wrapper .widget ul li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sidebar-wrapper .widget ul li a:hover {
    color: #06b6d4;
}
/* Custom Parallax con Pseudo-Element Overlay */
.section-parallax-salvador {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 550px;
    overflow: hidden;
}

.section-parallax-salvador::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Tono #212529 con 85% de opacidad mediante RGBA exacto */
    background-color: rgba(20, 20, 72, 0.85);
    z-index: 1;
}

/* Ajuste responsive para pantallas móviles que no soportan parallax fijo */
@media (max-width: 768px) {
    .section-parallax-salvador {
        background-attachment: scroll;
    }
	.glow-purple{display:none;}
	.hero-img img{width:80%; height:auto;}
}

/* ============================================================
   CONOCE EL SALVADOR — PAGE-SCOPED CSS
   Designed to coexist with the existing Nexus Summit stylesheet.
   IMPORTANT: every selector is scoped to #conoce-salvador-page.
   ============================================================ */

#conoce-salvador-page {
  --ces-cyan: #48c0ed;
  --ces-purple: #7000ff;
  --ces-dark: #080b1c;
  --ces-card: #0c1027;
  --ces-muted: #cbd5e1;
  background: var(--ces-dark);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden;
}

#conoce-salvador-page *,
#conoce-salvador-page *::before,
#conoce-salvador-page *::after { box-sizing: border-box; }

#conoce-salvador-page a { text-decoration: none; }

/* HERO */
#conoce-salvador-page .ces-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5,7,22,.94) 0%, rgba(5,7,22,.72) 48%, rgba(5,7,22,.35) 100%),
    url("https://nexussummit.org/wp-content/uploads/2026/09/esath01.jpg") center/cover no-repeat;
}

#conoce-salvador-page .ces-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 110px 0 120px;
}

#conoce-salvador-page .ces-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ces-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#conoce-salvador-page .ces-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--ces-cyan);
  box-shadow: 0 0 10px rgba(72,192,237,.65);
}

#conoce-salvador-page .ces-hero-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: -2px;
  margin: 0 0 25px;
}

#conoce-salvador-page .ces-hero-text {
  max-width: 650px;
  color: #e2e8f0;
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

#conoce-salvador-page .ces-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 50px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #00d2ff, #7000ff);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0,210,255,.28);
  transition: .3s ease;
}

#conoce-salvador-page .ces-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,240,255,.42);
}

/* GENERAL SECTIONS */
#conoce-salvador-page .ces-section {
  position: relative;
  padding: 90px 0;
}

#conoce-salvador-page .ces-section-alt {
  background: rgba(12,16,39,.55);
}

#conoce-salvador-page .ces-section-label {
  color: var(--ces-cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,240,255,.25);
  margin-bottom: 12px;
}

#conoce-salvador-page .ces-section-title {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

#conoce-salvador-page .ces-lead {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.85;
}

/* FEATURES */
#conoce-salvador-page .ces-feature {
  height: 100%;
  padding: 30px;
  background: rgba(12,16,39,.75);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  transition: .35s ease;
}

#conoce-salvador-page .ces-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(72,192,237,.5);
  box-shadow: 0 12px 30px rgba(0,240,255,.1);
}

#conoce-salvador-page .ces-feature-icon {
  color: var(--ces-cyan);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

#conoce-salvador-page .ces-feature-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 9px;
}

#conoce-salvador-page .ces-feature-text {
  color: #94a3b8;
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

/* EXPERIENCES */
#conoce-salvador-page .ces-experience-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
  background: #050716;
  border: 1px solid rgba(255,255,255,.08);
}

#conoce-salvador-page .ces-experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

#conoce-salvador-page .ces-experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(3,4,12,.95) 100%);
}

#conoce-salvador-page .ces-experience-card:hover img { transform: scale(1.06); }

#conoce-salvador-page .ces-experience-copy {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 25px;
}

#conoce-salvador-page .ces-experience-title {
  color: #fff;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 5px;
}

#conoce-salvador-page .ces-experience-text {
  color: #cbd5e1;
  font-size: .88rem;
  margin: 0;
}

/* GALLERY */
#conoce-salvador-page .ces-gallery-section {
  background:
    radial-gradient(circle at 5% 15%, rgba(0,240,255,.07), transparent 25%),
    radial-gradient(circle at 95% 80%, rgba(112,0,255,.08), transparent 25%),
    #080b1c;
}

#conoce-salvador-page .ces-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}

#conoce-salvador-page .ces-gallery-item {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #0c1027;
  border: 1px solid rgba(255,255,255,.07);
}

#conoce-salvador-page .ces-gallery-item.ces-gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

#conoce-salvador-page .ces-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}

#conoce-salvador-page .ces-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 45%, rgba(0,0,0,.78));
  opacity: .5;
  transition: opacity .3s ease;
}

#conoce-salvador-page .ces-gallery-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

#conoce-salvador-page .ces-gallery-item:hover::after { opacity: .75; }

#conoce-salvador-page .ces-gallery-caption {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
}

/* ACCOMMODATION */
#conoce-salvador-page .ces-hotel-section { background: #0a0e22; }

#conoce-salvador-page .ces-hotel-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

#conoce-salvador-page .ces-hotel-image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

#conoce-salvador-page .ces-hotel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(3,4,12,.92));
}

#conoce-salvador-page .ces-hotel-overlay {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
}

#conoce-salvador-page .ces-hotel-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 7px;
}

#conoce-salvador-page .ces-hotel-text {
  color: #cbd5e1;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

#conoce-salvador-page .ces-hotel-detail {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(12,16,39,.75);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}

#conoce-salvador-page .ces-hotel-detail i {
  color: var(--ces-cyan);
  font-size: 1.25rem;
  width: 28px;
  text-align: center;
}

#conoce-salvador-page .ces-hotel-detail strong {
  display: block;
  color: #fff;
  font-size: .9rem;
}

#conoce-salvador-page .ces-hotel-detail span {
  display: block;
  color: #94a3b8;
  font-size: .82rem;
  margin-top: 3px;
}

/* LOGISTICS */
#conoce-salvador-page .ces-info-section {
  background: linear-gradient(135deg, #0e1333 0%, #070919 100%);
}

#conoce-salvador-page .ces-info-box {
  height: 100%;
  padding: 20px;
  border-left: 2px solid var(--ces-cyan);
  background: rgba(12,16,39,.35);
}

#conoce-salvador-page .ces-info-box strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 6px;
}

#conoce-salvador-page .ces-info-box span {
  color: #94a3b8;
  font-size: .82rem;
  line-height: 1.6;
}

/* CTA */
#conoce-salvador-page .ces-cta {
  background:
    radial-gradient(circle at 85% 50%, rgba(112,0,255,.18), transparent 30%),
    linear-gradient(135deg, #0a3156, #071a2f);
}

#conoce-salvador-page .ces-cta .ces-lead { color: #cbd5e1; }

/* LIGHTBOX */
#conoce-salvador-page .ces-modal .modal-content {
  background: #050716;
  border: 1px solid rgba(72,192,237,.25);
  border-radius: 18px;
  overflow: hidden;
}

#conoce-salvador-page .ces-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

#conoce-salvador-page .ces-modal .modal-title {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}

#conoce-salvador-page .ces-modal .btn-close { filter: invert(1); }

#conoce-salvador-page .ces-modal .modal-body {
  padding: 0;
  background: #03040c;
}

#conoce-salvador-page .ces-modal .modal-body img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #conoce-salvador-page .ces-gallery-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 767px) {
  #conoce-salvador-page .ces-section { padding: 65px 0; }

  #conoce-salvador-page .ces-hero { min-height: 600px; }

  #conoce-salvador-page .ces-hero-content { padding: 90px 0; }

  #conoce-salvador-page .ces-hero-title { font-size: 3.4rem; }

  #conoce-salvador-page .ces-gallery-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
  }

  #conoce-salvador-page .ces-gallery-item.ces-gallery-tall {
    grid-row: span 1;
    aspect-ratio: 1.25;
  }

  #conoce-salvador-page .ces-hotel-image,
  #conoce-salvador-page .ces-hotel-image img {
    min-height: 350px;
  }
}
#conoce-salvador-page .ces-logistica-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 240, 255, .045), transparent 28%),
        #080b1c;
}


/* =========================
   ROW 1
========================= */

#conoce-salvador-page .ces-logistica-intro {
    align-items: center;
}

#conoce-salvador-page .ces-logistica-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 5px 10px;
    border: 1px solid rgba(72, 192, 237, .45);
    border-radius: 4px;
    color: #48c0ed;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#conoce-salvador-page .ces-logistica-label span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #48c0ed;
    box-shadow: 0 0 10px rgba(72, 192, 237, .8);
}

#conoce-salvador-page .ces-logistica-intro h2 {
    margin: 0 0 22px;
}

#conoce-salvador-page .ces-logistica-intro p {
    max-width: 600px;
}

#conoce-salvador-page .ces-logistica-intro-right {
    display: flex;
    align-items: center;
}

#conoce-salvador-page .ces-logistica-intro-right p {
    margin: 35px 0 0;
    padding-left: 45px;
    border-left: 1px solid rgba(255, 255, 255, .15);
}


/* =========================
   ROW 2
========================= */

#conoce-salvador-page .ces-logistica-features {
    margin-top: 65px;
}

#conoce-salvador-page .ces-logistica-feature {
    position: relative;
    height: 100%;
    padding: 35px 35px 30px;
    text-align: center;
    border: 1px solid rgba(72, 192, 237, .18);
    border-radius: 14px;
    background: rgba(12, 16, 39, .45);
    transition: all .3s ease;
}

/* subtle top glow */
#conoce-salvador-page .ces-logistica-feature::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 25%;
    width: 50%;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        transparent,
        #48c0ed,
        transparent
    );
    opacity: .7;
}

#conoce-salvador-page .ces-logistica-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(72, 192, 237, .45);
    box-shadow: 0 10px 35px rgba(0, 210, 255, .08);
}


/* ICON */

#conoce-salvador-page .ces-logistica-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border: 1px solid rgba(72, 192, 237, .25);
    border-radius: 50%;
    background: rgba(72, 192, 237, .06);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    box-shadow: 0 0 25px rgba(0, 210, 255, .08);
}


/* TITLE */

#conoce-salvador-page .ces-logistica-feature h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 600;
}


/* DESCRIPTION */

#conoce-salvador-page .ces-logistica-feature p {
    max-width: 280px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .68);
    font-size: .83rem;
    line-height: 1.65;
}


/* =========================
   BUTTON
========================= */

#conoce-salvador-page .ces-logistica-button-wrap {
    margin-top: 55px;
    text-align: center;
}

#conoce-salvador-page .ces-logistica-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 430px;
    padding: 18px 30px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00d2ff, #7000ff);
    color: #fff;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0, 210, 255, .25);
    transition: all .3s ease;
}

#conoce-salvador-page .ces-logistica-btn i {
    font-size: 1.15rem;
}

#conoce-salvador-page .ces-logistica-btn span {
    opacity: .8;
}

#conoce-salvador-page .ces-logistica-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 0 35px rgba(0, 240, 255, .4),
        0 0 18px rgba(112, 0, 255, .3);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    #conoce-salvador-page .ces-logistica-intro-right p {
        margin-top: 15px;
        padding-left: 0;
        padding-top: 20px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .15);
    }

    #conoce-salvador-page .ces-logistica-features {
        margin-top: 45px;
    }

 
	 #conoce-salvador-page .ces-logistica-feature {
        padding: 30px 20px;
    }
}


@media (max-width: 767px) {

    #conoce-salvador-page .ces-logistica-features {
        margin-top: 45px;
    }

    #conoce-salvador-page .ces-logistica-feature {
        margin-bottom: 20px;
    }


    #conoce-salvador-page .ces-logistica-feature-icon {
        font-size: 2.4rem;
    }

    #conoce-salvador-page .ces-logistica-button-wrap {
        margin-top: 15px;
    }

    #conoce-salvador-page .ces-logistica-btn {
        width: 100%;
        min-width: 0;
        padding: 16px 18px;
        font-size: .78rem;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item{position:relative;overflow:hidden;border-radius:2px;aspect-ratio:1.2;background:#dbe4ed;cursor:pointer}.gallery-item:nth-child(7n+1){grid-row:span 2;aspect-ratio:auto}.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s}.gallery-item:after{content:"";position:absolute;inset:0;background:linear-gradient(transparent 45%,rgba(0,0,0,.58));opacity:.35}.gallery-item:hover img{transform:scale(1.07)}.gallery-caption{position:absolute;z-index:2;bottom:12px;left:14px;color:#fff;font-weight:600;font-size:.85rem}

#aliados-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding: 15px;
}

#aliados-carousel .item img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}