/* --- ARCHIVO DE ESTILOS UNIFICADO: BIENESTAR DE MOVIMIENTO --- */

:root {
  /* Paleta temática basada en el bienestar, la vitalidad y la armonía articular */
  --mov-fondo: #fbfaf7;
  --mov-superficie: #ffffff;
  --mov-tono-principal: #134d4a; /* Verde bosque profundo */
  --mov-tono-acento: #cf6238; /* Arcilla cálida / naranja vital */
  --mov-tono-acento-hover: #b04d27;
  --mov-texto-base: #2a3333; /* Gris pizarra oscuro con excelente contraste */
  --mov-texto-atenuado: #5a6666;
  --mov-borde-suave: rgba(19, 77, 74, 0.12);
  --mov-borde-fuerte: #134d4a;
  --mov-sombra-elevada: 0 12px 35px rgba(19, 77, 74, 0.08);
  --mov-sombra-profunda: 0 20px 45px rgba(19, 77, 74, 0.15);
  --mov-gradiente: linear-gradient(90deg, rgba(19, 77, 74, 0.92) 0%, rgba(19, 77, 74, 0.4) 100%);
  
  /* Tipografías del Preset H */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* --- REGLAS GENERALES Y RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--mov-fondo);
  color: var(--mov-texto-base);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

/* Evitar desbordes horizontales */
body, html {
  overflow-x: hidden;
}

/* Scroll-driven progress bar */
.mov-barra-progreso {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--mov-tono-acento);
  width: 0%;
  z-index: 10000;
  animation: mov-progreso-crecer linear;
  animation-timeline: scroll();
}

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

/* --- ESTILOS DE CABECERA (PRESET H: Minimalist Asymmetric Bold) --- */
.mov-encabezado-principal {
  background-color: var(--mov-superficie);
  border-bottom: 1px solid var(--mov-borde-suave);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1.5rem 2rem;
}

.mov-encabezado-interior {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo tipográfico e ícono SVG */
.mov-logotipo-enlace {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--mov-tono-principal);
}

.mov-logotipo-enlace svg {
  width: 38px;
  height: 38px;
  fill: var(--mov-tono-acento);
}

.mov-logotipo-texto {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1;
}

/* Navegación */
.mov-navegacion-lista {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.mov-navegacion-lista a {
  text-decoration: none;
  color: var(--mov-texto-base);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mov-navegacion-lista a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mov-tono-acento);
  transition: width 0.3s ease;
}

.mov-navegacion-lista a:hover {
  color: var(--mov-tono-acento);
}

.mov-navegacion-lista a:hover::after {
  width: 100%;
}

/* Menú Hamburguesa CSS-Only */
.mov-menu-control {
  display: none;
}

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

.mov-menu-icono span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--mov-tono-principal);
  transition: all 0.3s ease;
}

/* --- BOTONES Y ELEMENTOS DE ACCIÓN --- */
.mov-accion-enlace {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mov-accion-primaria {
  background-color: var(--mov-tono-acento);
  color: var(--mov-superficie);
  border: 2px solid var(--mov-tono-acento);
  box-shadow: var(--mov-sombra-elevada);
}

.mov-accion-primaria:hover {
  background-color: var(--mov-tono-acento-hover);
  border-color: var(--mov-tono-acento-hover);
  transform: translateY(-2px);
}

.mov-accion-fantasma {
  background-color: transparent;
  color: var(--mov-superficie);
  border: 2px solid var(--mov-superficie);
}

.mov-accion-fantasma:hover {
  background-color: var(--mov-superficie);
  color: var(--mov-tono-principal);
  transform: translateY(-2px);
}

/* --- HERO INDEX: Word-by-Word Layout --- */
.mov-portada-asimetrica {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 16dvh 2rem;
  background: linear-gradient(rgba(251, 250, 247, 0.94), rgba(251, 250, 247, 0.94)), url('img/bg.webp') no-repeat center/cover;
}

.mov-portada-contenido {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.mov-titular-por-palabra {
  margin-bottom: 2.5rem;
}

.mov-titular-por-palabra span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
}

/* Desplazamientos asimétricos del Preset H */
.mov-titular-por-palabra span:nth-child(2) {
  margin-left: 10%;
  color: var(--mov-tono-acento);
}

.mov-titular-por-palabra span:nth-child(3) {
  margin-left: 20%;
  text-decoration: underline;
  text-decoration-color: var(--mov-tono-acento);
  text-underline-offset: 10px;
}

.mov-portada-bajada {
  max-width: 580px;
  margin-left: 20%;
  font-size: 1.15rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 3rem;
}

.mov-portada-acciones {
  margin-left: 20%;
}

/* --- CONTENIDO ASIMÉTRICO: 3-Col Masonry de Texto --- */
.mov-mosaico-educativo {
  padding: 16dvh 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.mov-mosaico-columnas {
  columns: 3 320px;
  column-gap: 3.5rem;
  column-rule: 1px solid var(--mov-borde-suave);
}

.mov-bloque-mosaico {
  break-inside: avoid;
  margin-bottom: 3rem;
}

.mov-bloque-mosaico h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--mov-tono-principal);
  position: relative;
  padding-bottom: 0.5rem;
}

.mov-bloque-mosaico h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--mov-tono-acento);
}

.mov-bloque-mosaico p {
  color: var(--mov-texto-base);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.mov-bloque-mosaico svg {
  width: 32px;
  height: 32px;
  fill: var(--mov-tono-acento);
}

/* SECCIÓN INMERSIVA CON FOTO INTEGRADA */
.mov-seccion-impacto-bg {
  height: 60vh;
  position: relative;
  background: url('img/bg2.webp') no-repeat center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 4rem;
}

.mov-impacto-capa {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(19, 77, 74, 0.92) 0%, rgba(19, 77, 74, 0.4) 100%);
  z-index: 1;
}

.mov-impacto-texto {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--mov-superficie);
}

.mov-impacto-texto h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.mov-impacto-texto p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* --- MANIFIESTO: Inline Manifesto Lines --- */
.mov-manifiesto-lineas {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mov-manifiesto-cabecera {
  margin-bottom: 5rem;
  text-align: center;
}

.mov-manifiesto-cabecera h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
}

.mov-manifiesto-lista {
  display: flex;
  flex-direction: column;
}

.mov-manifiesto-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--mov-borde-suave);
  transition: transform 0.3s ease;
}

.mov-manifiesto-item:last-child {
  border-bottom: none;
}

.mov-manifiesto-item:hover {
  transform: translateX(15px);
}

.mov-manifiesto-numero {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--mov-tono-acento);
  min-width: 60px;
}

.mov-manifiesto-contenido {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mov-manifiesto-titulo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
}

.mov-manifiesto-descripcion {
  font-size: 1.05rem;
  color: var(--mov-texto-atenuado);
}

/* --- PASOS ASIMÉTRICOS (How it works) --- */
.mov-pasos-desalineados {
  background-color: var(--mov-superficie);
  padding: 16dvh 2rem;
}

.mov-pasos-interior {
  max-width: 1200px;
  margin: 0 auto;
}

.mov-pasos-titulo-seccion {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 6rem;
  text-align: center;
}

.mov-pasos-grid {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* Colocación asimétrica */
.mov-paso-bloque {
  flex: 1 1 300px;
  position: relative;
  padding-top: 3rem;
}

.mov-paso-bloque:nth-child(2) {
  margin-top: 4rem;
}

.mov-paso-bloque:nth-child(3) {
  margin-top: 8rem;
}

.mov-paso-numero-fondo {
  position: absolute;
  top: -10px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  color: var(--mov-tono-acento);
  opacity: 0.12;
  transform: rotate(-10deg);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mov-paso-contenido {
  position: relative;
  z-index: 2;
}

.mov-paso-titulo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 1rem;
}

.mov-paso-texto {
  font-size: 1.05rem;
  color: var(--mov-texto-atenuado);
}

/* --- FRANJA DE ACCIÓN (CTA Strip) --- */
.mov-franja-impacto {
  background: var(--mov-gradiente);
  padding: 10dvh 4rem;
  color: var(--mov-superficie);
}

.mov-franja-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.mov-franja-mensaje {
  flex: 1 1 600px;
}

.mov-franja-mensaje h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.mov-franja-mensaje p {
  font-size: 1.15rem;
  opacity: 0.9;
}

/* --- EXPERT PAGE: Bio Editorial & Stats --- */
.mov-biografia-editorial {
  padding: 16dvh 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.mov-bio-grid {
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.mov-bio-col-texto {
  flex: 1 1 550px;
}

.mov-bio-col-imagen {
  flex: 1 1 450px;
}

/* Drop-cap para estilo editorial */
.mov-parrafo-destacado::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--mov-tono-acento);
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 4px;
}

.mov-bio-col-texto h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 0.5rem;
}

.mov-bio-subtitulo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mov-tono-acento);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.mov-bio-col-texto p {
  font-size: 1.05rem;
  color: var(--mov-texto-base);
  margin-bottom: 1.5rem;
}

.mov-bio-marco-foto {
  position: relative;
  background-color: var(--mov-tono-acento);
  border-radius: 16px;
}

.mov-bio-foto {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  mix-blend-mode: multiply;
  opacity: 0.9;
}

/* Bloques de Estadísticas Simplificados */
.mov-estadisticas-simples {
  padding: 8dvh 2rem;
  background-color: var(--mov-tono-principal);
  color: var(--mov-superficie);
}

.mov-estadisticas-interior {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3rem;
}

.mov-estat-bloque {
  text-align: center;
}

.mov-estat-numero {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--mov-tono-acento);
  display: block;
  margin-bottom: 0.25rem;
}

.mov-estat-etiqueta {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

/* --- RESERVE PAGE: Formulario de Registro Lineal y FAQ --- */
.mov-registro-seccion {
  padding: 16dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mov-registro-encabezado {
  text-align: center;
  margin-bottom: 5rem;
}

.mov-registro-encabezado h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 1rem;
}

.mov-registro-encabezado p {
  font-size: 1.15rem;
  color: var(--mov-texto-atenuado);
  max-width: 600px;
  margin: 0 auto;
}

.mov-rejilla-registro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .mov-rejilla-registro {
    grid-template-columns: 1fr;
  }
}

/* Tarjetas formativas */
.mov-pilares-educativos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mov-pilar-item {
  background-color: var(--mov-superficie);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--mov-sombra-elevada);
}

.mov-pilar-cabecera {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mov-pilar-cabecera svg {
  width: 32px;
  height: 32px;
  fill: var(--mov-tono-acento);
}

.mov-pilar-cabecera h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
}

.mov-pilar-item p {
  font-size: 1rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 1.5rem;
}

.mov-pilar-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mov-pilar-lista li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--mov-texto-base);
}

.mov-pilar-circulo-icono {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mov-tono-acento);
  display: inline-block;
}

/* Formulario con campos de línea */
.mov-formulario-contenedor {
  background-color: var(--mov-superficie);
  padding: 3.5rem;
  border-radius: 16px;
  box-shadow: var(--mov-sombra-profunda);
}

.mov-formulario-lineal {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mov-grupo-campo {
  display: flex;
  flex-direction: column;
  position: relative;
}

.mov-grupo-campo label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mov-tono-principal);
  margin-bottom: 0.5rem;
}

.mov-entrada-lineal {
  border: none;
  border-bottom: 2px solid var(--mov-tono-principal);
  background-color: transparent;
  padding: 0.8rem 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--mov-texto-base);
  outline: none;
  transition: border-color 0.3s ease;
}

.mov-entrada-lineal:focus {
  border-bottom-color: var(--mov-tono-acento);
}

.mov-grupo-checkbox {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.mov-grupo-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--mov-tono-acento);
  cursor: pointer;
  margin-top: 3px;
}

.mov-grupo-checkbox label {
  font-size: 0.9rem;
  color: var(--mov-texto-atenuado);
  line-height: 1.4;
}

.mov-grupo-checkbox label a {
  color: var(--mov-tono-principal);
  text-decoration: underline;
}

.mov-contacto-correo {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
}

.mov-contacto-correo a {
  color: var(--mov-tono-acento);
  font-weight: 700;
  text-decoration: none;
}

/* --- FAQ ACCORDION (CSS ONLY) --- */
.mov-faq-seccion {
  padding: 12dvh 2rem;
  background-color: var(--mov-fondo);
}

.mov-faq-interior {
  max-width: 800px;
  margin: 0 auto;
}

.mov-faq-titulo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 4rem;
  text-align: center;
}

.mov-acordeon-contenedor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mov-acordeon-bloque {
  background-color: var(--mov-superficie);
  border-radius: 12px;
  box-shadow: var(--mov-sombra-elevada);
  overflow: hidden;
}

.mov-acordeon-control {
  display: none;
}

.mov-acordeon-cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2rem;
  cursor: pointer;
  user-select: none;
}

.mov-acordeon-cabecera h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mov-tono-principal);
}

.mov-acordeon-flecha {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--mov-tono-acento);
  border-bottom: 2px solid var(--mov-tono-acento);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.mov-acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.mov-acordeon-contenido p {
  padding-bottom: 1.8rem;
  color: var(--mov-texto-atenuado);
  font-size: 0.95rem;
}

/* Efecto abrir acordeón */
.mov-acordeon-control:checked ~ .mov-acordeon-cabecera .mov-acordeon-flecha {
  transform: rotate(-135deg);
}

.mov-acordeon-control:checked ~ .mov-acordeon-contenido {
  max-height: 300px;
}

/* --- PÁGINAS LEGALES (Privacy / Terms) --- */
.mov-legal-seccion {
  padding: 16dvh 2rem;
  max-width: 850px;
  margin: 0 auto;
  flex-grow: 1;
}

.mov-legal-seccion h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 1.5rem;
}

.mov-legal-seccion h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.mov-legal-seccion p {
  font-size: 1.05rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 1.5rem;
}

/* --- PÁGINA DE AGRADECIMIENTO (Thank.html) --- */
.mov-agradecimiento-cuerpo {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mov-agradecimiento-tarjeta {
  max-width: 700px;
  margin: 16dvh auto;
  padding: 4rem;
  background-color: var(--mov-superficie);
  border-radius: 16px;
  box-shadow: var(--mov-sombra-profunda);
  text-align: center;
}

.mov-agradecimiento-tarjeta svg {
  width: 80px;
  height: 80px;
  fill: var(--mov-tono-acento);
  margin-bottom: 2rem;
}

.mov-agradecimiento-tarjeta h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--mov-tono-principal);
  margin-bottom: 1rem;
}

.mov-agradecimiento-tarjeta p {
  font-size: 1.15rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 3rem;
}

/* --- PIE DE PÁGINA (Footer) --- */
.mov-pie-pagina {
  background-color: #0b2625; /* Súper oscuro */
  color: var(--mov-superficie);
  padding: 6rem 2rem 3rem;
  border-top: 1px solid var(--mov-borde-suave);
  margin-top: auto;
}

.mov-pie-interior {
  max-width: 1440px;
  margin: 0 auto;
}

.mov-pie-columnas {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.mov-pie-col-marca {
  max-width: 400px;
}

.mov-pie-col-marca svg {
  width: 32px;
  height: 32px;
  fill: var(--mov-tono-acento);
  margin-bottom: 1.5rem;
}

.mov-pie-marca-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.mov-pie-col-marca p {
  font-size: 0.95rem;
  opacity: 0.75;
}

.mov-pie-col-enlaces h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: var(--mov-tono-acento);
}

.mov-pie-enlaces-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mov-pie-enlaces-lista a {
  color: var(--mov-superficie);
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.mov-pie-enlaces-lista a:hover {
  opacity: 1;
  color: var(--mov-tono-acento);
}

.mov-pie-descargo {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.mov-pie-descargo-texto {
  font-size: 0.82rem;
  opacity: 0.55;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.mov-pie-derechos {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* --- BANNER DE COOKIES --- */
.mov-cookies-contenedor {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--mov-superficie);
  border-top: 2px solid var(--mov-tono-acento);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  padding: 1.5rem 2rem;
  z-index: 99999;
  display: none;
}

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

.mov-cookies-texto {
  font-size: 0.95rem;
  color: var(--mov-texto-base);
  flex: 1 1 600px;
}

.mov-cookies-texto a {
  color: var(--mov-tono-principal);
  font-weight: 700;
  text-decoration: underline;
}

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

.mov-cookies-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.mov-cookies-aceptar {
  background-color: var(--mov-tono-principal);
  color: var(--mov-superficie);
}

.mov-cookies-aceptar:hover {
  background-color: var(--mov-tono-acento);
}

.mov-cookies-rechazar {
  background-color: transparent;
  color: var(--mov-texto-atenuado);
  border: 1px solid var(--mov-borde-suave);
}

.mov-cookies-rechazar:hover {
  background-color: #f0eded;
}

/* --- RESPONSIVE Y HAMBURGUESA --- */
@media (max-width: 992px) {
  .mov-navegacion-lista {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--mov-superficie);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    transition: left 0.4s cubic-bezier(0.77,0.2,0.05,1);
    z-index: 1000;
    padding: 3rem;
    box-shadow: var(--mov-sombra-profunda);
  }

  .mov-menu-icono {
    display: flex;
  }

  /* Abrir menú en toggle */
  .mov-menu-control:checked ~ .mov-navegacion-lista {
    left: 0;
  }

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

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

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

  /* Ajustes asimétricos móviles */
  .mov-titular-por-palabra span {
    margin-left: 0 !important;
  }
  
  .mov-portada-bajada, .mov-portada-acciones {
    margin-left: 0;
  }

  .mov-paso-bloque {
    margin-top: 0 !important;
  }
  
  .mov-pasos-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .mov-pie-columnas {
    flex-direction: column;
    gap: 3rem;
  }

  .mov-mosaico-columnas {
    columns: 1;
    column-gap: 0;
  }

  .mov-seccion-impacto-bg {
    padding: 2rem;
  }
  
  .mov-agradecimiento-tarjeta {
    padding: 2rem;
  }
}