/* Variables de Diseño y Sistema de Diseño */
:root {
  --bg-dark: #060806;
  --bg-card: rgba(18, 22, 18, 0.7);
  --bg-card-light: rgba(255, 255, 255, 0.05);
  --accent-neon: #a2e817;
  --accent-neon-hover: #baf736;
  --accent-glow: rgba(162, 232, 23, 0.4);
  
  --text-light: #ffffff;
  --text-muted: #a4b2a4;
  --text-dark: #111511;
  --text-dark-muted: #4e5c4e;
  
  --border-neon: rgba(162, 232, 23, 0.2);
  --border-neon-active: rgba(162, 232, 23, 0.6);
  --border-light: rgba(255, 255, 255, 0.1);
  
  --font-headings: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-card: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
}

/* Reset de Estilos Globales */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Tipografía y Textos */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img, video {
  max-width: 100%;
  display: block;
}

/* Utilidades */
.neon-text {
  color: var(--accent-neon);
  text-shadow: 0 0 10px rgba(162, 232, 23, 0.3);
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Header / Barra de Navegación */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(6, 8, 6, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-as {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  border: 2px solid var(--text-light);
  padding: 2px 8px;
  display: inline-block;
  text-align: center;
  align-self: flex-start;
}

.logo-adv {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 4px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-list a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 8px 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-neon);
  transition: var(--transition-smooth);
}

.nav-list a:hover {
  color: var(--accent-neon);
}

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

.btn-reservar-header {
  background-color: var(--accent-neon);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(162, 232, 23, 0.2);
}

.btn-reservar-header:hover {
  background-color: var(--accent-neon-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(162, 232, 23, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 8, 6, 0.2) 0%, rgba(6, 8, 6, 0.85) 100%),
              linear-gradient(180deg, rgba(6, 8, 6, 0.6) 0%, rgba(6, 8, 6, 0.9) 100%);
  z-index: -1;
}

.hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-subtitle-2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--accent-neon);
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(162, 232, 23, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-neon-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(162, 232, 23, 0.5);
}

.btn-outline {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

.icon-arrow-down {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-play-video {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(6, 8, 6, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.icon-play {
  width: 24px;
  height: 24px;
  fill: var(--text-light);
  margin-left: 2px;
  transition: var(--transition-smooth);
}

.play-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
}

.play-text .duration {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 10px;
}

.btn-play-video:hover .play-circle {
  border-color: var(--accent-neon);
  background-color: var(--accent-neon);
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-play-video:hover .icon-play {
  fill: var(--text-dark);
}

.btn-play-video:hover {
  color: var(--accent-neon);
}

/* Sidebar Métricas Hero */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: rgba(6, 8, 6, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sidebar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-item .number {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-neon);
}

.sidebar-item .icon {
  font-size: 24px;
  color: var(--accent-neon);
}

.sidebar-item .icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--accent-neon);
  stroke-width: 1.5;
}

.sidebar-item .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.indicator-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.indicator-mouse .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--accent-neon);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

.indicator-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Sección Estructura General */
.retos-section, .siente-section, .historias-section, .seguridad-section, .incluye-section, .ubicacion-config-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header .pre-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.section-header .section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
}

/* Sección: Los 6 Retos Extremos */
.retos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reto-card {
  position: relative;
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition-card);
}

.reto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.reto-card:hover::before {
  transform: scale(1.08);
}

.card-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 8, 6, 0.1) 0%, rgba(6, 8, 6, 0.95) 100%);
  transition: var(--transition-smooth);
  z-index: 1;
}

.reto-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reto-number {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-neon);
  line-height: 1;
}

.reto-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
}

.reto-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

/* Hover effects */
.reto-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-neon);
  box-shadow: 0 8px 30px rgba(162, 232, 23, 0.2);
}

.reto-card:hover .card-bg-overlay {
  background: linear-gradient(180deg, rgba(6, 8, 6, 0) 0%, rgba(6, 8, 6, 0.85) 100%);
}

.reto-card:hover .reto-desc {
  opacity: 1;
  color: var(--text-light);
}

/* Sección: Así se Siente (Testimonios) */
.siente-section {
  max-width: 1280px;
}

.siente-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.siente-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.siente-title {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.siente-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.carousel-btn {
  background-color: var(--bg-card-light);
  border: 1px solid var(--border-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--text-light);
}

.carousel-btn:hover {
  background-color: var(--accent-neon);
  border-color: var(--accent-neon);
}

.carousel-btn:hover svg {
  fill: var(--text-dark);
}

.siente-right {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.siente-cards-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  padding: 24px 12px;
  scroll-snap-type: x mandatory;
}

.siente-cards-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.siente-card {
  flex: 0 0 170px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-image: var(--bg-card-img);
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

/* Alternate vertical offsets and subtle tilts for high-end catalog look */
.siente-card:nth-child(1) { transform: rotate(-1.5deg) translateY(4px); }
.siente-card:nth-child(2) { transform: rotate(1deg) translateY(-4px); }
.siente-card:nth-child(3) { transform: rotate(-1deg) translateY(2px); }
.siente-card:nth-child(4) { transform: rotate(1.5deg) translateY(-2px); }
.siente-card:nth-child(5) { transform: rotate(-0.5deg) translateY(6px); }

.siente-card:hover {
  transform: scale(1.06) rotate(0deg) translateY(-10px) !important;
  border-color: var(--accent-neon);
  box-shadow: 0 12px 30px rgba(162, 232, 23, 0.4);
  z-index: 5;
}

.siente-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 8, 6, 0.1) 0%, rgba(6, 8, 6, 0.45) 50%, rgba(6, 8, 6, 0.95) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
}

.siente-card:hover .siente-card-overlay {
  background: linear-gradient(180deg, rgba(6, 8, 6, 0.0) 0%, rgba(6, 8, 6, 0.25) 50%, rgba(6, 8, 6, 0.9) 100%);
}

.siente-card-content {
  position: relative;
  z-index: 2;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.siente-quote {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-light);
  font-style: normal;
}

.siente-author {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

/* Sección: El Río en Movimiento (Videos) */
#videos {
  border-top: 1px solid var(--border-light);
}

/* Sección: Más que un Tour, Somos Historias que se Repiten */
.historias-section {
  border-top: 1px solid var(--border-light);
}

.historias-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.historias-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.historias-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-headings);
  text-align: left;
}

.historias-metrics {
  display: flex;
  gap: 24px;
}

.historia-metric-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.historia-metric-item .metric-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-neon);
  margin-bottom: 2px;
  fill: currentColor;
}

.historia-metric-item .metric-num {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
}

.historia-metric-item .metric-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.3;
  max-width: 90px;
}

.historias-right {
  overflow: hidden;
  width: 100%;
}

.social-feed-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  padding: 24px 12px;
  scroll-snap-type: x mandatory;
}

.social-feed-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.social-card {
  flex: 0 0 220px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
}

.social-card-overlay {
  display: none;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-neon);
  box-shadow: 0 8px 20px rgba(162, 232, 23, 0.2);
}

.social-card-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-card-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--accent-neon);
  object-fit: cover;
}

.social-username {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.social-network-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  fill: currentColor;
}

.social-card:hover .social-network-icon {
  color: var(--accent-neon);
}

.social-card-body {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  flex-grow: 1;
}

.social-caption {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-light);
}

.social-card-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 8px;
}

.social-reactions {
  display: flex;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Sección Seguridad */
.seguridad-section {
  border-top: 1px solid var(--border-light);
}

.seguridad-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.seguridad-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.seguridad-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-headings);
  text-align: left;
}

.seguridad-right {
  width: 100%;
}

.seguridad-divider-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
}

.seguridad-item-col {
  padding: 0 20px;
  border-left: 1px solid var(--accent-neon);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.seguridad-svg-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-neon);
}

.seguridad-item-col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin: 0;
}

.seguridad-item-col p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Divider ripped paper: Green section transitions */
.ripped-paper-divider {
  height: 30px;
  background-color: #ffffff;
  /* SVG ripped shape mask */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79-22.2,103.59-32.17,158-10.34,24.4,9.79,48.2,22.93,72.93,32.67,57.92,22.79,122.09,12.75,173.34-23.23,20.8-14.61,39.39-31.27,62.8-40.44C516.44-3.23,576.41,9.15,629,39.32c38.36,22,81.16,29.17,123.1,17.47,40-11.16,77.72-33.15,116-43C914.88,1,969.83,16,1022,46.24c52.41,30.34,113.68,26.79,162.77-5.09C1191.13,37,1196,31.79,1200,26.54V0Z'/%3E%3C/svg%3E");
  mask-size: 100% 30px;
  mask-repeat: no-repeat;
  width: 100%;
}

/* Incluye section: White background! */
.incluye-section {
  background-color: #ffffff;
  color: var(--text-dark);
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 100px 24px;
}

.incluye-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.incluye-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.incluye-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-headings);
  text-align: left;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  padding-bottom: 16px;
}

.incluye-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 4px;
  background-color: var(--accent-neon);
}

.incluye-right {
  width: 100%;
}

.incluye-divider-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: 100%;
}

.incluye-item-col {
  padding: 0 20px;
  border-left: 1px solid var(--accent-neon);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.incluye-svg-icon {
  width: 28px;
  height: 28px;
  color: var(--text-dark);
}

.incluye-item-col span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Ubicación y Configuración */
.ubicacion-config-section {
  border-top: 1px solid var(--border-light);
}

.ubicacion-config-container {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: flex-start;
}

.section-title-light {
  font-size: 36px;
  margin-bottom: 16px;
}

.ubicacion-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Mapa gráfico visual */
.map-graphic-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  height: 240px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  background-image: radial-gradient(rgba(162, 232, 23, 0.05) 1px, transparent 0);
  background-size: 16px 16px;
}

.map-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.map-node.medellin {
  top: 30px;
  left: 20%;
}

.map-node.melcocho {
  bottom: 40px;
  right: 20%;
}

.node-dot {
  width: 10px;
  height: 10px;
  background-color: var(--accent-neon);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-neon);
  margin-bottom: 4px;
}

.map-node.medellin .node-dot {
  background-color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
}

.node-label {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.map-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.btn-como-llegar {
  border: 1px solid var(--text-light);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 40px;
}

.btn-como-llegar:hover {
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

.expedicion-details {
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

.expedicion-details .details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.detail-icon {
  font-size: 24px;
  line-height: 1;
}

.detail-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.detail-item span {
  font-size: 12px;
  font-weight: 600;
}

.detail-llevar strong {
  font-size: 11px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
  color: var(--accent-neon);
}

.detail-llevar p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Configurador */
.config-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon);
  border-radius: 4px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.config-header {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.config-header h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text-light);
}

.config-header p {
  font-size: 12px;
  color: var(--text-muted);
}

.config-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.config-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-neon);
  color: var(--text-dark);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-help {
  font-size: 12px;
  color: var(--text-muted);
}

/* Selectores del configurador */
.people-selector, .adrenaline-selector {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

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

.people-btn, .adrenaline-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 10px 0;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.people-btn:hover, .adrenaline-btn:hover {
  border-color: var(--accent-neon);
  background-color: rgba(162, 232, 23, 0.05);
}

.people-btn.active, .adrenaline-btn.active {
  background-color: var(--accent-neon);
  border-color: var(--accent-neon);
  color: var(--text-dark);
  box-shadow: 0 0 10px rgba(162, 232, 23, 0.2);
}

/* Adrenaline gauge */
.adrenaline-gauge {
  background-color: rgba(255, 255, 255, 0.05);
  height: 6px;
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

.gauge-bar {
  background-color: var(--accent-neon);
  height: 100%;
  width: var(--gauge-width);
  box-shadow: 0 0 8px var(--accent-neon);
  transition: var(--transition-smooth);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.experience-tag {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 10px 12px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.experience-tag:hover {
  border-color: var(--accent-neon);
  background-color: rgba(162, 232, 23, 0.05);
}

.experience-tag.active {
  border-color: var(--accent-neon);
  background-color: rgba(162, 232, 23, 0.15);
  color: var(--accent-neon);
  box-shadow: inset 0 0 8px rgba(162, 232, 23, 0.1);
}

/* Date & Name inputs */
.date-input, .name-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  outline: none;
  transition: var(--transition-smooth);
}

.date-input:focus, .name-input:focus {
  border-color: var(--accent-neon);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(162, 232, 23, 0.1);
}

/* Resumen */
.resumen-box {
  background-color: rgba(6, 8, 6, 0.5);
  border: 1px dashed var(--border-neon);
  padding: 20px;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resumen-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}

.resumen-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resumen-item strong {
  color: var(--text-muted);
}

.resumen-item span {
  font-weight: 600;
}

.resumen-box .booking-id-tag {
  font-family: monospace;
  color: var(--accent-neon);
  font-size: 11px;
}

.btn-reservar-whatsapp {
  background-color: var(--accent-neon);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  padding: 18px 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(162, 232, 23, 0.3);
}

.btn-reservar-whatsapp:hover {
  background-color: var(--accent-neon-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(162, 232, 23, 0.5);
}

/* Banner CTA footer */
.banner-cta-section {
  position: relative;
  padding: 120px 24px;
  background-image: var(--bg-cta);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.banner-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 8, 6, 0.85);
  z-index: 1;
}

.banner-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.cta-phrase {
  font-family: var(--font-headings);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

.btn-cta-whatsapp {
  background-color: var(--accent-neon);
  color: var(--text-dark);
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(162, 232, 23, 0.3);
}

.btn-cta-whatsapp:hover {
  background-color: var(--accent-neon-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(162, 232, 23, 0.5);
}

/* Footer */
.main-footer {
  background-color: #030403;
  border-top: 1px solid var(--border-light);
  padding: 80px 24px 32px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 64px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 260px;
}

.footer-center h4, .footer-right h4 {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-neon);
  margin-bottom: 16px;
}

.icon-instagram {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  background-image: var(--thumb-img);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.gallery-thumb:hover {
  border-color: var(--accent-neon);
  transform: scale(1.05);
}

.contact-number-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.whatsapp-badge {
  width: 8px;
  height: 8px;
  background-color: var(--accent-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-neon);
}

.location-text {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}

/* Modal dialog del reproductor de video */
.video-modal-dialog {
  border: none;
  background: none;
  max-width: 900px;
  width: 90%;
  margin: auto;
  outline: none;
  
  /* Animación nativa top-layer */
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, overlay 0.3s ease allow-discrete, display 0.3s ease allow-discrete;
}

.video-modal-dialog[open] {
  opacity: 1;
  transform: scale(1);
}

@starting-style {
  .video-modal-dialog[open] {
    opacity: 0;
    transform: scale(0.9);
  }
}

.video-modal-dialog::backdrop {
  background-color: rgba(6, 8, 6, 0);
  transition: background-color 0.3s ease, overlay 0.3s ease allow-discrete, display 0.3s ease allow-discrete;
}

.video-modal-dialog[open]::backdrop {
  background-color: rgba(6, 8, 6, 0.9);
}

@starting-style {
  .video-modal-dialog[open]::backdrop {
    background-color: rgba(6, 8, 6, 0);
  }
}

.dialog-content {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-neon-active);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(162, 232, 23, 0.1);
}

.btn-close-dialog {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.btn-close-dialog:hover {
  background-color: var(--accent-neon);
  color: var(--text-dark);
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Botón Pegajoso Flotante */
.btn-sticky-reserve {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--accent-neon);
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(162, 232, 23, 0.4);
  z-index: 999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
  visibility: visible;
  opacity: 1;
}

.btn-sticky-reserve:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: var(--accent-neon-hover);
  box-shadow: 0 12px 30px rgba(162, 232, 23, 0.6);
}

.btn-sticky-reserve .icon-whatsapp {
  width: 18px;
  height: 18px;
  fill: var(--text-dark);
}

.btn-sticky-reserve.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

/* Responsividad (Mobile First y Adaptación) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(6, 8, 6, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  }
  .retos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .siente-container, .historias-container, .seguridad-container, .incluye-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .seguridad-divider-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .seguridad-item-col {
    padding: 0;
    border-left: none;
  }
  .incluye-divider-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .incluye-item-col {
    padding: 0;
    border-left: none;
  }
  .ubicacion-config-container {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .navbar-header {
    background-color: #060806;
  }
  .menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #060806;
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  .main-nav.active {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    gap: 16px;
  }
  .btn-reservar-header {
    display: none; /* Reservar se hace a través del hero o menú en mobile */
  }
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 40px;
  }
  .retos-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-grid {
    grid-template-columns: 1fr;
  }
  .seguridad-divider-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .incluye-divider-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Ajuste de video en pantalla completa para móviles */
  .video-modal-dialog {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
    border: none;
  }
  .dialog-content {
    height: 100%;
    border-radius: 0;
    border: none;
  }
  .video-wrapper {
    padding-top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
  }
  .video-wrapper video {
    height: 100%;
    object-fit: contain;
  }
  .btn-close-dialog {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .btn-sticky-reserve {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
    font-size: 12px;
    padding: 12px 20px;
  }
  .btn-sticky-reserve:hover {
    transform: none;
  }
  .btn-sticky-reserve.hidden {
    transform: translateY(40px);
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .seguridad-divider-list {
    grid-template-columns: 1fr;
  }
  .incluye-divider-list {
    grid-template-columns: 1fr;
  }
  .people-selector {
    grid-template-columns: repeat(3, 1fr);
  }
  .config-card {
    padding: 24px 16px;
  }
}
