:root {
  --ojo-base-color: #f0f2f6;
  --ojo-superficie: #f0f2f6;
  --ojo-acento: #2563eb;
  --ojo-acento-hover: #1d4ed8;
  --ojo-acento-suave: #dbeafe;
  --ojo-texto-oscuro: #1e293b;
  --ojo-texto-mutado: #64748b;
  --ojo-peligro-suave: #fee2e2;
  --ojo-peligro-borde: #fca5a5;
  --ojo-sombra-oscura: #cfd4de;
  --ojo-sombra-clara: #ffffff;
  
  --font-display: 'Nunito', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --ojo-redondeado-suave: 20px;
  --ojo-redondeado-grande: 32px;
  --ojo-redondeado-pildora: 999px;
  
  --ojo-neumo-levantado: 8px 8px 16px var(--ojo-sombra-oscura), -8px -8px 16px var(--ojo-sombra-clara);
  --ojo-neumo-hundido: inset 6px 6px 12px var(--ojo-sombra-oscura), inset -6px -6px 12px var(--ojo-sombra-clara);
  --ojo-neumo-boton: 4px 4px 8px var(--ojo-sombra-oscura), -4px -4px 8px var(--ojo-sombra-clara);
  --ojo-neumo-boton-foco: inset 3px 3px 6px var(--ojo-sombra-oscura), inset -3px -3px 6px var(--ojo-sombra-clara);
}

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

body {
  background-color: var(--ojo-base-color);
  color: var(--ojo-texto-oscuro);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ojo-texto-oscuro);
  line-height: 1.25;
}

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

/* Scroll Progress indicator */
.ojo-barra-progreso {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--ojo-acento);
  width: 0%;
  z-index: 10000;
  animation: ojo-progreso-carga linear;
  animation-timeline: scroll();
}

@keyframes ojo-progreso-carga {
  to { width: 100%; }
}

/* Header Styles */
.ojo-cabecera-principal {
  background-color: var(--ojo-base-color);
  box-shadow: 0px 4px 20px rgba(207, 212, 222, 0.5);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.ojo-logotipo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ojo-acento);
}

.ojo-logotipo svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--ojo-acento);
  stroke-width: 2;
}

.ojo-navegacion-lista {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.ojo-enlace-nav {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ojo-texto-oscuro);
  padding: 0.5rem 1rem;
  border-radius: var(--ojo-redondeado-pildora);
}

.ojo-enlace-nav:hover, .ojo-enlace-nav.activo {
  box-shadow: var(--ojo-neumo-hundido);
  color: var(--ojo-acento);
}

/* Mobile menu toggle */
.ojo-menu-checkbox {
  display: none;
}

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

.ojo-menu-icono span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--ojo-texto-oscuro);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section (Preset G - Split Layout) */
.ojo-hero-seccion {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.ojo-hero-texto-col {
  position: relative;
}

.ojo-hero-categoria {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: var(--ojo-acento-suave);
  color: var(--ojo-acento);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--ojo-redondeado-pildora);
  margin-bottom: 1.5rem;
  box-shadow: var(--ojo-neumo-boton);
}

.ojo-hero-titulo {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.ojo-hero-descripcion {
  font-size: 1.1rem;
  color: var(--ojo-texto-mutated);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.ojo-cta-boto-link {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--ojo-acento);
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--ojo-redondeado-pildora);
  box-shadow: 4px 4px 12px rgba(37, 99, 235, 0.4), var(--ojo-neumo-boton);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ojo-cta-boto-link:hover {
  background-color: var(--ojo-acento-hover);
  transform: translateY(-2px);
  box-shadow: 2px 2px 6px rgba(37, 99, 235, 0.4), var(--ojo-neumo-boton);
}

/* Floating Neumorphic Badge in Hero */
.ojo-placa-flotante {
  position: absolute;
  bottom: -20px;
  right: 10%;
  background: var(--ojo-superficie);
  padding: 1rem 1.5rem;
  border-radius: var(--ojo-redondeado-suave);
  box-shadow: var(--ojo-neumo-levantado);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: flotar-animacion 4s ease-in-out infinite;
}

.ojo-placa-icono {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ojo-acento-suave);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ojo-neumo-hundido);
}

.ojo-placa-icono svg {
  width: 20px;
  height: 20px;
  fill: var(--ojo-acento);
}

.ojo-placa-texto h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.ojo-placa-texto p {
  font-size: 0.8rem;
  color: var(--ojo-texto-mutado);
}

.ojo-hero-imagen-col {
  position: relative;
}

.ojo-hero-marco-imagen {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado), inset 0px 0px 0px 8px var(--ojo-base-color);
  overflow: hidden;
  border: 12px solid var(--ojo-base-color);
}

.ojo-hero-marco-imagen img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ojo-hero-marco-imagen:hover img {
  transform: scale(1.05);
}

/* Content Layout (Preset G - Problem/Solution) */
.ojo-seccion-desafio-solucion {
  padding: 10dvh 2rem;
  background-color: var(--ojo-base-color);
}

.ojo-desafio-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-bloques-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.ojo-bloque-desafio {
  background-color: var(--ojo-superficie);
  padding: 3rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-hundido);
  border: 1px solid var(--ojo-peligro-borde);
}

.ojo-bloque-desafio h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #b91c1c;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ojo-bloque-solucion {
  background-color: var(--ojo-superficie);
  padding: 3rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.ojo-bloque-solucion h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--ojo-acento);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ojo-lista-puntos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ojo-lista-puntos li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
}

.ojo-lista-puntos li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  top: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.ojo-bloque-desafio .ojo-lista-puntos li::before {
  color: #ef4444;
}

.ojo-bloque-solucion .ojo-lista-puntos li::before {
  color: var(--ojo-acento);
}

/* Full Width Overlay Image Banner */
.ojo-banner-ancho {
  position: relative;
  height: 45vh;
  border-radius: var(--ojo-redondeado-grande);
  overflow: hidden;
  box-shadow: var(--ojo-neumo-levantado);
  border: 10px solid var(--ojo-base-color);
  margin-top: 4rem;
}

.ojo-banner-ancho img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ojo-banner-ancho-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.ojo-banner-ancho-overlay h4 {
  color: #ffffff;
  font-size: 2rem;
  max-width: 800px;
}

/* Features Neumorphic Grid (Preset G) */
.ojo-seccion-atributos {
  padding: 10dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-seccion-cabecera {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ojo-seccion-cabecera h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ojo-seccion-cabecera p {
  color: var(--ojo-texto-mutado);
  font-size: 1.1rem;
}

.ojo-atributos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.ojo-tarjeta-atributo {
  background: var(--ojo-superficie);
  padding: 3rem 2rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-hundido);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
  text-align: center;
}

.ojo-tarjeta-atributo:hover {
  box-shadow: var(--ojo-neumo-levantado);
  transform: translateY(-4px);
}

.ojo-tarjeta-atributo-icono-envoltorio {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ojo-superficie);
  box-shadow: var(--ojo-neumo-levantado);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.ojo-tarjeta-atributo:hover .ojo-tarjeta-atributo-icono-envoltorio {
  box-shadow: var(--ojo-neumo-hundido);
}

.ojo-tarjeta-atributo-icono-envoltorio svg {
  width: 36px;
  height: 36px;
  fill: var(--ojo-acento);
}

.ojo-tarjeta-atributo h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ojo-tarjeta-atributo p {
  color: var(--ojo-texto-mutado);
  font-size: 0.95rem;
}

/* How It Works Neumorphic Stepper (Preset G) */
.ojo-seccion-pasos {
  padding: 10dvh 2rem;
  background-color: var(--ojo-base-color);
}

.ojo-pasos-contenedor {
  max-width: 1000px;
  margin: 0 auto;
}

.ojo-conector-pasos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  padding: 0 2rem;
}

.ojo-conector-linea {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 3px dashed var(--ojo-sombra-oscura);
  z-index: 1;
  transform: translateY(-50%);
}

.ojo-paso-pildora {
  background: var(--ojo-superficie);
  padding: 0.8rem 2rem;
  border-radius: var(--ojo-redondeado-pildora);
  box-shadow: var(--ojo-neumo-levantado);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ojo-paso-numero {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ojo-acento);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--ojo-neumo-boton);
}

.ojo-paso-nombre {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.ojo-pasos-descripciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.ojo-paso-detalles h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--ojo-texto-oscuro);
}

.ojo-paso-detalles p {
  color: var(--ojo-texto-mutado);
  font-size: 0.95rem;
}

/* CTA Neumorphic Strip (Preset G) */
.ojo-seccion-cta {
  padding: 8dvh 2rem;
  background-color: var(--ojo-base-color);
}

.ojo-cta-tarjeta-centro {
  max-width: 800px;
  margin: 0 auto;
  background: var(--ojo-superficie);
  padding: 4rem 3rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}

.ojo-cta-tarjeta-centro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ojo-cta-tarjeta-centro p {
  color: var(--ojo-texto-mutado);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll reveal effect */
.ojo-efecto-revelar {
  animation: ojo-desvanecer linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 30%;
}

@keyframes ojo-desvanecer {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Expert Page Specifics (Preset G) */
.ojo-expert-boceto {
  padding: 8vh 2rem 4vh 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.ojo-expert-marco {
  max-width: 650px;
  margin: 4rem auto;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 12px solid var(--ojo-base-color);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.ojo-expert-marco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ojo-stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.ojo-stat-ficha {
  background: var(--ojo-superficie);
  padding: 2.5rem;
  border-radius: var(--ojo-redondeado-suave);
  box-shadow: var(--ojo-neumo-hundido);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.ojo-stat-numero {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ojo-acento);
  margin-bottom: 0.5rem;
}

.ojo-stat-etiqueta {
  color: var(--ojo-texto-mutado);
  font-weight: 600;
}

.ojo-expert-biografia {
  max-width: 800px;
  margin: 0 auto 5rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.ojo-expert-bio-col p {
  margin-bottom: 1.5rem;
  color: var(--ojo-texto-mutado);
}

/* Booking Page Specifics (Preset G) */
.ojo-reservar-seccion {
  padding: 8dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-reservar-estructura {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  align-items: start;
}

.ojo-formulario-tarjeta-neu {
  background: var(--ojo-superficie);
  padding: 3.5rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ojo-formulario-tarjeta-neu h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.ojo-formulario-tarjeta-neu p {
  color: var(--ojo-texto-mutado);
  margin-bottom: 2.5rem;
}

.ojo-grupo-campo {
  margin-bottom: 1.8rem;
}

.ojo-grupo-campo label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.ojo-grupo-campo input, .ojo-grupo-campo textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  background-color: var(--ojo-superficie);
  box-shadow: var(--ojo-neumo-hundido);
  border-radius: var(--ojo-redondeado-suave);
  color: var(--ojo-texto-oscuro);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.ojo-grupo-campo input:focus, .ojo-grupo-campo textarea:focus {
  outline: none;
  box-shadow: inset 3px 3px 6px var(--ojo-sombra-oscura), inset -3px -3px 6px var(--ojo-sombra-clara), 0px 0px 0px 2px var(--ojo-acento);
}

.ojo-condiciones-casilla {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ojo-texto-mutado);
}

.ojo-condiciones-casilla input {
  width: 18px;
  height: 18px;
  accent-color: var(--ojo-acento);
  cursor: pointer;
  margin-top: 2px;
}

.ojo-condiciones-casilla a {
  color: var(--ojo-acento);
  text-decoration: underline;
}

.ojo-boton-formulario {
  width: 100%;
  padding: 1.1rem;
  border: none;
  background-color: var(--ojo-acento);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--ojo-redondeado-pildora);
  cursor: pointer;
  box-shadow: var(--ojo-neumo-boton), 4px 4px 12px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.ojo-boton-formulario:hover {
  background-color: var(--ojo-acento-hover);
  transform: translateY(-2px);
}

.ojo-reserva-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ojo-tarjeta-info-receptora {
  background: var(--ojo-superficie);
  padding: 2rem;
  border-radius: var(--ojo-redondeado-suave);
  box-shadow: var(--ojo-neumo-hudido);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--ojo-neumo-hundido);
}

.ojo-tarjeta-info-receptora h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--ojo-acento);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ojo-tarjeta-info-receptora p {
  color: var(--ojo-texto-mutado);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ojo-lista-numerada {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ojo-lista-numerada li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.88rem;
  color: var(--ojo-texto-oscuro);
}

.ojo-lista-numerada li::before {
  content: counter(item) "";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--ojo-acento-suave);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ojo-acento);
  font-weight: bold;
  font-size: 0.75rem;
}

.ojo-lista-numerada {
  counter-reset: item;
}

.ojo-reserva-email {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ojo-acento);
}

/* FAQ Accordion pure CSS */
.ojo-faq-seccion {
  margin-top: 6rem;
  grid-column: span 2;
}

.ojo-faq-seccion h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.ojo-acordeon-bloque {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.ojo-faq-item {
  background: var(--ojo-superficie);
  border-radius: var(--ojo-redondeado-suave);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.ojo-faq-item input {
  display: none;
}

.ojo-faq-gatillo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.ojo-faq-gatillo::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--ojo-acento);
  transition: transform 0.3s;
}

.ojo-faq-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  color: var(--ojo-texto-mutado);
  font-size: 0.95rem;
}

.ojo-faq-item input:checked ~ .ojo-faq-contenido {
  max-height: 250px;
  padding: 0 2rem 1.5rem 2rem;
}

.ojo-faq-item input:checked ~ .ojo-faq-gatillo::after {
  transform: rotate(45deg);
}

/* General Layout for Legal Pages */
.ojo-legal-cuerpo {
  padding: 6dvh 2rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 80vh;
}

.ojo-legal-cuerpo h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.ojo-legal-tarjeta {
  background: var(--ojo-superficie);
  padding: 3.5rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ojo-legal-tarjeta section {
  margin-bottom: 2.5rem;
}

.ojo-legal-tarjeta h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.ojo-legal-tarjeta p {
  color: var(--ojo-texto-mutado);
  margin-bottom: 1.2rem;
}

/* Thank You Page Specifics */
.ojo-gracias-cuerpo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 2rem;
  min-height: 80vh;
}

.ojo-gracias-tarjeta {
  max-width: 650px;
  text-align: center;
  background: var(--ojo-superficie);
  padding: 4rem 3rem;
  border-radius: var(--ojo-redondeado-grande);
  box-shadow: var(--ojo-neumo-levantado);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.ojo-gracias-tarjeta h1 {
  font-size: 3rem;
  color: var(--ojo-acento);
  margin-bottom: 1.5rem;
}

.ojo-gracias-tarjeta p {
  color: var(--ojo-texto-mutado);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.ojo-gracias-imagen {
  width: 100%;
  height: 250px;
  border-radius: var(--ojo-redondeado-suave);
  overflow: hidden;
  box-shadow: var(--ojo-neumo-hundido);
  margin-bottom: 3rem;
  border: 4px solid var(--ojo-base-color);
}

.ojo-gracias-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer Styles */
.ojo-pie-pagina {
  background-color: var(--ojo-base-color);
  padding: 4rem 2rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0px 4px 20px rgba(207, 212, 222, 0.15);
}

.ojo-pie-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.ojo-pie-superior {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.ojo-pie-info {
  max-width: 350px;
}

.ojo-pie-info p {
  color: var(--ojo-texto-mutado);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.ojo-pie-enlaces {
  display: flex;
  gap: 2rem;
}

.ojo-pie-enlaces-col h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.ojo-pie-enlaces-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ojo-pie-enlaces-col a {
  color: var(--ojo-texto-mutado);
  font-size: 0.9rem;
}

.ojo-pie-enlaces-col a:hover {
  color: var(--ojo-acento);
}

.ojo-pie-inferior {
  border-top: 1px solid var(--ojo-sombra-oscura);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.ojo-disclaimer {
  color: var(--ojo-texto-mutado);
  font-size: 0.8rem;
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
}

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

/* Cookie Banner Styles */
.ojo-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ojo-superficie);
  box-shadow: 0px -10px 30px rgba(207, 212, 222, 0.4);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}

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

.ojo-cookie-texto {
  flex: 1;
  min-width: 280px;
}

.ojo-cookie-texto p {
  font-size: 0.9rem;
  color: var(--ojo-texto-oscuro);
}

.ojo-cookie-texto a {
  color: var(--ojo-acento);
  text-decoration: underline;
}

.ojo-cookie-botones {
  display: flex;
  gap: 1rem;
}

.ojo-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--ojo-redondeado-pildora);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.ojo-cookie-btn-acepto {
  background-color: var(--ojo-acento);
  color: #ffffff;
  box-shadow: var(--ojo-neumo-boton);
}

.ojo-cookie-btn-acepto:hover {
  background-color: var(--ojo-acento-hover);
}

.ojo-cookie-btn-rechazo {
  background-color: var(--ojo-superficie);
  color: var(--ojo-texto-mutado);
  box-shadow: var(--ojo-neumo-hundido);
}

.ojo-cookie-btn-rechazo:hover {
  color: var(--ojo-texto-oscuro);
}

/* Float Animation Keyframes */
@keyframes flotar-animacion {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Adaptive Breakpoints */
@media (max-width: 1024px) {
  .ojo-hero-seccion {
    gap: 3rem;
  }
  .ojo-hero-titulo {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ojo-cabecera-principal {
    padding: 1rem;
  }
  .ojo-menu-icono {
    display: flex;
  }
  .ojo-navegacion-lista {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--ojo-base-color);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0px 10px 20px rgba(207, 212, 222, 0.4);
    display: none;
    border-top: 1px solid var(--ojo-sombra-oscura);
  }
  .ojo-menu-checkbox:checked ~ .ojo-navegacion-lista {
    display: flex;
  }
  .ojo-menu-checkbox:checked ~ .ojo-menu-icono span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .ojo-menu-checkbox:checked ~ .ojo-menu-icono span:nth-child(2) {
    opacity: 0;
  }
  .ojo-menu-checkbox:checked ~ .ojo-menu-icono span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .ojo-hero-seccion {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 6dvh 1.5rem;
    text-align: center;
  }
  .ojo-hero-descripcion {
    margin-left: auto;
    margin-right: auto;
  }
  .ojo-placa-flotante {
    right: 5%;
    bottom: -15px;
  }
  .ojo-hero-marco-imagen {
    max-width: 450px;
    margin: 0 auto;
  }
  
  .ojo-bloques-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ojo-bloque-desafio, .ojo-bloque-solucion {
    padding: 2rem;
  }
  .ojo-banner-ancho {
    height: 30vh;
  }
  .ojo-banner-ancho-overlay h4 {
    font-size: 1.4rem;
  }
  
  .ojo-atributos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ojo-conector-pasos {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0;
  }
  .ojo-conector-linea {
    display: none;
  }
  .ojo-pasos-descripciones {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .ojo-reservar-estructura {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ojo-stats-panel {
    grid-template-columns: 1fr;
  }
  .ojo-expert-biografia {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ojo-pie-superior {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ojo-pie-enlaces {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}