/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Theme: LIGHT (Peruvian Nature Inspired) */
  --mov-fondo-puro: #FBFAF5;
  --mov-superficie-suave: #F3EFE0;
  --mov-resalte-esmeralda: #2B5C43;
  --mov-resalte-esmeralda-alfa: rgba(43, 92, 67, 0.1);
  --mov-resalte-oro: #D49B2A;
  --mov-texto-oscuro: #1A221E;
  --mov-texto-atenuado: #4F5E56;
  --mov-borde-fino: rgba(43, 92, 67, 0.15);
  
  /* Fonts */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;

  /* Theme Configurations */
  --mov-redondeado-suave: 16px;
  --mov-sombra-elevada: 0 10px 30px rgba(43, 92, 67, 0.08);
  --mov-sombra-fina: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* --- RESET & BASIC STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--mov-texto-oscuro);
  background-color: var(--mov-fondo-puro);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
}

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

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

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

/* --- HEADER & NAVIGATION --- */
.mov-encabezado-navegacion {
  background-color: var(--mov-fondo-puro);
  border-bottom: 1px solid var(--mov-borde-fino);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.mov-encabezado-navegacion:focus-within {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mov-barra-progreso {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background-color: var(--mov-resalte-oro);
  animation: mov-progreso-anm linear;
  animation-timeline: scroll();
}

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

.mov-navegacion-interior {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mov-logotipo-enlace {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--mov-resalte-esmeralda);
}

.mov-logotipo-enlace svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.mov-menu-enlaces {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mov-menu-enlaces a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mov-texto-oscuro);
  position: relative;
  padding: 0.25rem 0;
}

.mov-menu-enlaces a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mov-resalte-esmeralda);
  transition: width 0.3s ease;
}

.mov-menu-enlaces a:hover::after {
  width: 100%;
}

.mov-menu-enlaces a:hover {
  color: var(--mov-resalte-esmeralda);
}

/* Mobile Hamburger Menu (CSS Only) */
.mov-hamburguesa-check {
  display: none;
}

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

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

/* --- ANNOUNCEMENT BAR --- */
.mov-anuncio-linea {
  background-color: var(--mov-resalte-esmeralda);
  color: var(--mov-fondo-puro);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mov-anuncio-linea a {
  color: var(--mov-resalte-oro);
  margin-left: 0.5rem;
  text-decoration: underline;
}

/* --- HERO SECTION SPLIT --- */
.mov-heroe-partido {
  display: flex;
  min-height: calc(85vh - 50px);
  background-color: var(--mov-superficie-suave);
  position: relative;
}

.mov-heroe-izq {
  flex: 0 0 55%;
  padding: 10dvh 5% 10dvh 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mov-heroe-pre-titulo {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--mov-resalte-oro);
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.mov-heroe-titulo {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  color: var(--mov-resalte-esmeralda);
}

.mov-heroe-descripcion {
  font-size: 1.15rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.mov-boton-principal {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--mov-resalte-oro);
  color: var(--mov-fondo-puro);
  padding: 1rem 2.25rem;
  border-radius: var(--mov-redondeado-suave);
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: var(--mov-sombra-fina);
  border: none;
  cursor: pointer;
}

.mov-boton-principal:hover {
  background-color: var(--mov-resalte-esmeralda);
  transform: translateY(-2px);
  box-shadow: var(--mov-sombra-elevada);
}

.mov-heroe-der {
  flex: 0 0 45%;
  position: relative;
}

.mov-heroe-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- BANNER JOURNAL COMPONENT --- */
.mov-franja-imagen {
  height: 45vh;
  width: 100%;
  object-fit: cover;
}

.mov-columnas-diario-seccion {
  max-width: 1200px;
  margin: -40px auto 10dvh;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

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

.mov-columna-prensa {
  background-color: var(--mov-fondo-puro);
  padding: 2.5rem;
  border-top: 4px solid var(--mov-resalte-esmeralda);
  box-shadow: var(--mov-sombra-elevada);
  border-radius: 0 0 var(--mov-redondeado-suave) var(--mov-redondeado-suave);
}

.mov-columna-prensa h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--mov-resalte-esmeralda);
}

.mov-columna-prensa p {
  color: var(--mov-texto-atenuado);
  font-size: 0.95rem;
}

/* --- MASONRY FEATURES --- */
.mov-caracteristicas-seccion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

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

.mov-seccion-encabezado h2 {
  font-size: 2.5rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 1rem;
}

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

.mov-masonry-contenedor {
  columns: 3 300px;
  column-gap: 1.5rem;
}

.mov-masonry-bloque {
  break-inside: avoid;
  background-color: var(--mov-fondo-puro);
  border: 1px solid var(--mov-borde-fino);
  border-radius: var(--mov-redondeado-suave);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--mov-sombra-fina);
  transition: all 0.3s ease;
}

.mov-masonry-bloque:hover {
  transform: translateY(-4px);
  box-shadow: var(--mov-sombra-elevada);
  border-color: var(--mov-resalte-oro);
}

.mov-masonry-bloque-destacado {
  background-color: var(--mov-resalte-esmeralda-alfa);
  border: 1px solid var(--mov-resalte-esmeralda);
}

.mov-masonry-icono {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--mov-resalte-esmeralda-alfa);
  color: var(--mov-resalte-esmeralda);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mov-masonry-icono svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mov-masonry-bloque h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mov-masonry-bloque p {
  color: var(--mov-texto-atenuado);
  font-size: 0.95rem;
}

/* --- HOW IT WORKS: PROGRESS TRACK --- */
.mov-progreso-seccion {
  background-color: var(--mov-superficie-suave);
  padding: 10dvh 1.5rem;
}

.mov-progreso-contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.mov-progreso-pista {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 3rem;
  gap: 1.5rem;
}

.mov-progreso-paso {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.mov-progreso-conector {
  position: absolute;
  top: 30px;
  left: 10%;
  right: -10%;
  height: 2px;
  border-top: 2px dashed var(--mov-borde-fino);
  z-index: 1;
}

.mov-progreso-paso:last-child .mov-progreso-conector {
  display: none;
}

.mov-circulo-numero {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--mov-fondo-puro);
  border: 3px solid var(--mov-borde-fino);
  color: var(--mov-texto-oscuro);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--mov-sombra-fina);
  transition: all 0.3s ease;
}

.mov-progreso-paso-activo .mov-circulo-numero {
  background-color: var(--mov-resalte-esmeralda);
  border-color: var(--mov-resalte-oro);
  color: var(--mov-fondo-puro);
  transform: scale(1.1);
  box-shadow: var(--mov-sombra-elevada);
}

.mov-progreso-paso h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.mov-progreso-paso p {
  color: var(--mov-texto-atenuado);
  font-size: 0.9rem;
  max-width: 250px;
  margin: 0 auto;
}

/* --- CTA STRIP --- */
.mov-strip-anuncio {
  background-color: var(--mov-resalte-esmeralda);
  color: var(--mov-fondo-puro);
  padding: 8dvh 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mov-strip-anuncio-interior {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mov-strip-anuncio h2 {
  font-size: 2.5rem;
  color: var(--mov-fondo-puro);
  margin-bottom: 1.5rem;
}

.mov-strip-anuncio p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--mov-superficie-suave);
}

.mov-strip-anuncio .mov-boton-principal {
  background-color: var(--mov-resalte-oro);
  color: var(--mov-fondo-puro);
}

.mov-strip-anuncio .mov-boton-principal:hover {
  background-color: var(--mov-fondo-puro);
  color: var(--mov-resalte-esmeralda);
}

/* --- EXPERT PAGE SPECIFICS --- */
.mov-experto-contenido {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

.mov-experto-bloque-bio {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 10dvh;
}

.mov-experto-imagen-contenedor {
  flex: 0 0 45%;
  border-radius: var(--mov-redondeado-suave);
  overflow: hidden;
  box-shadow: var(--mov-sombra-elevada);
}

.mov-experto-texto-contenedor {
  flex: 0 0 55%;
}

.mov-experto-texto-contenedor h2 {
  font-size: 2.5rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 1.5rem;
}

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

/* Horizontal Stats Bar */
.mov-estadisticas-franja {
  background-color: var(--mov-superficie-suave);
  padding: 5rem 1.5rem;
  margin-bottom: 10dvh;
}

.mov-estadisticas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.mov-estadistica-item h3 {
  font-size: 3.5rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.mov-estadistica-item p {
  color: var(--mov-texto-atenuado);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* CSS Only Accordion */
.mov-acordeon-seccion {
  max-width: 800px;
  margin: 0 auto 10dvh;
}

.mov-acordeon-item {
  background-color: var(--mov-fondo-puro);
  border: 1px solid var(--mov-borde-fino);
  border-radius: var(--mov-redondeado-suave);
  margin-bottom: 1rem;
  overflow: hidden;
}

.mov-acordeon-gatillo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--mov-resalte-esmeralda);
  cursor: default;
}

.mov-acordeon-contenido {
  padding: 0 1.5rem 1.5rem;
  color: var(--mov-texto-atenuado);
}

/* --- RESERVE PAGE SPECIFICS --- */
.mov-reserva-seccion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

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

.mov-reserva-info-cartas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mov-info-carta-item {
  background-color: var(--mov-superficie-suave);
  padding: 2rem;
  border-radius: var(--mov-redondeado-suave);
  border-left: 5px solid var(--mov-resalte-oro);
}

.mov-info-carta-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mov-info-carta-item ul {
  list-style: none;
  padding-left: 0;
}

.mov-info-carta-item li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--mov-texto-atenuado);
}

.mov-info-carta-item li::before {
  content: "•";
  color: var(--mov-resalte-esmeralda);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  position: absolute;
}

/* Form block */
.mov-formulario-caja {
  background-color: var(--mov-fondo-puro);
  border: 1px solid var(--mov-borde-fino);
  border-radius: var(--mov-redondeado-suave);
  padding: 3rem;
  box-shadow: var(--mov-sombra-elevada);
}

.mov-formulario-caja h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--mov-resalte-esmeralda);
}

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

.mov-grupo-campo label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.mov-grupo-campo input,
.mov-grupo-campo textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--mov-borde-fino);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background-color: var(--mov-fondo-puro);
  transition: border-color 0.3s;
}

.mov-grupo-campo input:focus,
.mov-grupo-campo textarea:focus {
  border-color: var(--mov-resalte-esmeralda);
}

.mov-checkbox-grupo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mov-checkbox-grupo input {
  margin-top: 0.25rem;
  cursor: pointer;
}

.mov-checkbox-grupo label {
  font-size: 0.85rem;
  color: var(--mov-texto-atenuado);
  font-weight: normal;
  cursor: pointer;
}

.mov-checkbox-grupo a {
  text-decoration: underline;
  color: var(--mov-resalte-esmeralda);
}

.mov-contacto-enlace {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.mov-contacto-enlace a {
  color: var(--mov-resalte-esmeralda);
  font-weight: 700;
  text-decoration: underline;
}

/* FAQ block styles */
.mov-preguntas-bloque {
  margin-top: 10dvh;
}

.mov-preguntas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mov-pregunta-estática {
  background-color: var(--mov-superficie-suave);
  padding: 2rem;
  border-radius: var(--mov-redondeado-suave);
}

.mov-pregunta-estática h4 {
  font-size: 1.15rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 0.75rem;
}

.mov-pregunta-estática p {
  color: var(--mov-texto-atenuado);
  font-size: 0.95rem;
}

/* --- STAT REGULAR PAGES (Privacy Policy, Terms) --- */
.mov-legal-cuerpo {
  max-width: 900px;
  margin: 0 auto;
  padding: 10dvh 1.5rem;
}

.mov-legal-cuerpo h1 {
  font-size: 2.5rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 2rem;
}

.mov-legal-cuerpo h2 {
  font-size: 1.5rem;
  color: var(--mov-resalte-esmeralda);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

/* --- THANK YOU PAGE SPECIFICS --- */
.mov-gracias-bloque {
  text-align: center;
  padding: 12dvh 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.mov-gracias-bloque h1 {
  font-size: 3rem;
  color: var(--mov-resalte-esmeralda);
  margin-bottom: 1.5rem;
}

.mov-gracias-bloque p {
  font-size: 1.2rem;
  color: var(--mov-texto-atenuado);
  margin-bottom: 2.5rem;
}

.mov-gracias-imagen {
  border-radius: var(--mov-redondeado-suave);
  margin-bottom: 2.5rem;
  box-shadow: var(--mov-sombra-elevada);
}

/* --- COOKIE BANNER --- */
.mov-cookie-caja {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--mov-texto-oscuro);
  color: var(--mov-fondo-puro);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

.mov-cookie-caja.mov-oculto {
  display: none !important;
}

.mov-cookie-texto {
  font-size: 0.9rem;
  max-width: 800px;
}

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

.mov-cookie-botones button {
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
}

#mov-aceptar-cookie {
  background-color: var(--mov-resalte-oro);
  color: var(--mov-fondo-puro);
}

#mov-rechazar-cookie {
  background-color: transparent;
  color: var(--mov-fondo-puro);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- FOOTER --- */
.mov-pie-pagina {
  background-color: var(--mov-texto-oscuro);
  color: var(--mov-fondo-puro);
  padding: 8dvh 1.5rem 4dvh;
}

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

.mov-pie-columnas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.mov-pie-logotipo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--mov-resalte-oro);
  margin-bottom: 1rem;
}

.mov-pie-logotipo svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.mov-pie-descripcion {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.mov-pie-enlaces-legales h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--mov-fondo-puro);
}

.mov-pie-enlaces-legales a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.mov-pie-enlaces-legales a:hover {
  color: var(--mov-resalte-oro);
}

.mov-pie-descargo-responsabilidad {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.mov-pie-derechos {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
  .mov-heroe-partido {
    flex-direction: column-reverse;
  }
  
  .mov-heroe-izq {
    flex: 0 0 100%;
    padding: 3rem 1.5rem;
  }
  
  .mov-heroe-der {
    flex: 0 0 100%;
    height: 40vh;
  }
  
  .mov-columnas-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  
  .mov-columnas-diario-seccion {
    margin-top: 2rem;
  }
  
  .mov-progreso-pista {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  
  .mov-progreso-conector {
    display: none;
  }
  
  .mov-experto-bloque-bio {
    flex-direction: column;
    gap: 2rem;
  }
  
  .mov-experto-imagen-contenedor {
    width: 100%;
  }
  
  .mov-estadisticas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mov-reserva-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mov-preguntas-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mov-hamburguesa-icono {
    display: flex;
  }
  
  .mov-menu-enlaces {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--mov-fondo-puro);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid var(--mov-borde-fino);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .mov-hamburguesa-check:checked ~ .mov-menu-enlaces {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .mov-hamburguesa-check:checked ~ .mov-hamburguesa-icono span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mov-hamburguesa-check:checked ~ .mov-hamburguesa-icono span:nth-child(2) {
    opacity: 0;
  }
  
  .mov-hamburguesa-check:checked ~ .mov-hamburguesa-icono span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .mov-heroe-titulo {
    font-size: 2.2rem;
  }
  
  .mov-seccion-encabezado h2 {
    font-size: 2rem;
  }
  
  .mov-cookie-caja {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    text-align: center;
  }
  
  .mov-pie-columnas {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .mov-estadisticas-grid {
    grid-template-columns: 1fr;
  }
}