/* ==========================================================================
   MENTE PODEROSA — funnel premium de alto ticket
   Depende de css/styles.css: aquí NO se redefine ningún color de marca,
   todo sale de las variables existentes (--gold, --ink, --paper…).
   Solo se añade lo específico de esta landing.
   ========================================================================== */

.mp {
  --mp-negro: #08070a;          /* más profundo que --ink: da sensación de lujo */
  --mp-panel: #100e12;
  --mp-borde: rgba(176, 141, 87, 0.28);
  --mp-texto: #f4f1ea;
  --mp-texto-suave: #cbc4b8;    /* ~9:1 sobre el fondo: legible de verdad */
  --mp-aire: clamp(72px, 9vw, 132px);

  background: var(--mp-negro);
  color: var(--mp-texto);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;              /* base propia: styles.css usa 20px, aquí estorba */
  line-height: 1.7;
}
.mp * { box-sizing: border-box; }
.mp img { max-width: 100%; height: auto; display: block; }

.mp-contenedor {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.mp-seccion { padding: var(--mp-aire) 0; position: relative; }
.mp-seccion--panel { background: var(--mp-panel); }

/* ── Tipografía ── */
.mp h1, .mp h2, .mp h3, .mp h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;      /* límite: por debajo de -0.04em las letras se tocan */
  text-wrap: balance;
  margin: 0 0 0.5em;
  color: #fdfcf9;
}
.mp h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); }
.mp h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
.mp h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
.mp p  { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }
.mp .mp-suave { color: var(--mp-texto-suave); }

.mp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.mp-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ==========================================================================
   Botones
   ========================================================================== */
.mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  min-height: 56px;
  border: none;
  border-radius: 4px;           /* casi recto: más serio que las píldoras */
  background: var(--gold);
  color: #0a0908;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.32s ease, box-shadow 0.32s ease;
  -webkit-tap-highlight-color: transparent;
}
.mp-btn:hover,
.mp-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--gold-bright);
  box-shadow: 0 12px 30px rgba(176, 141, 87, 0.32);
}
.mp-btn:active { transform: translateY(0) scale(0.99); }
.mp-btn:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.mp-btn--fantasma {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--mp-borde);
}
.mp-btn--fantasma:hover,
.mp-btn--fantasma:focus-visible {
  background: rgba(176, 141, 87, 0.1);
  border-color: var(--gold);
  box-shadow: none;
}
.mp-btn--grande { padding: 21px 44px; min-height: 64px; font-size: 1.05rem; }
.mp-btn--bloque { width: 100%; }

.mp-enlace-suave {
  color: var(--mp-texto-suave);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(203, 196, 184, 0.35);
  transition: color 0.25s, border-color 0.25s;
}
.mp-enlace-suave:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* ==========================================================================
   Barra de escasez
   ========================================================================== */
.mp-barra {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #0a0908;
  border-bottom: 1px solid var(--mp-borde);
  padding: 9px 0;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--mp-texto-suave);
}
.mp-barra strong { color: var(--gold-bright); font-weight: 600; }
.mp-barra-punto {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  margin-right: 8px;
  vertical-align: middle;
  animation: mp-latido 2.6s ease-in-out infinite;
}
@keyframes mp-latido { 50% { opacity: 0.35; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.mp-hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.mp-hero::after {                /* halo dorado único: sin degradados ruidosos */
  content: '';
  position: absolute;
  top: -25%; right: -12%;
  width: 62vw; height: 62vw;
  max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.15), transparent 68%);
  pointer-events: none;
}
.mp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.mp-hero h1 span { color: var(--gold-bright); font-style: italic; }
.mp-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: var(--mp-texto-suave);
  max-width: 54ch;
  margin-bottom: 34px;
}
.mp-hero-acciones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.mp-marcadores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: var(--mp-texto-suave);
}
.mp-marcadores span { display: inline-flex; align-items: center; gap: 8px; }
.mp-marcadores svg { color: var(--gold); flex-shrink: 0; }

.mp-hero-figura { position: relative; }
.mp-hero-figura img {
  width: 100%;
  border-radius: 3px;
  filter: grayscale(100%) contrast(1.06);
  border: 1px solid var(--mp-borde);
}
.mp-hero-figura::before {         /* marco desplazado: profundidad sin sombras */
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold);
  opacity: 0.4;
  border-radius: 3px;
  pointer-events: none;
}

/* ==========================================================================
   Problema · tarjetas de costo
   ========================================================================== */
.mp-costos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 1px;                       /* rejilla continua, sin tarjetas flotantes */
  background: var(--mp-borde);
  border: 1px solid var(--mp-borde);
  margin-top: 48px;
}
.mp-costo {
  background: var(--mp-negro);
  padding: 34px 28px;
  transition: background 0.4s ease;
}
.mp-costo:hover { background: #0d0b10; }
.mp-costo h3 {
  font-size: 1.02rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.mp-costo p { font-size: 0.92rem; color: var(--mp-texto-suave); margin: 0; }

.mp-cierre {
  margin-top: 48px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: #fdfcf9;
  max-width: 60ch;
}

/* ==========================================================================
   Pilares del método
   ========================================================================== */
.mp-pilares { margin-top: 56px; display: flex; flex-direction: column; gap: 4px; }
.mp-pilar {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mp-pilar:last-child { border-bottom: none; }
.mp-pilar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.55;
  font-weight: 700;
}
.mp-pilar h3 { margin-bottom: 8px; }
.mp-pilar p { color: var(--mp-texto-suave); margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   VSL — facade: el iframe solo se carga al pulsar play
   ========================================================================== */
.mp-vsl { max-width: 920px; margin: 0 auto; }
.mp-vsl-marco {
  position: relative;
  aspect-ratio: 16 / 9;          /* reserva el espacio: cero saltos de layout */
  background: #000;
  border: 1px solid var(--gold);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.mp-vsl-marco img,
.mp-vsl-marco iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.mp-vsl-marco img { filter: brightness(0.62); transition: filter 0.5s, transform 0.7s; }
.mp-vsl-marco:hover img { filter: brightness(0.75); transform: scale(1.02); }

.mp-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.mp-play-circulo {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0908;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background 0.35s;
  box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.55);
  animation: mp-pulso 3s ease-out infinite;
}
@keyframes mp-pulso {
  0%   { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.5); }
  70%  { box-shadow: 0 0 0 26px rgba(176, 141, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(176, 141, 87, 0); }
}
.mp-vsl-marco:hover .mp-play-circulo { transform: scale(1.08); background: var(--gold-bright); }
.mp-play span {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}
.mp-play:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: -6px; }

/* ==========================================================================
   Testimonios
   ========================================================================== */
.mp-testimonios {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.mp-testimonios::-webkit-scrollbar { height: 6px; }
.mp-testimonios::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.mp-testi {
  flex: 0 0 clamp(230px, 27vw, 280px);
  scroll-snap-align: start;
  border: 1px solid var(--mp-borde);
  border-radius: 3px;
  overflow: hidden;
  background: var(--mp-panel);
}
.mp-testi img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.mp-testi-pie { padding: 14px 16px; font-size: 0.82rem; color: var(--mp-texto-suave); }
.mp-testi-pie a { color: var(--gold-bright); text-decoration: none; }
.mp-testi-pie a:hover { text-decoration: underline; }

/* ==========================================================================
   Autoridad
   ========================================================================== */
.mp-autoridad {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.mp-autoridad img { border: 1px solid var(--mp-borde); border-radius: 3px; }
.mp-credenciales {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.mp-credencial {
  border-left: 2px solid var(--gold);
  padding-left: 14px;
  font-size: 0.86rem;
  color: var(--mp-texto-suave);
}

/* ==========================================================================
   Beneficios
   ========================================================================== */
.mp-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4px 44px;
  margin-top: 44px;
  list-style: none;
  padding: 0;
}
.mp-beneficios li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.97rem;
  color: var(--mp-texto);
}
.mp-beneficios svg { color: var(--gold); margin-top: 3px; }

/* ==========================================================================
   Oferta · dos tarjetas asimétricas
   ========================================================================== */
.mp-planes {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;   /* el VIP domina visualmente */
  gap: 22px;
  margin-top: 52px;
  align-items: start;
}
.mp-plan {
  border: 1px solid var(--mp-borde);
  border-radius: 4px;
  padding: 36px 32px;
  background: var(--mp-panel);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mp-plan--destacado {
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, #14110f, #0b0a0c);
  padding: 44px 38px;
  position: relative;
}
.mp-plan-etiqueta {
  position: absolute;
  top: -1px; right: 28px;
  background: var(--gold);
  color: #0a0908;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 3px 3px;
}
.mp-plan h3 { font-size: 1.45rem; margin-bottom: 4px; }
.mp-plan-tipo {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 22px;
}
.mp-plan-precio {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: #fdfcf9;
  line-height: 1;
  margin-bottom: 4px;
}
.mp-plan-precio small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--mp-texto-suave);
  letter-spacing: 0.02em;
}
.mp-plan-para {
  font-size: 0.88rem;
  color: var(--mp-texto-suave);
  padding: 16px 0;
  margin: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.mp-plan ul { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.mp-plan li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--mp-texto);
}
.mp-plan li svg { color: var(--gold); margin-top: 4px; }
.mp-plan-nota {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--mp-texto-suave);
  text-align: center;
}

/* ==========================================================================
   Proceso
   ========================================================================== */
.mp-proceso {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
  counter-reset: paso;
}
.mp-paso { position: relative; padding-top: 30px; }
.mp-paso::before {
  counter-increment: paso;
  content: counter(paso);
  position: absolute;
  top: 0; left: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #0a0908;
  background: var(--gold);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.mp-paso::after {
  content: '';
  position: absolute;
  top: 11px; left: 34px; right: -24px;
  height: 1px;
  background: var(--mp-borde);
}
.mp-paso:last-child::after { display: none; }
.mp-paso h3 { font-size: 1.08rem; margin-bottom: 6px; }
.mp-paso p { font-size: 0.88rem; color: var(--mp-texto-suave); margin: 0; }

/* ==========================================================================
   Formulario de aplicación
   ========================================================================== */
.mp-form-caja {
  max-width: 720px;
  margin: 46px auto 0;
  background: var(--mp-panel);
  border: 1px solid var(--mp-borde);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 46px);
}
.mp-paso-form { display: none; animation: mp-entra 0.42s cubic-bezier(0.25, 1, 0.5, 1); }
.mp-paso-form.activo { display: block; }
@keyframes mp-entra {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: none; }
}
.mp-campo { margin-bottom: 20px; }
.mp-campo label {
  display: block;
  font-size: 0.94rem;
  font-weight: 500;
  color: #fdfcf9;
  margin-bottom: 10px;
  line-height: 1.5;
}
.mp-campo .mp-ayuda {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--mp-texto-suave);
  margin-top: 4px;
}
.mp-campo input,
.mp-campo select,
.mp-campo textarea {
  width: 100%;
  background: #08070a;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  padding: 14px 16px;
  color: var(--mp-texto);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.mp-campo textarea { min-height: 108px; resize: vertical; }
.mp-campo input::placeholder,
.mp-campo textarea::placeholder { color: #8d8679; }
.mp-campo input:focus,
.mp-campo select:focus,
.mp-campo textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
}
.mp-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--mp-texto-suave);
  line-height: 1.6;
}
.mp-check input { width: auto; margin-top: 4px; flex-shrink: 0; }
.mp-check a { color: var(--gold-bright); }

.mp-progreso { margin-top: 28px; }
.mp-progreso-cab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--mp-texto-suave);
  margin-bottom: 9px;
}
.mp-atras {
  background: none;
  border: none;
  color: var(--mp-texto-suave);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
}
.mp-atras:hover { color: var(--gold-bright); }
.mp-progreso-riel {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.mp-progreso-fill {
  height: 100%;
  width: 14%;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.mp-resultado { display: none; text-align: center; padding: 20px 0; }
.mp-resultado.visible { display: block; }
.mp-resultado h3 { color: var(--gold-bright); }
.mp-resultado p { margin-left: auto; margin-right: auto; }

/* Aviso cuando la persona no puede asumir la inversión: se ofrece el Club */
.mp-descenso {
  display: none;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--mp-borde);
  border-radius: 3px;
  background: rgba(176, 141, 87, 0.07);
  font-size: 0.88rem;
  color: var(--mp-texto-suave);
}
.mp-descenso.visible { display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.mp-faq { max-width: 820px; margin: 44px auto 0; }
.mp-faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mp-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  color: #fdfcf9;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s;
}
.mp-faq-q:hover { color: var(--gold-bright); }
.mp-faq-q:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.mp-faq-icono {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.mp-faq-item.abierto .mp-faq-icono { transform: rotate(45deg); }
.mp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.25, 1, 0.5, 1);
}
.mp-faq-a p {
  padding-bottom: 22px;
  color: var(--mp-texto-suave);
  font-size: 0.94rem;
  margin: 0;
}

/* ==========================================================================
   Cierre y pie
   ========================================================================== */
.mp-cierre-final { text-align: center; }
.mp-cierre-final h2 { max-width: 20ch; margin-inline: auto; }
.mp-cierre-final p { margin-inline: auto; }

.mp-pie {
  background: #060508;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 46px 0 32px;
  font-family: 'Fira Sans', 'DM Sans', sans-serif;
}
.mp-pie-fila {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--mp-texto-suave);
}
.mp-pie-fila a { color: var(--mp-texto-suave); text-decoration: none; }
.mp-pie-fila a:hover { color: var(--gold-bright); }
.mp-pie-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ==========================================================================
   Revelado al hacer scroll
   El contenido es visible por defecto: la animación solo lo mejora.
   Si el JS no corre, todo se ve igualmente.
   ========================================================================== */
.mp-revelar { opacity: 1; }
.js .mp-revelar {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.js .mp-revelar.visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .mp-hero-grid,
  .mp-autoridad { grid-template-columns: 1fr; }
  .mp-hero-figura { order: -1; max-width: 380px; }
  .mp-hero-figura::before { display: none; }
  .mp-planes { grid-template-columns: 1fr; }
  .mp-proceso { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .mp-paso::after { display: none; }
}
@media (max-width: 560px) {
  .mp-hero { min-height: auto; }
  .mp-btn { width: 100%; }
  .mp-hero-acciones { flex-direction: column; align-items: stretch; }
  .mp-proceso { grid-template-columns: 1fr; }
  .mp-pilar { grid-template-columns: 1fr; gap: 8px; }
  .mp-pilar-num { font-size: 2.1rem; }
  .mp-plan { padding: 28px 22px; }
  .mp-plan--destacado { padding: 32px 24px; }
  .mp-pie-fila { justify-content: center; text-align: center; }
}

@media (hover: none) {
  .mp-btn:hover { transform: none; background: var(--gold); box-shadow: none; }
  .mp-vsl-marco:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .js .mp-revelar { opacity: 1 !important; transform: none !important; transition: none; }
  .mp-play-circulo { animation: none; }
  .mp-barra-punto { animation: none; }
  .mp-btn, .mp-vsl-marco img, .mp-faq-icono, .mp-paso-form { transition: none; animation: none; }
  .mp-btn:hover, .mp-btn:active { transform: none; }
}

@media (prefers-contrast: more) {
  .mp { --mp-texto-suave: #ebe6dc; --mp-borde: rgba(176, 141, 87, 0.6); }
  .mp-costos, .mp-plan { border-width: 1px; }
}


/* ==========================================================================
   AJUSTES 2026 · Firma del hero y capas emergentes
   ========================================================================== */

/* --- Firma bajo el retrato ---------------------------------------------- */
.mp .mp-hero-firma{
  display:block;
  margin-top:1.35rem;
  text-align:center;
  position:relative;
  z-index:2;
}
.mp .mp-hero-firma-nombre{
  display:block;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:clamp(1.5rem, 3.2vw, 2rem);
  font-weight:600;
  letter-spacing:.16em;
  color:var(--gold-bright, #d4a53c);
  line-height:1.15;
}
.mp .mp-hero-firma-rol{
  display:block;
  margin-top:.4rem;
  font-family:'Fira Sans', system-ui, sans-serif;
  font-size:.78rem;
  font-weight:400;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--mp-texto-suave, #cbc4b8);
}
.mp .mp-hero-firma-nombre::after{
  content:'';
  display:block;
  width:56px;
  height:1px;
  margin:.7rem auto 0;
  background:linear-gradient(90deg, transparent, var(--gold, #b08d57), transparent);
}

/* --- Enlaces del pie y enlaces legales en línea -------------------------- */
.mp .mp-pie-enlace,
.mp .mp-enlace-legal{
  appearance:none;
  background:none;
  border:0;
  padding:0;
  margin:0;
  font:inherit;
  color:var(--mp-texto-suave, #cbc4b8);
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-color:rgba(176,141,87,.45);
  transition:color .2s ease, text-decoration-color .2s ease;
}
.mp .mp-pie-enlace:hover,
.mp .mp-enlace-legal:hover,
.mp .mp-pie-enlace:focus-visible,
.mp .mp-enlace-legal:focus-visible{
  color:var(--gold-bright, #d4a53c);
  text-decoration-color:var(--gold-bright, #d4a53c);
}
.mp .mp-enlace-legal{ color:var(--gold, #b08d57); }

/* --- Capa emergente ------------------------------------------------------ */
.mp-sin-scroll{ overflow:hidden; }

.mp .mp-capa{
  position:fixed;
  inset:0;
  z-index:9000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(.75rem, 3vw, 2rem);
  opacity:0;
  transition:opacity .22s ease;
}
.mp .mp-capa[hidden]{ display:none; }
.mp .mp-capa.visible{ opacity:1; }

.mp .mp-capa-fondo{
  position:absolute;
  inset:0;
  background:rgba(4,3,6,.86);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
  cursor:pointer;
}

.mp .mp-capa-caja{
  position:relative;
  width:min(760px, 100%);
  max-height:min(88vh, 900px);
  display:flex;
  flex-direction:column;
  background:var(--mp-panel, #100e12);
  border:1px solid var(--mp-borde, rgba(176,141,87,.28));
  border-radius:14px;
  box-shadow:0 30px 90px rgba(0,0,0,.65);
  overflow:hidden;
  transform:translateY(14px) scale(.985);
  transition:transform .26s cubic-bezier(.22,1,.36,1);
}
.mp .mp-capa.visible .mp-capa-caja{ transform:none; }
.mp .mp-capa-caja--pago{ width:min(1020px, 100%); height:min(90vh, 860px); }

.mp .mp-capa-cabecera{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.1rem clamp(1rem, 3vw, 1.9rem);
  border-bottom:1px solid var(--mp-borde, rgba(176,141,87,.28));
  background:linear-gradient(180deg, rgba(176,141,87,.09), transparent);
  flex-shrink:0;
}
.mp .mp-capa-titulo{
  margin:0;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight:600;
  letter-spacing:.02em;
  color:var(--gold-bright, #d4a53c);
}
.mp .mp-capa-cerrar{
  appearance:none;
  flex-shrink:0;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  font-size:1.7rem;
  line-height:1;
  background:transparent;
  color:var(--mp-texto-suave, #cbc4b8);
  border:1px solid var(--mp-borde, rgba(176,141,87,.28));
  border-radius:50%;
  cursor:pointer;
  transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.mp .mp-capa-cerrar:hover,
.mp .mp-capa-cerrar:focus-visible{
  color:var(--mp-negro, #08070a);
  background:var(--gold-bright, #d4a53c);
  border-color:var(--gold-bright, #d4a53c);
}

/* Texto legal */
.mp .mp-capa-texto{
  padding:clamp(1.1rem, 3vw, 1.9rem);
  overflow-y:auto;
  overscroll-behavior:contain;
  font-family:'Fira Sans', system-ui, sans-serif;
  font-size:.93rem;
  line-height:1.72;
  color:var(--mp-texto, #f4f1ea);
}
.mp .mp-capa-texto p{ margin:0 0 1.05rem; }
.mp .mp-capa-texto p:last-child{ margin-bottom:0; }
.mp .mp-capa-texto strong{ color:var(--gold-bright, #d4a53c); font-weight:600; }
.mp .mp-capa-texto::-webkit-scrollbar{ width:9px; }
.mp .mp-capa-texto::-webkit-scrollbar-thumb{
  background:rgba(176,141,87,.42);
  border-radius:9px;
}

/* Marco del checkout */
.mp .mp-capa-marco{
  position:relative;
  flex:1;
  min-height:420px;
  background:#0b0a0d;
}
.mp .mp-capa-marco iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:#fff;
}
.mp .mp-capa-cargando{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:1rem;
  font-family:'Fira Sans', system-ui, sans-serif;
  font-size:.9rem;
  letter-spacing:.04em;
  color:var(--mp-texto-suave, #cbc4b8);
}
.mp .mp-capa-spinner{
  width:34px;
  height:34px;
  border:2px solid rgba(176,141,87,.25);
  border-top-color:var(--gold-bright, #d4a53c);
  border-radius:50%;
  animation:mp-girar .85s linear infinite;
}
@keyframes mp-girar{ to{ transform:rotate(360deg); } }

.mp .mp-capa-pie{
  flex-shrink:0;
  margin:0;
  padding:.85rem clamp(1rem, 3vw, 1.9rem);
  border-top:1px solid var(--mp-borde, rgba(176,141,87,.28));
  font-family:'Fira Sans', system-ui, sans-serif;
  font-size:.76rem;
  letter-spacing:.03em;
  color:var(--mp-texto-suave, #cbc4b8);
  text-align:center;
}
.mp .mp-capa-pie a{ color:var(--gold-bright, #d4a53c); }

/* En móvil la capa ocupa toda la pantalla: más superficie para el pago */
@media (max-width: 640px){
  .mp .mp-capa{ padding:0; }
  .mp .mp-capa-caja,
  .mp .mp-capa-caja--pago{
    width:100%;
    height:100%;
    max-height:100%;
    border-radius:0;
    border-left:0;
    border-right:0;
  }
}

@media (prefers-reduced-motion: reduce){
  .mp .mp-capa,
  .mp .mp-capa-caja{ transition:none; }
  .mp .mp-capa-spinner{ animation-duration:2.4s; }
}
