/* ==========================================================================
   CSS VARIABLES - THEMATIC NAME & BRAND PALETTE (Corporate Gradient / Vision Theme)
   ========================================================================== */
:root {
  --vista-degrade-principal: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
  --vista-degrade-suave: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  --vista-degrade-oscuro: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  
  --vista-tono-fondo: #f8fafc;
  --vista-tono-superficie: #ffffff;
  --vista-tono-superficie-oscura: #0f172a;
  --vista-tono-borde: #e2e8f0;
  
  --vista-col-texto-principal: #0f172a;
  --vista-col-texto-atenuado: #475569;
  --vista-col-texto-claro: #ffffff;
  
  --vista-tono-acento: #0d9488;
  --vista-tono-acento-hover: #0f766e;
  --vista-tono-destaque: #f59e0b;
  
  --vista-tipografia-titulos: 'Raleway', sans-serif;
  --vista-tipografia-cuerpo: 'Open Sans', sans-serif;
  
  --vista-borde-radio: 16px;
  --vista-borde-radio-completo: 999px;
  
  --vista-sombra-estandar: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --vista-sombra-profunda: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 10px 10px -5px rgba(15, 23, 42, 0.06);
  --vista-sombra-interna: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   BASE RESET & ACCESSIBILITY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--vista-tipografia-cuerpo);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
  color: var(--vista-col-texto-principal);
  background-color: var(--vista-tono-fondo);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, .vista-estilo-titulo {
  font-family: var(--vista-tipografia-titulos);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vista-col-texto-principal);
  margin-bottom: 1rem;
}

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

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

/* ==========================================================================
   SCROLL PROGRESS BAR & ANIMATIONS (CSS-ONLY)
   ========================================================================== */
.vista-barra-progreso {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vista-tono-destaque);
  width: 0;
  z-index: 10000;
  animation: vista-progreso-crecer linear;
  animation-timeline: scroll();
}

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

@keyframes vista-entrada-desplazamiento {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vista-revelacion-scroll {
  animation: vista-entrada-desplazamiento 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* ==========================================================================
   HEADER / NAVEGACIÓN (PRESET F STYLE)
   ========================================================================== */
.vista-cabecera-global {
  background: var(--vista-degrade-principal);
  color: var(--vista-col-texto-claro);
  position: sticky;
  top: 0;
  z-index: 999;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

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

.vista-logo-enlace {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--vista-tipografia-titulos);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--vista-col-texto-claro);
}

.vista-logo-icono {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

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

.vista-enlace-menu {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.vista-enlace-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vista-tono-destaque);
  transition: width 0.3s ease;
}

.vista-enlace-menu:hover::after,
.vista-enlace-menu.activa::after {
  width: 100%;
}

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

.vista-menu-boton-movil {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.5rem;
}

.vista-menu-linea {
  width: 25px;
  height: 3px;
  background-color: var(--vista-col-texto-claro);
  transition: all 0.3s ease;
}

/* ==========================================================================
   HERO CENTRADO (PRESET F STYLE)
   ========================================================================== */
.vista-hero-principal {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--vista-col-texto-claro);
  text-align: center;
  padding: 8dvh 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vista-hero-superposicion {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.9) 0%, rgba(2, 132, 199, 0.9) 100%);
  z-index: 1;
}

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

.vista-hero-contenido h1 {
  color: var(--vista-col-texto-claro);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.vista-hero-contenido p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Botones con estilo corporativo */
.vista-boton-primario {
  display: inline-block;
  background-color: var(--vista-tono-destaque);
  color: var(--vista-col-texto-principal);
  padding: 1rem 2.5rem;
  border-radius: var(--vista-borde-radio-completo);
  font-weight: 700;
  box-shadow: var(--vista-sombra-estandar);
  transform: translateY(0);
}

.vista-boton-primario:hover {
  transform: translateY(-2px);
  box-shadow: var(--vista-sombra-profunda);
  background-color: #e08e06;
}

.vista-boton-secundario {
  display: inline-block;
  background-color: var(--vista-tono-superficie-oscura);
  color: var(--vista-col-texto-claro);
  padding: 1rem 2.5rem;
  border-radius: var(--vista-borde-radio-completo);
  font-weight: 700;
  box-shadow: var(--vista-sombra-estandar);
}

.vista-boton-secundario:hover {
  background-color: #1e293b;
}

/* Bloque de estadísticas animadas de Hero */
.vista-hero-estadisticas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 750px;
}

.vista-stat-articulo {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--vista-borde-radio);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vista-stat-numero {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--vista-tono-destaque);
  display: block;
}

.vista-stat-descripcion {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Barra de confianza / Trust strip */
.vista-barra-confianza {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  width: 100%;
  padding: 1.25rem 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.vista-confianza-fila {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vista-confianza-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ==========================================================================
   SECCIONES DE CONTENIDO - DISEÑO GENERAL
   ========================================================================== */
.vista-seccion-pad-normal {
  padding: 10dvh 1.5rem;
}

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

.vista-encabezado-seccion {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vista-encabezado-seccion h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.vista-encabezado-seccion p {
  color: var(--vista-col-texto-atenuado);
  font-size: 1.1rem;
}

/* ==========================================================================
   index.html: SCROLL-TRACK MULTIPORT (Desktop grid, Mobile scroll)
   ========================================================================== */
.vista-seccion-bento {
  background-color: var(--vista-tono-superficie);
}

.vista-pista-desplazable {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vista-tarjeta-desplazable {
  background: var(--vista-tono-fondo);
  padding: 2.5rem;
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-estandar);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vista-tarjeta-desplazable:hover {
  transform: translateY(-5px);
  box-shadow: var(--vista-sombra-profunda);
}

.vista-tarjeta-icono-contenedor {
  width: 50px;
  height: 50px;
  background: var(--vista-degrade-principal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vista-col-texto-claro);
}

.vista-tarjeta-icono {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ==========================================================================
   index.html: GRID DE CARACTERÍSTICAS (Color-Flip Effect)
   ========================================================================== */
.vista-rejilla-caracteristicas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vista-tarjeta-flip {
  background: var(--vista-tono-superficie);
  padding: 2.5rem;
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-estandar);
  transition: all 0.4s ease;
  border-top: 4px solid var(--vista-tono-acento);
}

.vista-flip-icono-caja {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vista-degrade-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--vista-tono-acento);
  transition: all 0.4s ease;
}

.vista-flip-icono {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Hover: Color Flip! */
.vista-tarjeta-flip:hover {
  background: var(--vista-degrade-principal);
  color: var(--vista-col-texto-claro);
  transform: translateY(-5px);
  border-top-color: transparent;
}

.vista-tarjeta-flip:hover .vista-flip-icono-caja {
  background: rgba(255, 255, 255, 0.2);
  color: var(--vista-col-texto-claro);
}

.vista-tarjeta-flip:hover h3,
.vista-tarjeta-flip:hover p {
  color: var(--vista-col-texto-claro);
}

/* ==========================================================================
   index.html: CÓMO FUNCIONA (Stepper / Numbered Process Bar)
   ========================================================================== */
.vista-seccion-pasos {
  background: var(--vista-degrade-suave);
}

.vista-barra-pasos-horizontal {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.vista-barra-pasos-horizontal::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--vista-tono-borde);
  z-index: 1;
}

.vista-paso-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.vista-paso-circulo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vista-tono-superficie);
  border: 4px solid var(--vista-tono-acento);
  color: var(--vista-tono-acento);
  font-family: var(--vista-tipografia-titulos);
  font-weight: 850;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--vista-sombra-estandar);
  transition: all 0.3s ease;
}

.vista-paso-item:hover .vista-paso-circulo {
  background: var(--vista-degrade-principal);
  color: var(--vista-col-texto-claro);
  border-color: transparent;
  transform: scale(1.1);
}

.vista-paso-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vista-paso-item p {
  font-size: 0.95rem;
  color: var(--vista-col-texto-atenuado);
}

/* ==========================================================================
   index.html & general: CTA STRIP (Gradient / Flex Split)
   ========================================================================== */
.vista-tira-cta {
  background: var(--vista-degrade-principal);
  color: var(--vista-col-texto-claro);
  padding: 6rem 1.5rem;
}

.vista-tira-cta-contenedor {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.vista-tira-cta-texto h2 {
  color: var(--vista-col-texto-claro);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vista-tira-cta-texto p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ==========================================================================
   expert.html: BIO SPLIT DETAILS
   ========================================================================== */
.vista-seccion-bio {
  background: var(--vista-tono-superficie);
}

.vista-bloque-bio {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vista-bio-imagen-bloque {
  flex: 1;
  max-width: 450px;
}

.vista-bio-imagen-bloque img {
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-profunda);
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.vista-bio-texto-bloque {
  flex: 1.5;
}

.vista-bio-texto-bloque h2 {
  font-size: 2.25rem;
  color: var(--vista-tono-acento);
  margin-bottom: 1.5rem;
}

.vista-bio-lista {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.vista-bio-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vista-bio-lista svg {
  width: 20px;
  height: 20px;
  fill: var(--vista-tono-acento);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ==========================================================================
   reserve.html: FORMULARIO Y TARJETAS DE CONFIANZA
   ========================================================================== */
.vista-seccion-reserva {
  background: var(--vista-degrade-suave);
}

.vista-cuadrcula-reserva {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.vista-reserva-info {
  position: sticky;
  top: 120px;
}

.vista-reserva-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.vista-lista-confianza-reserva {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vista-tarjeta-confianza-reserva {
  background: var(--vista-tono-superficie);
  padding: 1.5rem;
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-estandar);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.vista-icono-reserva-caja {
  background: var(--vista-degrade-principal);
  color: var(--vista-col-texto-claro);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vista-icono-reserva-caja svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.vista-tarjeta-confianza-reserva p {
  font-size: 0.95rem;
  color: var(--vista-col-texto-atenuado);
}

/* Formulario */
.vista-formulario-caja {
  background: var(--vista-tono-superficie);
  padding: 3.5rem;
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-profunda);
}

.vista-formulario-caja h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

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

.vista-grupo-formulario label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.vista-input-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--vista-tono-borde);
  border-radius: 8px;
  font-family: var(--vista-tipografia-cuerpo);
  font-size: 1rem;
  background-color: var(--vista-tono-fondo);
  transition: all 0.3s ease;
}

.vista-input-control:focus {
  outline: none;
  border-color: var(--vista-tono-acento);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

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

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

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

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

.vista-boton-formulario {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

/* ==========================================================================
   reserve.html: FAQ ACCORDION (CSS-ONLY)
   ========================================================================== */
.vista-seccion-faq {
  background: var(--vista-tono-superficie);
}

.vista-faq-contenedor {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vista-faq-item {
  border: 1px solid var(--vista-tono-borde);
  border-radius: var(--vista-borde-radio);
  background: var(--vista-tono-fondo);
  overflow: hidden;
}

.vista-faq-pregunta {
  padding: 1.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.vista-faq-icono {
  width: 16px;
  height: 16px;
  fill: var(--vista-tono-acento);
  transition: transform 0.3s ease;
}

.vista-faq-respuesta {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--vista-col-texto-atenuado);
}

/* ==========================================================================
   PÁGINAS LEGALES (Privacy Policy & Terms)
   ========================================================================== */
.vista-seccion-legal {
  padding: 8dvh 1.5rem;
  background-color: var(--vista-tono-superficie);
  flex-grow: 1;
}

.vista-contenedor-legal {
  max-width: 800px;
  margin: 0 auto;
}

.vista-contenedor-legal h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--vista-tono-borde);
  padding-bottom: 1rem;
}

.vista-contenedor-legal h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.vista-contenedor-legal p {
  color: var(--vista-col-texto-atenuado);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ==========================================================================
   PÁGINA DE AGRADECIMIENTO (thank.html)
   ========================================================================== */
.vista-seccion-agradecimiento {
  text-align: center;
  padding: 12dvh 1.5rem;
  background-color: var(--vista-tono-fondo);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vista-tarjeta-agradecimiento {
  background: var(--vista-tono-superficie);
  padding: 4rem 2.5rem;
  border-radius: var(--vista-borde-radio);
  box-shadow: var(--vista-sombra-profunda);
  max-width: 600px;
  width: 100%;
}

.vista-tarjeta-agradecimiento img {
  border-radius: var(--vista-borde-radio);
  margin: 2rem auto;
  max-height: 250px;
  object-fit: cover;
  box-shadow: var(--vista-sombra-estandar);
}

.vista-tarjeta-agradecimiento h1 {
  font-size: 2.5rem;
  color: var(--vista-tono-acento);
}

.vista-tarjeta-agradecimiento p {
  color: var(--vista-col-texto-atenuado);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER / PIE DE PÁGINA (COMÚN)
   ========================================================================== */
.vista-pie-pagina {
  background: var(--vista-degrade-oscuro);
  color: var(--vista-col-texto-claro);
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: auto;
}

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

.vista-pie-fila-superior {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
}

.vista-pie-enlaces-legales {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.vista-pie-enlaces-legales a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.vista-pie-enlaces-legales a:hover {
  opacity: 1;
  color: var(--vista-tono-destaque);
}

.vista-pie-fila-inferior {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vista-pie-descargo {
  font-size: 0.8rem;
  opacity: 0.6;
  line-height: 1.5;
  text-align: justify;
}

.vista-pie-copyright {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

/* ==========================================================================
   COOKIE BANNER (index.html ONLY)
   ========================================================================== */
.vista-barra-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vista-tono-superficie-oscura);
  color: var(--vista-col-texto-claro);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.vista-cookies-texto {
  font-size: 0.9rem;
  opacity: 0.9;
  flex: 1;
  min-width: 280px;
}

.vista-cookies-texto a {
  color: var(--vista-tono-destaque);
  text-decoration: underline;
}

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

.vista-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--vista-borde-radio-completo);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.vista-cookie-btn-aceptar {
  background-color: var(--vista-tono-destaque);
  color: var(--vista-col-texto-principal);
}

.vista-cookie-btn-aceptar:hover {
  background-color: #e08e06;
}

.vista-cookie-btn-rechazar {
  background-color: transparent;
  color: var(--vista-col-texto-claro);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.vista-cookie-btn-rechazar:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */
@media (max-width: 992px) {
  .vista-pista-desplazable {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vista-rejilla-caracteristicas {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vista-cuadrcula-reserva {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vista-bloque-bio {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .vista-bio-imagen-bloque {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Dynamic Responsive Elements for Preset F Header on Mobile */
  .vista-menu-boton-movil {
    display: flex;
  }
  
  .vista-menu-navegacion {
    position: fixed;
    top: 72px; /* Header height offset */
    left: 0;
    right: 0;
    background: var(--vista-degrade-principal);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
    clip-path: circle(0% at 90% 0%);
    transition: clip-path 0.5s ease-in-out;
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-navegacion {
    clip-path: circle(150% at 90% 0%);
  }
  
  /* Hamburger transform */
  .vista-menu-checkbox:checked ~ .vista-menu-boton-movil .vista-menu-linea:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-boton-movil .vista-menu-linea:nth-child(2) {
    opacity: 0;
  }
  
  .vista-menu-checkbox:checked ~ .vista-menu-boton-movil .vista-menu-linea:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .vista-enlace-menu {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }
  
  /* Mobile Horizontal Scroll Track for Bento section */
  .vista-pista-desplazable {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .vista-tarjeta-desplazable {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  
  /* Steps Verticalization */
  .vista-barra-pasos-horizontal {
    flex-direction: column;
    gap: 3rem;
  }
  
  .vista-barra-pasos-horizontal::before {
    display: none;
  }
  
  .vista-rejilla-caracteristicas {
    grid-template-columns: 1fr;
  }
  
  .vista-hero-contenido h1 {
    font-size: 2.25rem;
  }
  
  .vista-hero-estadisticas {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vista-tira-cta-contenedor {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}