/* ═══════════════════════════════════════════
   CSS VARIABLES — solo se aplican en .mp-home
   Prefijadas --mp-* para no romper el tema
═══════════════════════════════════════════ */
.mp-home {
  --mp-navy:        #0f2d52;
  --mp-navy-mid:    #163d6e;
  --mp-navy-light:  #1d5490;
  --mp-green:       #2eb89a;
  --mp-green-dark:  #1fa085;
  --mp-green-pale:  #e8f7f3;
  --mp-green-pale2: #d0efe8;
  --mp-white:       #ffffff;
  --mp-offwhite:    #f5f8fa;
  --mp-grey-lt:     #f0f4f7;
  --mp-border:      #dce8f0;
  --mp-text:        #2d4255;
  --mp-muted:       #6b8190;
  --mp-muted-lt:    #9db2bf;
  --mp-amber:       #f0a500;

  --mp-font:      'DM Sans', sans-serif;
  --mp-font-head: 'DM Sans', sans-serif;

  --mp-r:    12px;
  --mp-r-lg: 20px;
  --mp-r-xl: 28px;

  --mp-sh:       0 4px 24px rgba(15,45,82,.10), 0 1px 4px rgba(15,45,82,.06);
  --mp-sh-lg:    0 12px 48px rgba(15,45,82,.16), 0 4px 16px rgba(15,45,82,.08);
  --mp-sh-green: 0 8px 32px rgba(46,184,154,.30);

  font-family: var(--mp-font);
  color: var(--mp-text);
}

/* ── Smooth scroll para los anchor links del home ── */
html:has(.mp-home) { scroll-behavior: smooth; }

/* ── Contenedor ── */
.mp-home .mh-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

/* ── Reset parcial dentro del scope ── */
.mp-home * { box-sizing: border-box; }
.mp-home ul { list-style: none; padding: 0; margin: 0; }
.mp-home a { text-decoration: none; color: inherit; }
.mp-home img { max-width: 100%; display: block; }

/* ── Neutralize theme Cookie/cursive font on ALL em/i inside home ── */
.mp-home em,
.mp-home i {
  font-family: var(--mp-font-head) !important;
  font-style: normal !important;
}

/* ═══════════════════════════════════════════
   TIPOGRAFÍA
═══════════════════════════════════════════ */
.mp-home h1,
.mp-home h2,
.mp-home h3,
.mp-home h4 { font-family: var(--mp-font-head); }

.mh-section-tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mp-green);
  background: var(--mp-green-pale);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.mh-section-tag--white { background: rgba(255,255,255,.15); color: white; }

.mh-section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--mp-navy);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .85rem;
  font-family: var(--mp-font-head);
}
.mh-section-title--white { color: white; }
.mh-section-title em { font-style: normal; color: var(--mp-green); }

.mh-section-sub {
  font-size: 1rem;
  color: var(--mp-muted);
  line-height: 1.75;
  max-width: 580px;
}
.mh-section-sub--dim { color: rgba(255,255,255,.6); }

.mh-t-center { text-align: center; }
.mh-t-center .mh-section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════
   BOTONES
═══════════════════════════════════════════ */
.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.75rem;
  border-radius: var(--mp-r);
  font-family: var(--mp-font);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.mh-btn--green  { background: var(--mp-green); color: white; border-color: var(--mp-green); }
.mh-btn--green:hover { background: var(--mp-green-dark); border-color: var(--mp-green-dark); transform: translateY(-2px); box-shadow: var(--mp-sh-green); }
.mh-btn--wa     { background: #25D366; color: white; border-color: #25D366; }
.mh-btn--wa:hover { background: #20bd5c; transform: translateY(-2px); }
.mh-btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.mh-btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.mh-btn--white-solid { background: white; color: var(--mp-navy); font-weight: 900; border-color: white; }
.mh-btn--white-solid:hover { background: var(--mp-grey-lt); transform: translateY(-2px); }
.mh-btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   SECCIÓN GENÉRICA
═══════════════════════════════════════════ */
.mh-section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.mh-section--grey { background: var(--mp-offwhite); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.mh-hero {
  background: linear-gradient(135deg, #dceef9 0%, #e4f2ec 45%, #f5ece0 100%);
  position: relative;
  padding: clamp(3rem, 7vw, 1rem) 0 clamp(2.5rem, 5vw, 1rem);
  overflow: hidden;
}

/* ── Encabezado centrado ── */
.mh-hero__heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.mh-hero__h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--mp-navy);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: .85rem;
  font-family: var(--mp-font-head);
  white-space: nowrap;
}
.mh-hero__h1 em {
  color: var(--mp-green);
  font-style: normal !important;
}
.mh-hero__sub {
  font-size: 1.05rem;
  color: var(--mp-muted);
  line-height: 1.7;
  margin: 0 auto .9rem;
}
.mh-hero__sub strong { color: var(--mp-navy); }
.mh-hero__rule {
  width: 48px;
  height: 3px;
  background: var(--mp-green);
  border-radius: 999px;
  margin: 0 auto;
}

/* ── Grid imagen + formulario ── */
.mh-hero__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

/* ── Columna visual ── */
.mh-hero__visual {
  display: flex;
  flex-direction: column;
}
.mh-hero__img-wrap {
  position: relative;
  border-radius: var(--mp-r-xl) var(--mp-r-xl) 0 0;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0); /* force stacking context — keeps badge clipped */
}
.mh-hero__img {
  width: 100%;
  height: clamp(260px, 36vw, 380px);
  object-fit: cover;
  object-position: center top;
  display: block;
}
.mh-hero__img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: white;
  border-radius: 999px;
  padding: .38rem .85rem .38rem .6rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 800;
  color: var(--mp-navy);
  box-shadow: var(--mp-sh);
  white-space: nowrap;
  width: fit-content;
  z-index: 2;
  line-height: 1;
}
.mh-hero__img-badge svg { color: var(--mp-green); flex-shrink: 0; }

/* Suppress theme icon-font injection on hero visual elements */
.mh-hero__visual *::before,
.mh-hero__visual *::after {
  content: '' !important;
  display: none !important;
  background: none !important;
}

/* ── Checklist ── */
.mh-hero__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem .75rem;
  background: white;
  border-radius: 0 0 var(--mp-r-xl) var(--mp-r-xl);
  padding: 1rem 1.25rem 1.1rem;
  box-shadow: 0 8px 28px rgba(15,45,82,.08);
}
.mh-hero__feat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--mp-text);
}
.mh-hero__feat svg { color: var(--mp-green); flex-shrink: 0; }

/* ─ Formulario CF7 en hero ─ */
.mh-hero__form {
  background: white;
  border-radius: var(--mp-r-xl);
  overflow: hidden;
  box-shadow: var(--mp-sh-lg);
  padding: 0;
}

/* ── Header verde del formulario ── */
.mh-form__head {
  background: var(--mp-green);
  padding: 1.4rem 1.75rem 1.25rem;
}
.mh-form__head *::before,
.mh-form__head *::after { content: '' !important; display: none !important; }
.mh-form__head h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin: 0 0 .3rem;
  line-height: 1.2;
}
.mh-form__head p {
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  margin: 0;
  line-height: 1.4;
}

.mh-form__body { padding: 1.35rem 1.75rem 1.25rem; }

/* Trust line debajo del botón */
.mh-form__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-size: .74rem;
  color: var(--mp-muted);
  padding: 0 1.75rem 1.25rem;
  margin: 0;
  line-height: 1;
}
.mh-form__trust svg { color: var(--mp-green); flex-shrink: 0; }

/* ── Form 2-col grid ── */
.mh-form__body--grid .wpcf7-form {
  display: grid !important;
  gap: .6rem !important;
}
.mh-form__body--grid .wpcf7-form p { margin: 0 !important; }

/* Tipo de Prótesis (1er campo) y Ciudad (5to) → full width */
.mh-form__body--grid .wpcf7-form p:nth-child(1),
.mh-form__body--grid .wpcf7-form p:nth-child(5) {
  grid-column: 1 / -1 !important;
}
/* Submit, textarea y response → full width */
.mh-form__body--grid .wpcf7-form p:has(input[type="submit"]),
.mh-form__body--grid .wpcf7-form p:has(textarea),
.mh-form__body--grid .wpcf7-form .wpcf7-response-output {
  grid-column: 1 / -1 !important;
}

/* Campos más grandes y legibles */
.mh-form__body--grid .wpcf7-form input:not([type="submit"]),
.mh-form__body--grid .wpcf7-form select,
.mh-form__body--grid .wpcf7-form textarea {
  font-size: .9rem !important;
  padding: .75rem .95rem !important;
  border-radius: 10px !important;
}
.mh-form__body--grid .wpcf7-form select {
  padding-right: 2.1rem !important;
  background-position: right 12px center !important;
}
.mh-form__body--grid .wpcf7-form input[type="submit"] {
  margin-top: .35rem !important;
  border-radius: 10px !important;
}

/* ── Utility helpers (kept for other sections) ── */
.mh-accent  { color: var(--mp-green); }
.mh-green   { color: var(--mp-green); }
.mh-italic  { font-style: normal; font-weight: 700; color: var(--mp-navy); }

/* CF7 field overrides */
.mh-form__body .wpcf7 { margin: 0 !important; }
.mh-form__body .wpcf7-form p {
  margin: 0 0 .4rem !important;
  padding: 0 !important;
}
.mh-form__body .wpcf7-form label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--mp-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .28rem;
  font-family: var(--mp-font) !important;
}
/* Kill ALL icon injection: pseudo-elements on ANY element inside the form */
.mh-form__body .wpcf7-form *::before,
.mh-form__body .wpcf7-form *::after {
  content: '' !important;
  display: none !important;
  background: none !important;
}
/* Re-enable CF7 ajax spinner */
.mh-form__body .wpcf7-form .ajax-loader { display: inline-block !important; }
/* Force our font on all inputs so icon-font chars render as text */
.mh-form__body .wpcf7-form input,
.mh-form__body .wpcf7-form select,
.mh-form__body .wpcf7-form textarea {
  font-family: var(--mp-font) !important;
}
.mh-form__body .wpcf7-form input::placeholder,
.mh-form__body .wpcf7-form textarea::placeholder {
  font-family: var(--mp-font) !important;
  color: var(--mp-muted-lt) !important;
}
/* Control-wrap: clip overflow, no pseudo icon */
.mh-form__body .wpcf7-form .wpcf7-form-control-wrap {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
}

.mh-form__body .wpcf7-form input:not([type="submit"]),
.mh-form__body .wpcf7-form select,
.mh-form__body .wpcf7-form textarea {
  width: 100% !important;
  padding: .65rem .85rem !important;
  border: 1.5px solid var(--mp-border) !important;
  border-radius: var(--mp-r) !important;
  font-family: var(--mp-font) !important;
  font-size: .88rem !important;
  color: var(--mp-text) !important;
  background-color: var(--mp-offwhite) !important;
  outline: none !important;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box !important;
  text-indent: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
/* Inputs & textarea: no icon bleeds */
.mh-form__body .wpcf7-form input:not([type="submit"]),
.mh-form__body .wpcf7-form textarea {
  padding-left: .85rem !important;
  background-image: none !important;
}
/* Select: custom chevron, not the theme icon */
.mh-form__body .wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%236b8190'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-left: .85rem !important;
  padding-right: 2.25rem !important;
}
.mh-form__body .wpcf7-form input:not([type="submit"]):focus,
.mh-form__body .wpcf7-form textarea:focus {
  border-color: var(--mp-green) !important;
  box-shadow: 0 0 0 3px rgba(46,184,154,.15) !important;
  background-color: white !important;
  background-image: none !important;
}
.mh-form__body .wpcf7-form select:focus {
  border-color: var(--mp-green) !important;
  box-shadow: 0 0 0 3px rgba(46,184,154,.15) !important;
  background-color: white !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%232eb89a'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
}
.mh-form__body .wpcf7-form input[type="submit"] {
  width: 100% !important;
  padding: .95rem !important;
  background: var(--mp-navy) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--mp-r) !important;
  font-family: var(--mp-font-head) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  transition: all .2s !important;
  margin-top: .4rem !important;
  background-image: none !important;
  text-indent: 0 !important;
}
.mh-form__body .wpcf7-form input[type="submit"]:hover { background: var(--mp-navy-mid) !important; transform: translateY(-2px) !important; }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.mh-trust {
  background: white;
  border-bottom: 1px solid var(--mp-border);
}
.mh-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mh-trust__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--mp-border);
}
.mh-trust__item:last-child { border-right: none; }
.mh-trust__icon {
  width: 46px; height: 46px;
  background: var(--mp-green-pale);
  border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-green);
  flex-shrink: 0;
}
.mh-trust__val {
  font-family: var(--mp-font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--mp-navy);
  line-height: 1.1;
}
.mh-trust__label { font-size: .76rem; color: var(--mp-muted); line-height: 1.35; }
.mh-trust__stars { color: var(--mp-amber); font-size: .88rem; }

/* ═══════════════════════════════════════════
   BRAND STRIP
═══════════════════════════════════════════ */
.mh-brand-strip {
  background: var(--mp-navy);
  padding: 2rem 0;
  border-bottom: 3px solid var(--mp-green);
}
.mh-brand-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.mh-brand-strip__logos { display: flex; align-items: center; gap: 2rem; }
.mh-brand-logo-box { display: flex; align-items: center; gap: .75rem; }
.mh-brand-logo-icon {
  width: 52px; height: 52px;
  border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mp-font-head);
  font-weight: 900;
  font-size: .95rem;
  flex-shrink: 0;
}
.mh-brand-logo-icon--mp  { background: var(--mp-green); color: white; }
.mh-brand-logo-icon--orto { background: white; color: var(--mp-navy); font-size: .6rem; line-height: 1.1; text-align: center; }
.mh-brand-logo-text strong { display: block; font-size: .95rem; font-weight: 800; color: white; line-height: 1.2; }
.mh-brand-logo-text span  { font-size: .75rem; color: rgba(255,255,255,.55); }
.mh-brand-divider { width: 1px; height: 44px; background: rgba(255,255,255,.12); }
.mh-brand-strip__claim {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  max-width: 420px;
  line-height: 1.55;
}
.mh-brand-strip__claim strong { color: var(--mp-green); }

/* ═══════════════════════════════════════════
   PRECIOS
═══════════════════════════════════════════ */
.mh-price-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Imagen de prótesis en sección precios */
.mh-price-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--mp-r-xl);
  margin-top: 1.75rem;
  display: block;
  box-shadow: var(--mp-sh);
}

.mh-price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.mh-pc {
  background: white;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-r-lg);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.mh-pc:hover { transform: translateY(-5px); box-shadow: var(--mp-sh-lg); border-color: var(--mp-green-pale2); }
.mh-pc--star { border-color: var(--mp-green); background: linear-gradient(135deg, #f0fbf8 0%, white 60%); }
.mh-pc--star::after {
  content: 'Más solicitada';
  position: absolute;
  top: 14px; right: -26px;
  background: var(--mp-green);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .22rem 2.5rem;
  transform: rotate(45deg);
}
.mh-pc__label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--mp-green); margin-bottom: .4rem; }
.mh-pc__name  { font-family: var(--mp-font-head); font-size: 1.1rem; font-weight: 800; color: var(--mp-navy); line-height: 1.25; margin-bottom: .5rem; }
.mh-pc__name small { font-family: var(--mp-font); font-size: .78rem; font-weight: 400; color: var(--mp-muted); }
.mh-pc__desc  { font-size: .83rem; color: var(--mp-muted); line-height: 1.6; margin-bottom: 1rem; }
.mh-pc__price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .35rem; }
.mh-pc__from  { font-size: .75rem; color: var(--mp-muted-lt); }
.mh-pc__amount { font-family: var(--mp-font-head); font-size: 1.65rem; font-weight: 900; color: var(--mp-green); }
.mh-pc__cur   { font-size: .85rem; color: var(--mp-muted); font-weight: 700; }
.mh-pc__incl  { display: flex; align-items: center; gap: .35rem; font-size: .76rem; color: var(--mp-green); font-weight: 700; margin-bottom: 1rem; }
.mh-pc__cta   { display: block; text-align: center; padding: .6rem; border-radius: var(--mp-r); font-size: .83rem; font-weight: 800; transition: background .2s; }
.mh-pc__cta--outline { background: var(--mp-offwhite); color: var(--mp-navy); border: 1.5px solid var(--mp-border); }
.mh-pc__cta--outline:hover { background: var(--mp-green-pale); border-color: var(--mp-green); color: var(--mp-green); }
.mh-pc__cta--solid  { background: var(--mp-green); color: white; }
.mh-pc__cta--solid:hover { background: var(--mp-green-dark); }

/* Factores */
.mh-factors-box {
  background: var(--mp-grey-lt);
  border-radius: var(--mp-r-lg);
  border: 1px solid var(--mp-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.mh-factors-box h3 { font-size: 1.05rem; font-weight: 800; color: var(--mp-navy); margin-bottom: 1.25rem; font-family: var(--mp-font-head); }
.mh-factors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.mh-factor {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .85rem; background: white; border-radius: var(--mp-r); border: 1px solid var(--mp-border);
}
.mh-factor__num { font-family: var(--mp-font-head); font-size: 1.3rem; font-weight: 900; color: var(--mp-green); line-height: 1; min-width: 1.8rem; opacity: .45; }
.mh-factor__body strong { display: block; font-size: .85rem; font-weight: 800; color: var(--mp-navy); margin-bottom: .15rem; }
.mh-factor__body span   { font-size: .8rem; color: var(--mp-muted); line-height: 1.45; }

/* ═══════════════════════════════════════════
   QUÉ ES (navy bg)
═══════════════════════════════════════════ */
.mh-what { background: var(--mp-navy); }
.mh-what__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.mh-what__content p { color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }

.mh-what__visual {
  border-radius: var(--mp-r-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1px;
  overflow: hidden;
}
.mh-comp-table-head {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: .5rem; padding: .65rem 1rem;
  background: var(--mp-green);
  border-radius: var(--mp-r) var(--mp-r) 0 0;
}
.mh-comp-table-head span { font-size: .75rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: .06em; }
.mh-comp-row {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: .5rem; padding: .7rem 1rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.05);
  align-items: start;
}
.mh-comp-row:nth-child(even) { background: rgba(255,255,255,.07); }
.mh-comp-row:last-child { border-radius: 0 0 var(--mp-r) var(--mp-r); border-bottom: none; }
.mh-comp-key { font-size: .82rem; font-weight: 800; color: white; line-height: 1.4; }
.mh-comp-val { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.5; }

.mh-vida-util {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(46,184,154,.1);
  border: 1px solid rgba(46,184,154,.2);
  border-radius: var(--mp-r);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
}
.mh-vida-util__icon {
  width: 44px; height: 44px;
  background: var(--mp-green); border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}
.mh-vida-util__text strong { display: block; font-size: .9rem; font-weight: 800; color: white; margin-bottom: .15rem; }
.mh-vida-util__text span   { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   TIPOS
═══════════════════════════════════════════ */
.mh-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.mh-tc {
  background: white;
  border: 2px solid var(--mp-border);
  border-radius: var(--mp-r-lg);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  transition: all .25s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.mh-tc::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--mp-green);
  border-radius: var(--mp-r-lg) var(--mp-r-lg) 0 0;
  transform: scaleX(0);
  transition: transform .3s;
}
.mh-tc:hover { transform: translateY(-5px); box-shadow: var(--mp-sh-lg); border-color: var(--mp-green-pale2); color: inherit; }
.mh-tc:hover::before { transform: scaleX(1); }
.mh-tc__emoji {
  width: 52px; height: 52px;
  background: var(--mp-green-pale);
  border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.1rem;
}
.mh-tc__name { font-family: var(--mp-font-head); font-size: 1.05rem; font-weight: 800; color: var(--mp-navy); margin-bottom: .55rem; line-height: 1.3; }
.mh-tc__desc { font-size: .84rem; color: var(--mp-muted); line-height: 1.62; flex: 1; margin-bottom: 1.1rem; }
.mh-tc__link { font-size: .82rem; font-weight: 800; color: var(--mp-green); display: flex; align-items: center; gap: .3rem; transition: gap .2s; }
.mh-tc:hover .mh-tc__link { gap: .6rem; }

/* ═══════════════════════════════════════════
   PROCESO (navy bg)
═══════════════════════════════════════════ */
.mh-process { background: var(--mp-navy); }
.mh-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.mh-ps {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--mp-r-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.mh-ps:hover { background: rgba(255,255,255,.07); }
.mh-ps__num {
  font-family: var(--mp-font-head);
  font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1; margin-bottom: .25rem;
  position: absolute; top: 1rem; right: 1.25rem;
}
.mh-ps__icon {
  width: 44px; height: 44px;
  background: var(--mp-green); border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 1rem;
}
.mh-ps h3 { font-size: 1rem; font-weight: 800; color: white; margin-bottom: .55rem; font-family: var(--mp-font-head); }
.mh-ps p  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }
.mh-ps__badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 800;
  color: var(--mp-green);
  text-transform: uppercase; letter-spacing: .07em;
  margin-top: .85rem;
}

/* ═══════════════════════════════════════════
   SERVICIOS TABS
═══════════════════════════════════════════ */
.mh-service-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.mh-st-btn {
  padding: .5rem 1.1rem;
  border-radius: var(--mp-r);
  border: 2px solid var(--mp-border);
  background: white;
  font-family: var(--mp-font);
  font-size: .84rem; font-weight: 800;
  color: var(--mp-muted);
  cursor: pointer;
  transition: all .2s;
}
.mh-st-btn:hover { border-color: var(--mp-green); color: var(--mp-green); }
.mh-st-btn.active { background: var(--mp-navy); border-color: var(--mp-navy); color: white; }

.mh-st-panel { display: none; }
.mh-st-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.mh-st-content h3 { font-family: var(--mp-font-head); font-size: 1.5rem; font-weight: 800; color: var(--mp-navy); margin-bottom: .85rem; line-height: 1.25; }
.mh-st-content p  { color: var(--mp-muted); line-height: 1.75; margin-bottom: .85rem; font-size: .95rem; }
.mh-link { color: var(--mp-green); font-weight: 800; font-size: .95rem; }
.mh-link:hover { color: var(--mp-green-dark); }
.mh-st-visual {
  border-radius: var(--mp-r-xl);
  background: linear-gradient(145deg, var(--mp-green-pale), var(--mp-green-pale2));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--mp-border);
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   E-E-A-T
═══════════════════════════════════════════ */
.mh-eeat { background: var(--mp-grey-lt); }
.mh-eeat__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mh-eeat-card {
  background: white;
  border-radius: var(--mp-r-xl);
  padding: 2.25rem;
  border: 1px solid var(--mp-border);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.mh-eeat-card--navy { background: var(--mp-navy); border-color: var(--mp-navy-mid); }
.mh-eeat-header { display: flex; align-items: center; gap: 1rem; }
.mh-eeat-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--mp-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mp-font-head); font-size: 1.4rem; font-weight: 900; color: white;
  flex-shrink: 0;
}
.mh-eeat-avatar--orto { background: white; }
.mh-eeat-avatar-inner { font-size: .75rem; font-weight: 900; color: var(--mp-navy); line-height: 1.1; text-align: center; }
.mh-eeat-htext strong { display: block; font-size: 1.05rem; font-weight: 800; color: var(--mp-navy); margin-bottom: .15rem; }
.mh-eeat-htext span   { font-size: .8rem; color: var(--mp-muted); }
.mh-eeat-htext--white strong { color: white; }
.mh-eeat-htext--white span   { color: rgba(255,255,255,.55); }
.mh-eeat-body { font-size: .88rem; color: var(--mp-muted); line-height: 1.72; }
.mh-eeat-body--white { color: rgba(255,255,255,.65); }
.mh-cedula-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--mp-green); color: white;
  padding: .4rem .9rem; border-radius: 999px;
  font-size: .78rem; font-weight: 800; width: fit-content;
}
.mh-eeat-bullets { display: flex; flex-direction: column; gap: .5rem; }
.mh-eeat-bullet { display: flex; align-items: center; gap: .7rem; font-size: .85rem; color: var(--mp-text); font-weight: 600; }
.mh-eeat-bullet--white { color: rgba(255,255,255,.8); }
.mh-ebullet-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mp-green); flex-shrink: 0; }
.mh-eeat-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 800; color: var(--mp-green);
  border: 1.5px solid rgba(46,184,154,.3);
  padding: .5rem 1rem; border-radius: var(--mp-r);
  transition: all .2s; width: fit-content;
}
.mh-eeat-link:hover { background: var(--mp-green-pale); border-color: var(--mp-green); color: var(--mp-green); }
.mh-eeat-link--white { color: white; border-color: rgba(255,255,255,.25); }
.mh-eeat-link--white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); color: white; }

/* ═══════════════════════════════════════════
   TESTIMONIOS (navy bg)
═══════════════════════════════════════════ */
.mh-testi { background: var(--mp-navy); }
.mh-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.mh-tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--mp-r-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: background .2s;
}
.mh-tcard:hover { background: rgba(255,255,255,.08); }
.mh-tcard__stars { color: var(--mp-amber); font-size: .95rem; letter-spacing: .08em; }
.mh-tcard__quote { font-size: .93rem; font-style: normal; line-height: 1.7; color: rgba(255,255,255,.8); flex: 1; }
.mh-tcard__footer { display: flex; align-items: center; gap: .85rem; }
.mh-tcard__av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mp-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mp-font-head); font-size: 1rem; font-weight: 900; color: white; flex-shrink: 0;
}
.mh-tcard__name { font-size: .88rem; font-weight: 800; color: white; }
.mh-tcard__tag  { font-size: .75rem; color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════
   POR QUÉ ELEGIRNOS
═══════════════════════════════════════════ */
.mh-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.mh-why-list  { display: flex; flex-direction: column; gap: .85rem; }
.mh-wi {
  display: flex; align-items: flex-start; gap: .95rem;
  padding: 1.1rem 1.25rem;
  background: white; border: 1.5px solid var(--mp-border);
  border-radius: var(--mp-r);
  transition: all .22s;
}
.mh-wi:hover { border-color: var(--mp-green-pale2); transform: translateX(4px); box-shadow: var(--mp-sh); }
.mh-wi__icon {
  width: 38px; height: 38px;
  background: var(--mp-green-pale); border-radius: var(--mp-r);
  display: flex; align-items: center; justify-content: center;
  color: var(--mp-green); flex-shrink: 0;
}
.mh-wi__text strong { display: block; font-size: .88rem; font-weight: 800; color: var(--mp-navy); margin-bottom: .15rem; }
.mh-wi__text span   { font-size: .82rem; color: var(--mp-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.mh-faq { background: var(--mp-offwhite); }
.mh-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-top: 2.5rem; }
.mh-faq-item {
  background: white;
  border: 1.5px solid var(--mp-border);
  border-radius: var(--mp-r);
  overflow: hidden;
}
.mh-faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: none; border: none;
  font-family: var(--mp-font-head);
  font-size: .9rem; font-weight: 800; color: var(--mp-navy);
  text-align: left; cursor: pointer;
  transition: background .15s;
}
.mh-faq-q:hover { background: var(--mp-green-pale); }
.mh-faq-q svg { flex-shrink: 0; color: var(--mp-green); transition: transform .3s; }
.mh-faq-item.open .mh-faq-q svg { transform: rotate(45deg); }
.mh-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 1.3rem; }
.mh-faq-item.open .mh-faq-a { max-height: 300px; padding: 0 1.3rem 1.1rem; }
.mh-faq-a p { font-size: .875rem; color: var(--mp-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════
   CTA FINAL (green bg)
═══════════════════════════════════════════ */
.mh-cta-final {
  background: var(--mp-green);
  position: relative; overflow: hidden;
}
.mh-cta-final::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.08); pointer-events: none;
}
.mh-cta-final::after {
  content: '';
  position: absolute; bottom: -100px; left: 5%;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06); pointer-events: none;
}
.mh-cta-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.mh-cta-title {
  font-family: var(--mp-font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900; color: white;
  line-height: 1.15; margin-bottom: .65rem;
}
.mh-cta-sub { color: rgba(255,255,255,.8); font-size: .95rem; }
.mh-cta-actions { display: flex; flex-direction: column; gap: .85rem; align-items: flex-end; }
.mh-cta-note { font-size: .75rem; color: rgba(255,255,255,.55); text-align: right; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .mh-hero__h1 { white-space: normal; font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .mh-hero__grid, .mh-price-intro, .mh-what__grid,
  .mh-why__grid, .mh-cta-inner, .mh-eeat__grid { grid-template-columns: 1fr; }
  .mh-trust__grid, .mh-price-cards, .mh-types-grid,
  .mh-process-grid, .mh-faq-grid { grid-template-columns: 1fr 1fr; }
  .mh-testi-grid { grid-template-columns: 1fr; }
  .mh-cta-actions { align-items: flex-start; }
  .mh-st-panel.active { grid-template-columns: 1fr; }
  .mh-factors-grid { grid-template-columns: 1fr; }
  .mh-brand-strip__inner { flex-direction: column; gap: 1.25rem; }
  .mh-trust__item { border-right: none; border-bottom: 1px solid var(--mp-border); }
  .mh-trust__item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .mh-trust__grid, .mh-price-cards, .mh-types-grid,
  .mh-process-grid, .mh-faq-grid, .mh-factors-grid { grid-template-columns: 1fr; }
  .mh-brand-strip__logos { flex-direction: column; align-items: flex-start; }
  .mh-hero__feats { grid-template-columns: 1fr; }
  .mh-form__body--grid .wpcf7-form { grid-template-columns: 1fr !important; }
}
