:root {
  --vista-base: #0b0e14;
  --vista-panel: #121721;
  --vista-panel-luz: #1a202c;
  --vista-destello: #00e5ff;
  --vista-destello-rgb: 0, 229, 255;
  --vista-enfoque: #4d96ff;
  --vista-texto: #e2e8f0;
  --vista-mutado: #94a3b8;
  --vista-borde: rgba(255, 255, 255, 0.08);
  --vista-gradiente: linear-gradient(135deg, #00e5ff 0%, #4d96ff 100%);
  --vista-fuente-titulos: 'Montserrat', sans-serif;
  --vista-fuente-texto: 'Lato', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--vista-fuente-texto);
  background-color: var(--vista-base);
  color: var(--vista-texto);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vista-fuente-titulos);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Scroll-driven Progress Indicator */
.vista-indicador-progreso {
  height: 4px;
  background: var(--vista-gradiente);
  width: 0%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  animation: vista-progreso-barra linear;
  animation-timeline: scroll();
}

@keyframes vista-progreso-barra {
  to { width: 100%; }
}

/* Custom Scroll animations */
.vista-revelacion-seccion {
  animation: vista-aparicion linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes vista-aparicion {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header & Hamburger */
.vista-cabecera-principal {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vista-panel);
  border-bottom: 1px solid var(--vista-borde);
  padding: 1rem 2rem;
}

.vista-cabecera-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vista-enlace-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  font-family: var(--vista-fuente-titulos);
  color: #fff;
}

.vista-enlace-logo svg {
  fill: var(--vista-destello);
}

.vista-navegacion-principal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vista-enlace-nav {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vista-enlace-nav:hover,
.vista-enlace-nav.vista-activo {
  color: var(--vista-destello);
}

/* CSS Hamburger Menu */
.vista-switch-menu {
  display: none;
}

.vista-icono-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
}

.vista-icono-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Pill CTA Buttons */
.vista-boton-capsula {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: var(--vista-gradiente);
  color: var(--vista-base);
  font-family: var(--vista-fuente-titulos);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.vista-boton-capsula:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.vista-boton-capsula-borde {
  display: inline-block;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  border: 2px solid var(--vista-destello);
  color: var(--vista-destello);
  font-family: var(--vista-fuente-titulos);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}

.vista-boton-capsula-borde:hover {
  background: var(--vista-destello);
  color: var(--vista-base);
}

/* Hero Section Base (Preset A) */
.vista-heroe-completo {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vista-heroe-completo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.75);
  z-index: 1;
}

.vista-heroe-contenido {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 6dvh 2rem 12dvh;
}

.vista-heroe-titulo {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.vista-heroe-subtitulo {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--vista-mutado);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Floating Stat Bar (Preset A) */
.vista-estadisticas-flotantes {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.vista-estadisticas-rejilla {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  background-color: var(--vista-panel);
  border: 1px solid var(--vista-borde);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.vista-stat-tarjeta {
  text-align: center;
}

.vista-stat-numero {
  font-family: var(--vista-fuente-titulos);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--vista-destello);
  display: block;
  margin-bottom: 0.5rem;
}

.vista-stat-etiqueta {
  color: var(--vista-mutado);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Zig Zag Section Layout (Preset A) */
.vista-seccion-bloques {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vista-bloque-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8dvh;
}

.vista-bloque-zigzag:nth-child(even) {
  direction: rtl;
}

.vista-bloque-zigzag:nth-child(even) .vista-zigzag-texto {
  direction: ltr;
}

.vista-zigzag-imagen-wrap {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
}

.vista-bloque-zigzag:nth-child(odd) .vista-zigzag-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.vista-bloque-zigzag:nth-child(even) .vista-zigzag-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.vista-zigzag-titulo {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.vista-zigzag-descripcion {
  font-size: 1.1rem;
  color: var(--vista-mutado);
  margin-bottom: 1.5rem;
}

/* Feature Grid (Preset A, 2-row grid with left border) */
.vista-rejilla-cualidades {
  padding: 10dvh 1.5rem;
  background-color: var(--vista-panel);
  border-top: 1px solid var(--vista-borde);
  border-bottom: 1px solid var(--vista-borde);
}

.vista-rejilla-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.vista-seccion-titulo-centrado {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.vista-seccion-titulo-centrado h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.vista-seccion-titulo-centrado p {
  color: var(--vista-mutado);
  font-size: 1.1rem;
}

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

.vista-tarjeta-cualidad {
  padding: 2.5rem 2rem;
  background-color: var(--vista-base);
  border-left: 4px solid var(--vista-destello);
  border-radius: 0 16px 16px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vista-tarjeta-cualidad:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.vista-cualidad-icono {
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--vista-destello);
}

.vista-cualidad-titulo {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vista-cualidad-texto {
  color: var(--vista-mutado);
  font-size: 0.95rem;
}

/* Timeline vertical (Preset A) */
.vista-cronograma-seccion {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vista-lineatranscurso {
  position: relative;
  margin-top: 4rem;
}

.vista-lineatranscurso::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--vista-borde);
  transform: translateX(-50%);
}

.vista-bloque-timeline {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
}

.vista-bloque-timeline:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  margin-left: 50%;
}

.vista-bloque-timeline::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--vista-base);
  border: 4px solid var(--vista-destello);
  z-index: 5;
}

.vista-bloque-timeline:nth-child(even)::after {
  left: -15px;
  right: auto;
}

.vista-tarjeta-timeline {
  background-color: var(--vista-panel);
  border: 1px solid var(--vista-borde);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  position: relative;
}

.vista-bloque-timeline:nth-child(even) .vista-tarjeta-timeline {
  margin-left: 10%;
}

.vista-timeline-numero {
  color: var(--vista-destello);
  font-family: var(--vista-fuente-titulos);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vista-timeline-titulo {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.vista-timeline-texto {
  color: var(--vista-mutado);
  font-size: 0.95rem;
}

/* CTA Strip (Preset A) */
.vista-faja-comunidad {
  position: relative;
  padding: 12dvh 1.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.vista-faja-comunidad::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 20, 0.8);
  z-index: 1;
}

.vista-faja-contenido {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vista-faja-titulo {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.vista-faja-desc {
  font-size: 1.2rem;
  color: var(--vista-mutado);
  margin-bottom: 2.5rem;
}

/* Form block */
.vista-marco-formulario {
  background-color: var(--vista-panel);
  border: 1px solid var(--vista-borde);
  border-radius: 16px;
  padding: 3rem;
  width: 100%;
}

.vista-campo-grupo {
  margin-bottom: 1.5rem;
}

.vista-etiqueta-formulario {
  display: block;
  font-family: var(--vista-fuente-titulos);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--vista-mutado);
}

.vista-control-formulario {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--vista-panel-luz);
  border: 1px solid var(--vista-borde);
  border-radius: 8px;
  color: #fff;
  font-family: var(--vista-fuente-texto);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.vista-control-formulario:focus {
  outline: none;
  border-color: var(--vista-destello);
}

.vista-control-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.vista-control-checkbox input {
  margin-top: 0.25rem;
}

.vista-texto-checkbox {
  font-size: 0.85rem;
  color: var(--vista-mutado);
}

.vista-texto-checkbox a {
  color: var(--vista-destello);
  text-decoration: underline;
}

/* FAQ Accordion styled plain (as instructed: CSS only, all open) */
.vista-seccion-preguntas {
  margin-top: 6rem;
}

.vista-rejilla-preguntas {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.vista-pregunta-bloque {
  background-color: var(--vista-panel);
  border: 1px solid var(--vista-borde);
  border-radius: 16px;
  padding: 2rem;
}

.vista-pregunta-titulo {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--vista-destello);
  border-bottom: 1px solid var(--vista-borde);
  padding-bottom: 0.5rem;
}

.vista-pregunta-respuesta {
  color: var(--vista-mutado);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section */
.vista-pie-principal {
  background-color: #05070a;
  border-top: 1px solid var(--vista-borde);
  padding: 5rem 2rem 3rem;
}

.vista-pie-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vista-pie-filas {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.vista-pie-informacion {
  max-width: 400px;
}

.vista-pie-descripcion {
  color: var(--vista-mutado);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.vista-pie-enlaces {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vista-pie-enlace {
  font-size: 0.95rem;
  color: var(--vista-mutado);
}

.vista-pie-enlace:hover {
  color: var(--vista-destello);
}

.vista-pie-disclaimer {
  text-align: center;
  color: var(--vista-mutado);
  font-size: 0.85rem;
  border-top: 1px solid var(--vista-borde);
  padding-top: 2rem;
}

.vista-pie-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vista-mutado);
  margin-top: 1rem;
}

/* Cookie Banner styling */
.vista-alerta-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vista-panel);
  border-top: 2px solid var(--vista-destello);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

.vista-alerta-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.vista-alerta-texto {
  font-size: 0.95rem;
  color: var(--vista-texto);
  flex: 1;
}

.vista-alerta-botones {
  display: flex;
  gap: 1rem;
}

/* Info Cards for Reserve */
.vista-bloque-reserva-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.vista-tarjeta-reserva-info {
  background-color: var(--vista-panel);
  border: 1px solid var(--vista-borde);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.vista-reserva-lista {
  list-style: none;
  margin-top: 1.5rem;
}

.vista-reserva-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--vista-mutado);
}

.vista-reserva-circulo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--vista-destello);
  color: var(--vista-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.75rem;
}

/* Privacy & Terms Static Style */
.vista-seccion-estatitca {
  max-width: 800px;
  margin: 0 auto;
  padding: 12dvh 1.5rem;
}

.vista-seccion-estatitca h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.vista-seccion-estatitca h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--vista-destello);
}

.vista-seccion-estatitca p {
  color: var(--vista-mutado);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .vista-bloque-zigzag {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .vista-icono-menu {
    display: flex;
  }

  .vista-navegacion-principal {
    position: fixed;
    top: 61px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 61px);
    background-color: var(--vista-panel);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.3s ease;
    z-index: 1001;
  }

  .vista-switch-menu:checked ~ .vista-navegacion-principal {
    left: 0;
  }

  .vista-switch-menu:checked ~ .vista-icono-menu span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .vista-switch-menu:checked ~ .vista-icono-menu span:nth-child(2) {
    opacity: 0;
  }

  .vista-switch-menu:checked ~ .vista-icono-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .vista-bloque-zigzag {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vista-bloque-zigzag:nth-child(even) {
    direction: ltr;
  }

  .vista-zigzag-imagen-wrap {
    height: 300px;
  }

  .vista-bloque-zigzag:nth-child(odd) .vista-zigzag-imagen {
    clip-path: none;
  }

  .vista-bloque-zigzag:nth-child(even) .vista-zigzag-imagen {
    clip-path: none;
  }

  .vista-lineatranscurso::before {
    left: 20px;
  }

  .vista-bloque-timeline {
    width: 100%;
    justify-content: flex-start;
    padding-left: 50px;
  }

  .vista-bloque-timeline:nth-child(even) {
    margin-left: 0;
  }

  .vista-bloque-timeline::after {
    left: 5px;
    right: auto;
  }

  .vista-bloque-timeline:nth-child(even)::after {
    left: 5px;
  }

  .vista-tarjeta-timeline {
    width: 100%;
  }

  .vista-bloque-timeline:nth-child(even) .vista-tarjeta-timeline {
    margin-left: 0;
  }

  .vista-marco-formulario {
    padding: 2rem 1.5rem;
  }

  .vista-alerta-contenedor {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .vista-alerta-botones {
    width: 100%;
    justify-content: flex-end;
  }
}