/* --- ARCHIVO DE ESTILOS PERSONALIZADOS - PROYECTO MOVILIDAD ACTIVA --- */

:root {
  /* Paleta cromática inspirada en la salud y naturaleza de Chile */
  --mov-bosque-deep: #0f3425;
  --mov-hoja-emerald: #166534;
  --mov-hoja-mint: #f0fdf4;
  --mov-arena-soft: #fafaf9;
  --mov-sol-gold: #c2410c;
  --mov-sol-gold-hover: #9a3412;
  --mov-tierra-dark: #1c1917;
  --mov-slate-gray: #44403c;
  --mov-copo-pure: #ffffff;
  --mov-borde-fino: rgba(28, 25, 23, 0.1);
  --mov-borde-accent: rgba(194, 65, 12, 0.2);

  /* Tipografías aleatorias especificadas */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Estilos visuales del preset */
  --mov-curva-soft: 14px;
  --mov-sombra-raised: 0 10px 30px -10px rgba(28, 25, 23, 0.08);
  --mov-sombra-hover: 0 15px 35px -5px rgba(28, 25, 23, 0.15);
}

/* Reset General */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--mov-tierra-dark);
  background-color: var(--mov-arena-soft);
  line-height: 1.6;
}

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

/* Cabecera Estilo Preset H: Minimalista, tipografía imponente, sin marcos */
.mov-site-head {
  background-color: var(--mov-copo-pure);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--mov-borde-fino);
  padding: 1.5dvh 5vw;
}

.mov-navigation-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mov-site-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
}

.mov-logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--mov-sol-gold);
}

/* Enlaces de Navegación */
.mov-site-nav-group {
  display: flex;
  gap: 30px;
  align-items: center;
}

.mov-site-nav-link {
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mov-slate-gray);
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.mov-site-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mov-sol-gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mov-site-nav-link:hover {
  color: var(--mov-sol-gold);
}

.mov-site-nav-link:hover::after {
  width: 100%;
}

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

.mov-menu-icon-btn {
  display: none;
  cursor: pointer;
  padding: 10px;
}

/* Indicador de progreso de scroll animada */
.mov-scroll-progress-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: var(--mov-sol-gold);
  z-index: 10001;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

@keyframes progress-grow {
  to { width: 100%; }
}

/* Contenido Principal */
main {
  flex-grow: 1;
}

/* --- HERO PRESET H: Word-by-word layout, asimétrico y tipográfico --- */
.mov-hero-showcase {
  padding: 10vh 5vw;
  background-image: linear-gradient(rgba(250, 250, 250, 0.94), rgba(250, 250, 250, 0.94)), url('img/bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.mov-hero-typography-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mov-hero-display-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8.5vw, 9rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  transition: transform 0.5s ease;
}

/* Margen asimétrico en cascada */
.mov-hero-display-word:nth-child(1) { margin-left: 0; }
.mov-hero-display-word:nth-child(2) { margin-left: 10%; color: var(--mov-sol-gold); }
.mov-hero-display-word:nth-child(3) { margin-left: 20%; text-decoration: underline; text-decoration-color: var(--mov-bosque-deep); }
.mov-hero-display-word:nth-child(4) { margin-left: 5%; }

.mov-hero-abstract-phrase {
  margin-top: 5vh;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 600px;
  color: var(--mov-slate-gray);
  margin-bottom: 4vh;
}

/* Botones con estilo Preset H: Sólidos y asimétricos */
.mov-hero-action-anchor {
  display: inline-block;
  padding: 18px 36px;
  background-color: var(--mov-sol-gold);
  color: var(--mov-copo-pure);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--mov-curva-soft);
  box-shadow: var(--mov-sombra-raised);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.mov-hero-action-anchor:hover {
  background-color: var(--mov-sol-gold-hover);
  transform: translateY(-2px);
}

/* --- SECCIÓN CONTENIDO: MASONRY DE 3 COLUMNAS Y CONTRASTE --- */
.mov-editorial-masonry-wrapper {
  padding: 10dvh 5vw;
  background-color: var(--mov-copo-pure);
}

.mov-editorial-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.mov-editorial-masonry {
  columns: 3;
  column-gap: 3.5rem;
  column-rule: 1px solid var(--mov-borde-fino);
}

.mov-editorial-col {
  break-inside: avoid;
  margin-bottom: 2.5rem;
}

.mov-editorial-col-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 1.25rem;
}

.mov-editorial-col-text {
  font-size: 1rem;
  color: var(--mov-slate-gray);
  margin-bottom: 1rem;
}

/* Banner de imagen de fondo completo con superposición de texto en el lado izquierdo */
.mov-banner-image-panel {
  height: 50vh;
  background-image: linear-gradient(to right, rgba(15, 52, 37, 0.9) 30%, rgba(15, 52, 37, 0.4) 100%), url('img/bg2.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  color: var(--mov-copo-pure);
}

.mov-banner-overlay-text {
  max-width: 600px;
}

.mov-banner-overlay-text h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.mov-banner-overlay-text p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  opacity: 0.9;
}

/* --- SECCIÓN FEATURES: DECLARACIONES MANIFIESTO EN LÍNEA --- */
.mov-manifesto-list-section {
  padding: 10dvh 5vw;
  background-color: var(--mov-arena-soft);
}

.mov-manifesto-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mov-manifesto-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 6vh;
  color: var(--mov-bosque-deep);
  border-bottom: 3px solid var(--mov-sol-gold);
  padding-bottom: 1rem;
  display: inline-block;
}

.mov-manifesto-list {
  display: flex;
  flex-direction: column;
}

.mov-manifesto-item {
  display: flex;
  align-items: baseline;
  gap: 30px;
  padding: 4vh 0;
  border-bottom: 1px solid var(--mov-borde-fino);
}

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

.mov-manifesto-count {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  color: var(--mov-sol-gold);
  min-width: 80px;
}

.mov-manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mov-manifesto-item-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
}

.mov-manifesto-item-desc {
  font-size: 1.05rem;
  color: var(--mov-slate-gray);
  max-width: 800px;
}

/* --- SECCIÓN CÓMO FUNCIONA: PASOS CON NÚMEROS ROTADOS --- */
.mov-stepper-offset-flow {
  padding: 10dvh 5vw;
  background-color: var(--mov-copo-pure);
  overflow: hidden;
}

.mov-stepper-container {
  max-width: 1300px;
  margin: 0 auto;
}

.mov-stepper-offset-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 8vh;
}

.mov-stepper-node {
  flex: 1 1 300px;
  position: relative;
  padding: 30px;
  background-color: var(--mov-arena-soft);
  border-radius: var(--mov-curva-soft);
  box-shadow: var(--mov-sombra-raised);
  transition: transform 0.3s ease;
}

.mov-stepper-node:hover {
  transform: translateY(-5px);
}

.mov-stepper-rotated-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 7rem;
  color: var(--mov-sol-gold);
  opacity: 0.12;
  position: absolute;
  top: -30px;
  right: 15px;
  transform: rotate(-12deg);
  pointer-events: none;
  user-select: none;
}

.mov-stepper-text-box h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 1rem;
}

.mov-stepper-text-box p {
  color: var(--mov-slate-gray);
  font-size: 1rem;
}

/* --- BANDA CTA ASIMÉTRICA --- */
.mov-strip-asymmetric {
  padding: 8vh 5vw;
  background: linear-gradient(135deg, var(--mov-bosque-deep) 0%, #1e1b18 100%);
  color: var(--mov-copo-pure);
}

.mov-strip-asymmetric-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mov-strip-slogan {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 800px;
}

.mov-strip-ghost-button {
  display: inline-block;
  padding: 16px 32px;
  border: 2px solid var(--mov-sol-gold);
  background: transparent;
  color: var(--mov-copo-pure);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: var(--mov-curva-soft);
  transition: background-color 0.3s, border-color 0.3s;
}

.mov-strip-ghost-button:hover {
  background-color: var(--mov-sol-gold);
  border-color: var(--mov-sol-gold);
}

/* --- SECCIÓN EXPERTO (expert.html) --- */
.mov-expert-editorial-section {
  padding: 10dvh 5vw;
  background-color: var(--mov-copo-pure);
}

.mov-expert-editorial-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.mov-expert-bio-wrapper {
  padding-right: 2vw;
}

.mov-expert-title-tag {
  font-family: var(--font-display);
  color: var(--mov-sol-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.mov-expert-bio-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.mov-expert-dropcap-para {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--mov-slate-gray);
  margin-bottom: 1.5rem;
}

.mov-expert-dropcap-para::first-letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--mov-sol-gold);
}

.mov-expert-image-side {
  position: relative;
  border-radius: var(--mov-curva-soft);
  overflow: hidden;
  box-shadow: var(--mov-sombra-raised);
}

.mov-expert-image-side img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 500px;
}

/* Estadísticas sin cajas simples en expert.html */
.mov-expert-plain-stats {
  padding: 8vh 5vw;
  background-color: var(--mov-arena-soft);
  border-top: 1px solid var(--mov-borde-fino);
  border-bottom: 1px solid var(--mov-borde-fino);
}

.mov-expert-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.mov-expert-stat-item {
  text-align: left;
}

.mov-expert-stat-digit {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--mov-bosque-deep);
  line-height: 1;
}

.mov-expert-stat-label {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mov-slate-gray);
  letter-spacing: 1px;
  margin-top: 5px;
}

/* --- SECCIÓN DETALLES CLASES Y ACTIVIDADES --- */
.mov-details-grid-cards {
  padding: 10dvh 5vw;
  background-color: var(--mov-copo-pure);
}

.mov-details-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mov-detail-solid-card {
  padding: 40px;
  background-color: var(--mov-arena-soft);
  border-radius: var(--mov-curva-soft);
  border-top: 4px solid var(--mov-sol-gold);
}

.mov-detail-solid-icon-box {
  width: 48px;
  height: 48px;
  fill: var(--mov-sol-gold);
  margin-bottom: 20px;
}

.mov-detail-solid-card h5 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 15px;
}

.mov-detail-solid-list {
  margin-top: 15px;
  padding-left: 20px;
  color: var(--mov-slate-gray);
}

.mov-detail-solid-list li {
  margin-bottom: 8px;
}

/* --- RESERVACIONES (reserve.html) --- */
.mov-reserve-interactive-layout {
  padding: 10dvh 5vw;
  background-color: var(--mov-arena-soft);
}

.mov-reserve-wrapper-container {
  max-width: 1300px;
  margin: 0 auto;
}

.mov-reserve-heading-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 8vh;
}

.mov-reserve-heading-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.mov-reserve-heading-hero p {
  font-size: 1.2rem;
  color: var(--mov-slate-gray);
}

/* Formulario minimalista con inputs subrayados */
.mov-reserve-elegant-form-container {
  max-width: 640px;
  margin: 0 auto 10vh;
  background-color: var(--mov-copo-pure);
  padding: 50px;
  border-radius: var(--mov-curva-soft);
  box-shadow: var(--mov-sombra-raised);
}

.mov-reserve-form-heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--mov-borde-fino);
  padding-bottom: 10px;
}

.mov-form-input-block {
  margin-bottom: 35px;
  position: relative;
}

.mov-form-input-block label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mov-slate-gray);
  margin-bottom: 10px;
}

.mov-form-underlined-input,
.mov-form-underlined-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--mov-borde-fino);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--mov-tierra-dark);
  transition: border-bottom-color 0.3s ease;
  outline: none;
}

.mov-form-underlined-input:focus,
.mov-form-underlined-textarea:focus {
  border-bottom-color: var(--mov-sol-gold);
}

.mov-form-underlined-textarea {
  resize: vertical;
  min-height: 80px;
}

.mov-form-checkbox-shield {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 35px;
  font-size: 0.9rem;
  color: var(--mov-slate-gray);
}

.mov-form-checkbox-shield input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--mov-sol-gold);
}

.mov-form-checkbox-shield a {
  color: var(--mov-sol-gold);
  text-decoration: underline;
}

.mov-reserve-submit-action {
  width: 100%;
  padding: 18px;
  background-color: var(--mov-sol-gold);
  border: none;
  border-radius: var(--mov-curva-soft);
  color: var(--mov-copo-pure);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mov-reserve-submit-action:hover {
  background-color: var(--mov-sol-gold-hover);
}

.mov-contact-anchor-box {
  text-align: center;
  margin-bottom: 10vh;
}

.mov-contact-anchor-label {
  font-size: 1rem;
  color: var(--mov-slate-gray);
}

.mov-contact-anchor-link {
  color: var(--mov-bosque-deep);
  font-weight: 700;
  text-decoration: underline;
}

/* FAQ Acordeón de CSS - Reservas */
.mov-reserve-faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.mov-faq-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 6vh;
}

.mov-accordion-item-details {
  background-color: var(--mov-copo-pure);
  border-radius: var(--mov-curva-soft);
  margin-bottom: 15px;
  box-shadow: var(--mov-sombra-raised);
}

.mov-accordion-summary {
  padding: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mov-accordion-summary::-webkit-details-marker {
  display: none;
}

.mov-accordion-summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--mov-sol-gold);
}

.mov-accordion-item-details[open] .mov-accordion-summary::after {
  content: "−";
}

.mov-accordion-content-text {
  padding: 0 24px 24px;
  color: var(--mov-slate-gray);
  line-height: 1.6;
}

/* --- POLÍTICA DE PRIVACIDAD Y TÉRMINOS (privacy-policy.html & terms-of-service.html) --- */
.mov-legal-content-space {
  padding: 12vh 5vw;
  background-color: var(--mov-copo-pure);
  min-height: 80vh;
}

.mov-legal-wrapper-box {
  max-width: 900px;
  margin: 0 auto;
}

.mov-legal-heading-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 6vh;
  border-bottom: 3px solid var(--mov-sol-gold);
  padding-bottom: 15px;
}

.mov-legal-sub-section {
  margin-bottom: 40px;
}

.mov-legal-sub-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  margin-bottom: 15px;
}

.mov-legal-plain-text {
  font-size: 1.05rem;
  color: var(--mov-slate-gray);
  margin-bottom: 15px;
}

/* --- PÁGINA GRACIAS (thank.html) --- */
.mov-thank-you-view {
  padding: 15vh 5vw;
  background-image: linear-gradient(rgba(250, 250, 250, 0.96), rgba(250, 250, 250, 0.96)), url('img/bg3.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mov-thank-content-box {
  max-width: 700px;
  margin: 0 auto;
}

.mov-thank-main-icon {
  width: 80px;
  height: 80px;
  fill: var(--mov-hoja-emerald);
  margin-bottom: 30px;
}

.mov-thank-heading-bold {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--mov-bosque-deep);
  line-height: 1.1;
  margin-bottom: 20px;
}

.mov-thank-message-para {
  font-size: 1.25rem;
  color: var(--mov-slate-gray);
  margin-bottom: 40px;
}

/* --- COOKIE POPUP BANNER --- */
.mov-cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--mov-tierra-dark);
  color: var(--mov-copo-pure);
  padding: 24px 5vw;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  animation: slide-up-cookie 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.mov-cookie-popup.mov-cookie-hidden {
  display: none !important;
}

.mov-cookie-text-box {
  font-size: 0.95rem;
  max-width: 900px;
}

.mov-cookie-text-box a {
  color: var(--mov-sol-gold);
  text-decoration: underline;
}

.mov-cookie-actions-group {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.mov-cookie-button-accept {
  padding: 12px 24px;
  background-color: var(--mov-sol-gold);
  border: none;
  color: var(--mov-copo-pure);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: var(--mov-curva-soft);
  transition: background-color 0.3s;
}

.mov-cookie-button-accept:hover {
  background-color: var(--mov-sol-gold-hover);
}

.mov-cookie-button-decline {
  padding: 12px 24px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--mov-copo-pure);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: var(--mov-curva-soft);
  transition: border-color 0.3s, color 0.3s;
}

.mov-cookie-button-decline:hover {
  border-color: var(--mov-copo-pure);
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* --- FOOTER EXCLUSIVO PRESET H --- */
.mov-site-foot {
  background-color: var(--mov-bosque-deep);
  color: var(--mov-copo-pure);
  padding: 10dvh 5vw 5vh;
  margin-top: auto;
}

.mov-site-foot-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.mov-foot-primary-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 5vh;
  margin-bottom: 5vh;
}

.mov-foot-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--mov-copo-pure);
  text-transform: uppercase;
}

.mov-foot-nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.mov-foot-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.mov-foot-nav-links a:hover {
  color: var(--mov-sol-gold);
}

.mov-foot-disclaimer {
  max-width: 800px;
  margin: 0 auto 4vh;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-align: center;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.15);
  padding-top: 4vh;
}

.mov-foot-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- RESPONSIVIDAD GENERAL --- */
@media (max-width: 992px) {
  .mov-editorial-masonry {
    columns: 2;
  }
  .mov-expert-editorial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mov-expert-bio-wrapper {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  /* Cabecera Móvil Hamburger CSS */
  .mov-menu-icon-btn {
    display: block;
  }
  
  .mov-site-nav-group {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--mov-copo-pure);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-bottom: 2px solid var(--mov-borde-fino);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .mov-menu-checkbox:checked ~ .mov-site-nav-group {
    transform: translateY(0);
  }

  .mov-hero-display-word {
    font-size: clamp(2.5rem, 10vw, 5rem);
    margin-left: 0 !important;
  }

  .mov-editorial-masonry {
    columns: 1;
  }

  .mov-stepper-offset-grid {
    flex-direction: column;
  }

  .mov-manifesto-item {
    flex-direction: column;
    gap: 15px;
  }

  .mov-manifesto-count {
    min-width: unset;
  }

  .mov-cookie-popup {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .mov-cookie-actions-group {
    justify-content: center;
  }

  .mov-strip-asymmetric-inner {
    text-align: center;
    justify-content: center;
  }

  .mov-reserve-elegant-form-container {
    padding: 30px 20px;
  }
}