/* --- ARCHIVO DE ESTILOS CENTRAL: BIENESTAR CARDIOVASCULAR DEL VALLE --- */

:root {
  /* Paleta de colores temáticos inspirados en el Valle Central chileno y el Pacífico */
  --valle-fondo-profundo: #0a0f18; /* Azul noche del cielo chileno */
  --valle-superficie-oscura: #121926; /* Panel oscuro elegante */
  --valle-oro-oliva: #c5a85c; /* Tono aceite de oliva premium / sol dorado */
  --valle-verde-marino: #1b4d3e; /* Verde del pacífico y hojas de olivo */
  --valle-verde-brillante: #2d8a6b; /* Verde vivo de campos */
  --valle-superficie-clara: #f8fafc; /* Fondo de zonas de lectura */
  --valle-texto-oscuro: #1e293b; /* Texto de alto contraste sobre fondo claro */
  --valle-texto-claro: #f1f5f9; /* Texto de alto contraste sobre fondo oscuro */
  --valle-texto-mutado: #64748b; /* Gris para textos secundarios */
  --valle-borde-suave: rgba(197, 168, 92, 0.25);
  
  /* Tipografías */
  --valle-fuente-titulos: 'Montserrat', sans-serif;
  --valle-fuente-cuerpo: 'Open Sans', sans-serif;
  
  /* Ajustes Visuales del Preset A (Normal Padding, Soft Radii, Raised Shadows) */
  --valle-espaciado-seccion: 10dvh;
  --valle-radio-esquinas: 16px;
  --valle-sombra-estandar: 0 12px 28px rgba(0, 0, 0, 0.15);
  --valle-transicion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET Y CONFIGURACIÓN BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--valle-fuente-cuerpo);
  color: var(--valle-texto-oscuro);
  background-color: var(--valle-superficie-clara);
}

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

/* --- PROGRESO DE LECTURA (Scroll-driven) --- */
.valle-progreso-pantalla {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--valle-oro-oliva), var(--valle-verde-brillante));
  width: 0%;
  z-index: 10000;
  animation: valle-crecer-barra linear;
  animation-timeline: scroll();
}

@keyframes valle-crecer-barra {
  to { width: 100%; }
}

/* --- ANIMACIÓN REVEAL AL SCROLL --- */
.valle-revelacion-scrol {
  animation: valle-aparecer-elemento linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes valle-aparecer-elemento {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- HEADER / NAVEGACIÓN STICKY --- */
.valle-cabecera-principal {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--valle-superficie-oscura);
  border-bottom: 1px solid var(--valle-borde-suave);
  padding: 1rem 2rem;
}

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

.valle-enlace-home {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--valle-texto-claro);
  font-family: var(--valle-fuente-titulos);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.valle-logo-icono {
  width: 40px;
  height: 40px;
  fill: var(--valle-oro-oliva);
}

/* Menú de Navegación */
.valle-menu-navegacion {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.valle-menu-enlace {
  color: var(--valle-texto-claro);
  text-decoration: none;
  font-family: var(--valle-fuente-titulos);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--valle-transicion);
  position: relative;
  padding: 5px 0;
}

.valle-menu-enlace::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--valle-oro-oliva);
  transition: var(--valle-transicion);
}

.valle-menu-enlace:hover::after {
  width: 100%;
}

.valle-menu-enlace:hover {
  color: var(--valle-oro-oliva);
}

/* Menú Hamburguesa Móvil (CSS Only) */
.valle-menu-toggle-input {
  display: none;
}

.valle-hamburguesa-etiqueta {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.valle-hamburguesa-etiqueta span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--valle-texto-claro);
  border-radius: 3px;
  transition: var(--valle-transicion);
}

/* --- HERO FULLSCREEN (PRESET A) --- */
.valle-hero-completo {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(10, 15, 24, 0.65), rgba(10, 15, 24, 0.75)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 0 1.5rem;
}

.valle-hero-informativo {
  max-width: 900px;
  z-index: 2;
  margin-bottom: 40px;
}

.valle-hero-titulo {
  font-family: var(--valle-fuente-titulos);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--valle-texto-claro);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.valle-hero-titulo span {
  color: var(--valle-oro-oliva);
}

.valle-hero-bajada {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--valle-texto-claro);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

/* Botones con estilo Píldora */
.valle-boton-pildora {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--valle-oro-oliva), var(--valle-verde-brillante));
  color: var(--valle-texto-claro);
  font-family: var(--valle-fuente-titulos);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 999px;
  box-shadow: var(--valle-sombra-estandar);
  transition: var(--valle-transicion);
  border: none;
  cursor: pointer;
}

.valle-boton-pildora:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 168, 92, 0.35);
  filter: brightness(1.1);
}

/* --- BARRA DE ESTADÍSTICAS FLOTANTE (PRESET A) --- */
.valle-estadisticas-flotantes {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.valle-estadisticas-contenedor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  background-color: var(--valle-superficie-oscura);
  border: 1px solid var(--valle-borde-suave);
  padding: 2rem;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.valle-estadistica-tarjeta {
  text-align: center;
  padding: 1rem;
}

.valle-est-numero {
  font-family: var(--valle-fuente-titulos);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--valle-oro-oliva);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.valle-est-texto {
  font-size: 0.9rem;
  color: var(--valle-texto-claro);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SECCIONES DE CONTENIDO ZIGZAG (PRESET A) --- */
.valle-seccion-lectura {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: var(--valle-superficie-clara);
}

.valle-seccion-lectura-oscura {
  background-color: var(--valle-fondo-profundo);
  color: var(--valle-texto-claro);
}

.valle-zigzag-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.valle-bloque-intercalado {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.valle-bloque-intercalado:nth-child(even) {
  flex-direction: row-reverse;
}

.valle-columna-imagen {
  flex: 1;
  position: relative;
  min-height: 380px;
}

.valle-imagen-recortada-derecha {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: var(--valle-sombra-estandar);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.valle-imagen-recortada-izquierda {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: var(--valle-sombra-estandar);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.valle-columna-texto {
  flex: 1.2;
}

.valle-categoria-tag {
  display: inline-block;
  font-family: var(--valle-fuente-titulos);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--valle-oro-oliva);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.valle-titulo-bloque {
  font-family: var(--valle-fuente-titulos);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--valle-texto-oscuro);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.valle-seccion-lectura-oscura .valle-titulo-bloque {
  color: var(--valle-texto-claro);
}

.valle-parrafo {
  color: var(--valle-texto-oscuro);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.valle-seccion-lectura-oscura .valle-parrafo {
  color: var(--valle-texto-claro);
  opacity: 0.85;
}

/* --- CUADRÍCULA DE BENEFICIOS (FEATURES) --- */
.valle-seccion-beneficios {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: #f1f5f9;
}

.valle-titulo-centrado {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}

.valle-titulo-centrado h2 {
  font-family: var(--valle-fuente-titulos);
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.valle-grid-beneficios {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.valle-tarjeta-beneficio {
  background-color: var(--valle-superficie-clara);
  padding: 2.5rem 2rem;
  border-radius: var(--valle-radio-esquinas);
  border-left: 4px solid var(--valle-oro-oliva);
  box-shadow: var(--valle-sombra-estandar);
  transition: var(--valle-transicion);
}

.valle-tarjeta-beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

.valle-beneficio-icono-contenedor {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 92, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.valle-beneficio-icono {
  width: 32px;
  height: 32px;
  fill: var(--valle-oro-oliva);
}

.valle-beneficio-titulo {
  font-family: var(--valle-fuente-titulos);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--valle-texto-oscuro);
}

.valle-beneficio-descripcion {
  font-size: 0.95rem;
  color: var(--valle-texto-mutado);
}

/* --- LÍNEA DE TIEMPO (CÓMO FUNCIONA) --- */
.valle-seccion-cronologia {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: var(--valle-fondo-profundo);
  color: var(--valle-texto-claro);
}

.valle-cronologia-contenedor {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

/* Línea central */
.valle-cronologia-contenedor::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--valle-borde-suave);
  transform: translateX(-50%);
}

.valle-cronologia-hito {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4rem;
  position: relative;
}

.valle-cronologia-hito:last-child {
  margin-bottom: 0;
}

.valle-cronologia-panel {
  width: 45%;
  background-color: var(--valle-superficie-oscura);
  padding: 2rem;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: var(--valle-sombra-estandar);
  border: 1px solid var(--valle-borde-suave);
}

.valle-cronologia-hito:nth-child(even) {
  flex-direction: row-reverse;
}

.valle-cronologia-circulo {
  position: absolute;
  left: 50%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--valle-oro-oliva);
  color: var(--valle-texto-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--valle-fuente-titulos);
  font-weight: 800;
  font-size: 1.2rem;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 15px rgba(197, 168, 92, 0.4);
}

.valle-cronologia-titulo {
  font-family: var(--valle-fuente-titulos);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--valle-oro-oliva);
  margin-bottom: 0.75rem;
}

/* --- SECCIÓN CTA STRIP (PRESET A) --- */
.valle-franja-accion {
  position: relative;
  padding: 8dvh 1.5rem;
  background-image: linear-gradient(rgba(10, 15, 24, 0.8), rgba(10, 15, 24, 0.85)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.valle-franja-accion-contenedor {
  max-width: 800px;
  margin: 0 auto;
}

.valle-franja-titulo {
  font-family: var(--valle-fuente-titulos);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--valle-texto-claro);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.valle-franja-texto {
  font-size: 1.1rem;
  color: var(--valle-texto-claro);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* --- PÁGINA EXPERTO ESPECÍFICO --- */
.valle-banner-experto {
  padding: 8dvh 1.5rem;
  background-image: linear-gradient(rgba(10, 15, 24, 0.75), rgba(10, 15, 24, 0.85)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--valle-texto-claro);
}

.valle-banner-expert-contenido {
  max-width: 800px;
  margin: 0 auto;
}

.valle-banner-expert-contenido h1 {
  font-family: var(--valle-fuente-titulos);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Perfil Experto Split */
.valle-bloque-perfil {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: var(--valle-superficie-clara);
}

.valle-perfil-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.valle-perfil-imagen-marco {
  flex: 1;
}

.valle-perfil-imagen-marco img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: var(--valle-sombra-estandar);
}

.valle-perfil-descripcion {
  flex: 1;
}

.valle-perfil-descripcion h2 {
  font-family: var(--valle-fuente-titulos);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* --- FORMULARIO DE RESERVA --- */
.valle-formulario-seccion {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: var(--valle-superficie-clara);
}

.valle-formulario-tarjeta {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--valle-superficie-oscura);
  padding: 3rem 2.5rem;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border: 1px solid var(--valle-borde-suave);
  color: var(--valle-texto-claro);
}

.valle-formulario-tarjeta h2 {
  font-family: var(--valle-fuente-titulos);
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--valle-oro-oliva);
}

.valle-form-grupo {
  margin-bottom: 1.5rem;
}

.valle-form-etiqueta {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--valle-texto-claro);
  letter-spacing: 1px;
}

.valle-campo-entrada {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--valle-borde-suave);
  border-radius: 8px;
  color: var(--valle-texto-claro);
  font-family: var(--valle-fuente-cuerpo);
  font-size: 1rem;
  transition: var(--valle-transicion);
}

.valle-campo-entrada:focus {
  outline: none;
  border-color: var(--valle-oro-oliva);
  background-color: rgba(255, 255, 255, 0.08);
}

.valle-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.valle-form-checkbox input {
  margin-top: 3px;
  cursor: pointer;
}

.valle-form-checkbox label {
  cursor: pointer;
  color: #abc1d6;
}

.valle-form-checkbox a {
  color: var(--valle-oro-oliva);
  text-decoration: none;
}

.valle-form-checkbox a:hover {
  text-decoration: underline;
}

.valle-enlace-datos {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--valle-texto-claro);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.valle-enlace-datos:hover {
  color: var(--valle-oro-oliva);
}

/* --- FAQ ACCORDION (RESERVE PAGE) --- */
.valle-seccion-faq {
  padding: var(--valle-espaciado-seccion) 1.5rem;
  background-color: #f1f5f9;
}

.valle-faq-contenedor {
  max-width: 800px;
  margin: 0 auto;
}

.valle-faq-titulo-principal {
  text-align: center;
  font-family: var(--valle-fuente-titulos);
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.valle-faq-bloque {
  background-color: var(--valle-superficie-clara);
  margin-bottom: 1.25rem;
  padding: 1.8rem;
  border-radius: var(--valle-radio-esquinas);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--valle-verde-brillante);
}

.valle-faq-pregunta {
  font-family: var(--valle-fuente-titulos);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--valle-texto-oscuro);
  margin-bottom: 0.75rem;
}

.valle-faq-respuesta {
  font-size: 0.95rem;
  color: var(--valle-texto-mutado);
  line-height: 1.6;
}

/* --- PÁGINAS LEGALES (100VH) --- */
.valle-contenedor-legal {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  min-height: 70vh;
}

.valle-contenedor-legal h1 {
  font-family: var(--valle-fuente-titulos);
  font-size: 2.4rem;
  text-transform: uppercase;
  color: var(--valle-texto-oscuro);
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--valle-oro-oliva);
  padding-bottom: 0.5rem;
}

.valle-contenedor-legal h2 {
  font-family: var(--valle-fuente-titulos);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--valle-texto-oscuro);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.valle-contenedor-legal p {
  font-size: 1rem;
  color: var(--valle-texto-oscuro);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* --- FOOTER COMPARTIDO --- */
.valle-pie-principal {
  background-color: var(--valle-superficie-oscura);
  border-top: 1px solid var(--valle-borde-suave);
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  color: var(--valle-texto-claro);
}

.valle-pie-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.valle-pie-enlaces {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.valle-pie-enlace {
  color: #abc1d6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--valle-transicion);
}

.valle-pie-enlace:hover {
  color: var(--valle-oro-oliva);
}

.valle-pie-disclaimer {
  max-width: 800px;
  font-size: 0.8rem;
  color: var(--valle-texto-mutado);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.valle-pie-copyright {
  font-size: 0.8rem;
  color: var(--valle-texto-mutado);
}

/* --- BANNER DE COOKIES --- */
.valle-banner-cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--valle-superficie-oscura);
  border-top: 2px solid var(--valle-oro-oliva);
  color: var(--valle-texto-claro);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}

.valle-banner-cookies.activo {
  transform: translateY(0);
}

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

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

.valle-cookies-texto a {
  color: var(--valle-oro-oliva);
  text-decoration: none;
}

.valle-cookies-texto a:hover {
  text-decoration: underline;
}

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

.valle-cookie-btn-si, .valle-cookie-btn-no {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: var(--valle-fuente-titulos);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  border: none;
  transition: var(--valle-transicion);
}

.valle-cookie-btn-si {
  background-color: var(--valle-oro-oliva);
  color: var(--valle-texto-oscuro);
}

.valle-cookie-btn-no {
  background-color: transparent;
  color: var(--valle-texto-claro);
  border: 1px solid var(--valle-texto-claro);
}

.valle-cookie-btn-si:hover {
  filter: brightness(1.1);
}

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

/* --- CARACTERÍSTICAS PÁGINA AGRADECIMIENTO --- */
.valle-gracias-bloque {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(10, 15, 24, 0.85), rgba(10, 15, 24, 0.9)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  color: var(--valle-texto-claro);
  padding: 4rem 1.5rem;
}

.valle-gracias-contenido {
  max-width: 650px;
  background-color: rgba(18, 25, 38, 0.85);
  padding: 3.5rem 2.5rem;
  border-radius: var(--valle-radio-esquinas);
  border: 1px solid var(--valle-borde-suave);
  backdrop-filter: blur(10px);
}

.valle-gracias-icono {
  width: 70px;
  height: 70px;
  fill: var(--valle-oro-oliva);
  margin-bottom: 1.5rem;
}

.valle-gracias-contenido h1 {
  font-family: var(--valle-fuente-titulos);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--valle-oro-oliva);
}

.valle-gracias-contenido p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 991px) {
  .valle-bloque-intercalado, .valle-bloque-intercalado:nth-child(even) {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .valle-columna-imagen {
    min-height: 280px;
    height: 300px;
  }
  
  .valle-imagen-recortada-derecha, .valle-imagen-recortada-izquierda {
    height: 300px;
    clip-path: none;
  }
  
  .valle-perfil-contenedor {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .valle-hamburguesa-etiqueta {
    display: flex;
  }
  
  .valle-menu-navegacion {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--valle-superficie-oscura);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--valle-oro-oliva);
    display: none;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  }
  
  /* Trigger para menú móvil CSS */
  .valle-menu-toggle-input:checked ~ .valle-menu-navegacion {
    display: flex;
  }
  
  .valle-menu-toggle-input:checked ~ .valle-hamburguesa-etiqueta span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .valle-menu-toggle-input:checked ~ .valle-hamburguesa-etiqueta span:nth-child(2) {
    opacity: 0;
  }
  
  .valle-menu-toggle-input:checked ~ .valle-hamburguesa-etiqueta span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .valle-cronologia-contenedor::before {
    left: 40px;
  }
  
  .valle-cronologia-hito {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
    margin-bottom: 3rem;
  }
  
  .valle-cronologia-panel {
    width: 100%;
  }
  
  .valle-cronologia-circulo {
    left: 40px;
  }
  
  .valle-cookies-contenedor {
    flex-direction: column;
    text-align: center;
  }
}