:root{
  --navy:#102b63;
  --green:#39a949;
  --green-dark:#2e913b;
  --blue:#204aa6;
  --purple:#7131b9;
  --orange:#f28b25;
  --cyan:#17a6b5;
  --border:#dfe7ef;
  --muted:#596781;
  --shadow:0 8px 20px rgba(16,43,99,.055);
  --font:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body.pmf-page{
  margin:0;
  background:#fff;
  color:#23314d;
  font-family:var(--font);
}
body.pmf-page a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.pmf-shell{
  width:min(1180px,calc(100% - 38px));
  margin:0 auto;
}
.pmf-header{
  background:#fff;
  border-bottom:1px solid #edf1f5;
}
.pmf-header__inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}
.pmf-logo img{
  width:112px;
  height:auto;
}
.pmf-nav{
  display:flex;
  align-items:center;
  gap:32px;
}
.pmf-nav a{
  font-size:12px;
  color:var(--navy);
  font-weight:800;
}
.pmf-header__actions{
  display:flex;
  align-items:center;
  gap:18px;
}
.pmf-login{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--navy);
  font-size:12px;
  font-weight:800;
}
.pmf-login-icon{
  width:16px;
  height:16px;
  display:inline-block;
  background:
    radial-gradient(circle at 50% 35%, transparent 0 3px,#7d8da8 3.5px 4.7px,transparent 5px),
    radial-gradient(ellipse at 50% 88%, transparent 0 6px,#7d8da8 6.5px 7.5px,transparent 8px);
}
.pmf-btn{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  border-radius:7px;
  font-size:12px;
  font-weight:900;
  line-height:1;
  transition:.18s ease;
}
.pmf-btn--green{
  background:var(--green);
  color:#fff!important;
  box-shadow:0 10px 22px rgba(57,169,73,.16);
}
.pmf-btn--green span,
.pmf-card a span,
.pmf-btn--cta span{color:#fff!important}
.pmf-btn--green:hover{background:var(--green-dark)}
.pmf-btn--outline{
  background:#fff;
  color:var(--navy);
  border:2px solid #bdcada;
}
.pmf-main{padding:14px 0 24px}
.pmf-panel{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:var(--shadow);
}
.pmf-hero{padding:0 0 12px}
.pmf-hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.pmf-hero__left{
  padding:24px 22px 20px;
}
.pmf-kicker{
  margin:0 0 8px;
  color:var(--green);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.pmf-hero h1{
  margin:0;
  color:var(--navy);
  font-size:42px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.045em;
}
.pmf-hero h1 span{color:var(--green)}
.pmf-lead{
  margin:15px 0 16px;
  max-width:520px;
  color:var(--muted);
  font-size:14px;
  line-height:1.62;
}
.pmf-hero__right{
  overflow:hidden;
  display:flex;
  align-items:stretch;
  justify-content:center;
  background:#eef8f1;
}
.pmf-hero__right img{
  width:100%;
  height:100%;
  min-height:278px;
  object-fit:cover;
  object-position:center center;
}
.pmf-method{padding:0 0 12px}
.pmf-method__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  padding:14px;
  align-items:center;
}
.pmf-video-card img{
  width:100%;
  border-radius:10px;
}
.pmf-method__content{
  padding:4px 4px;
}
.pmf-method__content h2{
  margin:0;
  color:var(--navy);
  font-size:30px;
  line-height:1.03;
  font-weight:900;
  letter-spacing:-.035em;
}
.pmf-method__lead{
  margin:14px 0 18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.pmf-method__icons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.pmf-method-item{
  display:flex;
  align-items:center;
  gap:9px;
}
.pmf-method-item img{
  width:31px;
  height:31px;
  object-fit:contain;
  flex:0 0 31px;
}
.pmf-method-item p{
  margin:0;
  color:var(--navy);
  font-size:11px;
  line-height:1.25;
  font-weight:900;
}
.pmf-routes{padding:0 0 12px}
.pmf-section-heading{
  text-align:center;
  margin-bottom:12px;
}
.pmf-section-heading h2{
  margin:0;
  color:var(--navy);
  font-size:28px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.035em;
  position:relative;
  display:inline-block;
}
.pmf-section-heading h2::after{
  content:"";
  width:70px;
  height:3px;
  background:var(--green);
  border-radius:999px;
  position:absolute;
  left:50%;
  bottom:-8px;
  transform:translateX(-50%);
}
.pmf-cards{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px;
  margin-top:20px;
}
.pmf-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px 12px 14px;
  text-align:center;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.pmf-card__icon{
  width:52px;
  height:52px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
}
.pmf-card__icon img{
  width:52px;
  height:52px;
  object-fit:contain;
}
.pmf-card h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.05;
  font-weight:900;
}
.pmf-card--green h3{color:var(--green)}
.pmf-card--blue h3{color:var(--blue)}
.pmf-card--purple h3{color:var(--purple)}
.pmf-card--orange h3{color:var(--orange)}
.pmf-card--cyan h3{color:var(--cyan)}
.pmf-card p{
  margin:0;
  min-height:72px;
  color:var(--muted);
  font-size:11px;
  line-height:1.38;
}
.pmf-card a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:0 14px;
  border-radius:6px;
  margin-top:10px;
  color:#fff!important;
  font-size:11px;
  font-weight:900;
}
.pmf-card--green a{background:var(--green)}
.pmf-card--blue a{background:var(--blue)}
.pmf-card--purple a{background:var(--purple)}
.pmf-card--orange a{background:var(--orange)}
.pmf-card--cyan a{background:var(--cyan)}
.pmf-benefits-row{
  margin-top:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.pmf-benefit-row-item{
  display:flex;
  align-items:center;
  gap:10px;
}
.pmf-benefit-row-item img{
  width:32px;
  height:32px;
  object-fit:contain;
  flex:0 0 32px;
}
.pmf-benefit-row-item p{
  margin:0;
  color:var(--navy);
  font-size:11px;
  line-height:1.25;
  font-weight:900;
}
.pmf-faq{padding:0 0 12px}
.pmf-section-heading--faq{margin-bottom:16px}
.pmf-faq__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.pmf-faq__grid button{
  min-height:42px;
  padding:0 14px;
  border-radius:8px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--navy);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-align:left;
  box-shadow:var(--shadow);
  font:inherit;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}
.pmf-faq__grid strong{
  color:#7b8aa5;
  font-size:14px;
}
.pmf-cta{padding:0 0 18px}
.pmf-cta__box{
  background:#0d2c68;
  border-radius:12px;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.pmf-cta__left{
  display:flex;
  align-items:center;
  gap:14px;
}
.pmf-cta__rocket{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  flex:0 0 58px;
}
.pmf-cta__rocket img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.pmf-cta__left p{
  margin:0 0 4px;
  color:#fff;
  font-size:18px;
  font-weight:900;
}
.pmf-cta__left h2{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:13px;
  line-height:1.35;
  font-weight:500;
}
.pmf-btn--cta{
  min-width:270px;
  color:#fff!important;
}
@media (max-width:980px){
  .pmf-nav{display:none}
  .pmf-hero__grid,.pmf-method__grid{grid-template-columns:1fr}
  .pmf-cards{grid-template-columns:repeat(2,1fr)}
  .pmf-benefits-row{grid-template-columns:repeat(2,1fr)}
  .pmf-faq__grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .pmf-shell{width:min(100% - 22px,1180px)}
  .pmf-header__inner{flex-wrap:wrap;padding:12px 0}
  .pmf-header__actions{width:100%;justify-content:space-between}
  .pmf-hero h1{font-size:34px}
  .pmf-cards,.pmf-benefits-row{grid-template-columns:1fr}
  .pmf-cta__box{flex-direction:column;align-items:flex-start}
  .pmf-btn--cta{width:100%;min-width:auto}
}

/* =========================================================
   AJUSTE PUNTUAL VEDAeco:
   Corrige iconos cortados sin modificar el diseño general.
   ========================================================= */

/* Icono exacto de Acceder */
.pmf-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pmf-login__asset {
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: block;
  object-fit: contain;
}

/* Evitar que iconos de cards muestren texto recortado */
.pmf-card__icon {
  overflow: hidden !important;
  line-height: 0 !important;
}

.pmf-card__icon img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}

/* Evitar que iconos del bloque método muestren cortes */
.pmf-method-item img,
.pmf-method__icons img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}

/* Evitar que iconos de beneficios inferiores muestren texto cortado */
.pmf-benefit-row-item img,
.pmf-benefits-row img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: cover !important;
  object-position: top center !important;
  display: block !important;
}

/* Mantener filas alineadas sin mover el layout general */
.pmf-method-item,
.pmf-benefit-row-item {
  overflow: visible !important;
}

/* Los botones de colores conservan texto y flecha en blanco */
.pmf-card a,
.pmf-card a span,
.pmf-btn--green,
.pmf-btn--green span,
.pmf-btn--cta,
.pmf-btn--cta span {
  color: #ffffff !important;
}

/* =========================================================
   AJUSTE PUNTUAL FINAL: iconos limpios y alineados.
   No cambia layout, colores ni estructura.
   ========================================================= */

.pmf-login__asset {
  width: 15px !important;
  height: 15px !important;
  display: block !important;
  object-fit: contain !important;
}

.pmf-card__icon {
  overflow: visible !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pmf-card__icon img {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.pmf-method-item img,
.pmf-method__icons img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.pmf-benefit-row-item img,
.pmf-benefits-row img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.pmf-benefit-row-item,
.pmf-method-item {
  align-items: center !important;
}

.pmf-card a,
.pmf-card a span,
.pmf-btn--green,
.pmf-btn--green span,
.pmf-btn--cta,
.pmf-btn--cta span {
  color: #ffffff !important;
}

/* =========================================================
   AJUSTE PUNTUAL: hero derecho nítido.
   Solo reemplaza el panel borroso por texto/iconos vectoriales.
   No modifica el resto del diseño.
   ========================================================= */

.pmf-hero-clean-panel {
  width: 100%;
  height: 100%;
  min-height: 278px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8f1;
}

.pmf-hero-clean-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(54, 169, 73, .08), transparent 28%),
    #eef8f1;
}

.pmf-hero-clean-photo::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 32px;
  width: 95px;
  height: 170px;
  opacity: .28;
  background-image: radial-gradient(#c7dfd0 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

.pmf-hero-clean-photo img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 100%;
  max-height: 276px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.pmf-hero-clean-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 28px 24px 28px 14px;
  background: #f3faf5;
}

.pmf-hero-clean-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}

.pmf-hero-clean-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(16, 43, 99, .04);
}

.pmf-hero-clean-icon svg {
  width: 25px;
  height: 25px;
  stroke: #39a949;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pmf-hero-clean-icon--solid {
  background: #39a949;
}

.pmf-hero-clean-icon--solid svg {
  stroke: #ffffff;
}

.pmf-hero-clean-item p {
  margin: 0;
  color: #102b63;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .005em;
}

@media (max-width: 640px) {
  .pmf-hero-clean-panel {
    grid-template-columns: 1fr;
  }

  .pmf-hero-clean-features {
    padding: 20px;
  }
}

/* =========================================================
   AJUSTE PUNTUAL: panel derecho del hero nítido.
   No toca el diseño general de la página.
   ========================================================= */

.pmf-hero-clean-panel {
  width: 100%;
  height: 100%;
  min-height: 278px;
  display: grid;
  grid-template-columns: 1.14fr .86fr;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8f1;
}

.pmf-hero-clean-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(57, 169, 73, .08), transparent 30%),
    #eef8f1;
}

.pmf-hero-clean-photo::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 34px;
  width: 105px;
  height: 180px;
  opacity: .28;
  background-image: radial-gradient(#c8dfd0 1.15px, transparent 1.15px);
  background-size: 12px 12px;
}

.pmf-hero-clean-photo img {
  position: relative;
  z-index: 1;
  width: auto !important;
  height: 100% !important;
  max-height: 278px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
}

.pmf-hero-clean-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 28px 24px 28px 10px;
  background: #f3faf5;
}

.pmf-hero-clean-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
}

.pmf-hero-clean-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(16, 43, 99, .04);
}

.pmf-hero-clean-icon svg {
  width: 26px;
  height: 26px;
  stroke: #39a949;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pmf-hero-clean-icon--solid {
  background: #39a949;
}

.pmf-hero-clean-icon--solid svg {
  stroke: #ffffff;
}

.pmf-hero-clean-item p {
  margin: 0;
  color: #102b63;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .005em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 640px) {
  .pmf-hero-clean-panel {
    grid-template-columns: 1fr;
  }

  .pmf-hero-clean-features {
    padding: 20px;
  }
}

/* AJUSTE PUNTUAL: imagen HQ del panel derecho */
.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-panel-hq {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
  image-rendering: auto !important;
}

/* =========================================================
   AJUSTE FINAL: fuerza imagen HQ del hero derecho.
   No modifica el resto del diseño.
   ========================================================= */

.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-panel-hq-v2 {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
  image-rendering: auto !important;
  transform: translateZ(0);
}

/* =========================================================
   AJUSTE FINAL: nitidez imagen HQ hero derecho.
   No modifica diseño general, solo evita deformación/corte.
   ========================================================= */

.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-panel-hq-v2 {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #eef8f1 !important;
  border-radius: 14px !important;
  image-rendering: auto !important;
  filter: contrast(1.04) saturate(1.03);
}

/* =========================================================
   AJUSTE PUNTUAL: hero derecho con texto nítido.
   Mantiene el diseño; cubre el texto borroso de la imagen
   y lo reemplaza por HTML/SVG sharp.
   ========================================================= */

.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-sharp {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 278px;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8f1;
}

.pmf-hero-sharp__base {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
}

/* Esta capa tapa únicamente el lado derecho donde el texto de imagen se veía borroso */
.pmf-hero-sharp__overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 45.5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
  padding: 28px 30px 28px 18px;
  background: linear-gradient(90deg, rgba(243,250,245,.94) 0%, #f3faf5 18%, #f3faf5 100%);
  z-index: 5;
}

.pmf-hero-sharp__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
}

.pmf-hero-sharp__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 43, 99, .045);
}

.pmf-hero-sharp__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #238c35;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pmf-hero-sharp__icon--solid {
  background: #238c35;
}

.pmf-hero-sharp__icon--solid svg {
  stroke: #ffffff;
}

.pmf-hero-sharp__item p {
  margin: 0;
  color: #102b63;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .005em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
}

/* En móvil conserva legibilidad */
@media (max-width: 640px) {
  .pmf-hero-sharp {
    min-height: 390px;
  }

  .pmf-hero-sharp__base {
    height: 100% !important;
    min-height: 390px !important;
    object-position: left center !important;
  }

  .pmf-hero-sharp__overlay {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    padding: 18px;
    gap: 14px;
    background: rgba(243,250,245,.96);
  }
}

/* =========================================================
   AJUSTE PUNTUAL: texto nítido en panel derecho del hero.
   La imagen queda como base; el texto borroso se cubre.
   ========================================================= */

.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-sharp {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 278px;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8f1;
}

.pmf-hero-sharp__base {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
}

/* Cubre la zona derecha donde venía texto borroso en la imagen */
.pmf-hero-sharp__overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 45.5%;
  height: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
  padding: 28px 30px 28px 18px;
  background: linear-gradient(
    90deg,
    rgba(243,250,245,.94) 0%,
    #f3faf5 18%,
    #f3faf5 100%
  );
}

.pmf-hero-sharp__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 15px;
}

.pmf-hero-sharp__icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 43, 99, .045);
}

.pmf-hero-sharp__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #238c35;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pmf-hero-sharp__icon--solid {
  background: #238c35;
}

.pmf-hero-sharp__icon--solid svg {
  stroke: #ffffff;
}

.pmf-hero-sharp__item p {
  margin: 0;
  color: #102b63;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .005em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

/* =========================================================
   FIX PROFESIONAL UI/UX:
   Hero y video con texto nítido encima de imágenes base.
   No modifica el diseño global.
   ========================================================= */

/* ---------- HERO DERECHO NÍTIDO ---------- */

.pmf-hero__right {
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero-crisp {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 278px;
  overflow: hidden;
  border-radius: 14px;
  background: #eef8f1;
}

.pmf-hero-crisp__base {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
}

/* Cubre SOLO la zona derecha donde venía el texto borroso */
.pmf-hero-crisp__cover {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(243,250,245,.92) 0%,
    #f3faf5 18%,
    #f3faf5 100%
  );
}

.pmf-hero-crisp__features {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
  padding: 28px 28px 28px 14px;
}

.pmf-hero-crisp__item {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 14px;
}

.pmf-hero-crisp__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(16, 43, 99, .045);
}

.pmf-hero-crisp__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #238c35;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pmf-hero-crisp__icon--solid {
  background: #238c35;
}

.pmf-hero-crisp__icon--solid svg {
  stroke: #ffffff;
}

.pmf-hero-crisp__item p {
  margin: 0;
  color: #102b63;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: .005em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

/* ---------- VIDEO NÍTIDO ---------- */

.pmf-video-card.pmf-video-crisp {
  position: relative;
  overflow: hidden !important;
  border-radius: 12px !important;
  background: #071f49 !important;
}

.pmf-video-crisp__base {
  width: 100% !important;
  height: 100% !important;
  min-height: 270px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 12px !important;
}

.pmf-video-crisp__left-cover {
  position: absolute;
  inset: 0 auto 0 0;
  width: 46%;
  z-index: 2;
  background:
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.10), transparent 22%),
    linear-gradient(90deg, rgba(6, 29, 67, .98) 0%, rgba(6, 29, 67, .92) 66%, rgba(6, 29, 67, .20) 100%);
}

.pmf-video-crisp__copy {
  position: absolute;
  left: 28px;
  top: 30px;
  z-index: 3;
  color: #ffffff;
}

.pmf-video-crisp__copy span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 5px;
  background: #39a949;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .045em;
}

.pmf-video-crisp__copy strong {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: 31px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: .01em;
}

.pmf-video-crisp__copy em {
  display: block;
  margin-top: 4px;
  color: #4dbb42;
  font-size: 64px;
  line-height: .9;
  font-weight: 950;
  font-style: normal;
  letter-spacing: -.04em;
}

.pmf-video-crisp__copy p {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}

.pmf-video-crisp__play {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
  cursor: pointer;
}

.pmf-video-crisp__play::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 18px solid #102b63;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.pmf-video-crisp__controls {
  position: absolute;
  left: 20px;
  right: 18px;
  bottom: 14px;
  z-index: 5;
}

.pmf-video-crisp__progress {
  height: 5px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  overflow: hidden;
}

.pmf-video-crisp__progress i {
  display: block;
  width: 22%;
  height: 100%;
  background: #78b72f;
  border-radius: inherit;
}

.pmf-video-crisp__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.pmf-video-crisp__bar small {
  margin-right: auto;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.pmf-video-crisp__bar b {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

/* Responsive puntual */
@media (max-width: 640px) {
  .pmf-hero-crisp {
    min-height: 390px;
  }

  .pmf-hero-crisp__base {
    min-height: 390px !important;
    object-position: left center !important;
  }

  .pmf-hero-crisp__cover,
  .pmf-hero-crisp__features {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
  }

  .pmf-hero-crisp__features {
    padding: 18px;
    gap: 14px;
    background: rgba(243,250,245,.96);
  }

  .pmf-video-crisp__copy strong {
    font-size: 24px;
  }

  .pmf-video-crisp__copy em {
    font-size: 48px;
  }
}

/* =========================================================
   LIMPIEZA FINAL HERO DERECHO
   Una sola imagen. Sin overlays. Sin iconos duplicados.
   ========================================================= */

.pmf-hero__right {
  position: relative !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #eef8f1 !important;
}

.pmf-hero__right > *:not(.pmf-hero-panel-final-single) {
  display: none !important;
}

.pmf-hero-panel-final-single {
  width: 100% !important;
  height: 100% !important;
  min-height: 278px !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 14px !important;
  image-rendering: auto !important;
}

/* =========================================================
   PÁGINAS INTERNAS EDITABLES
   ========================================================= */

.pmf-page-main {
  padding: 28px 0 60px;
  background: #ffffff;
}

.pmf-page-hero {
  padding: 16px 0;
}

.pmf-page-hero__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3faf5, #ffffff);
  padding: 44px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
}

.pmf-page-hero__box p {
  margin: 0 0 10px;
  color: #39a949;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pmf-page-hero__box h1 {
  margin: 0;
  color: #102b63;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
}

.pmf-page-content {
  padding: 16px 0;
}

.pmf-page-content__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #ffffff;
  padding: 38px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
  color: #283756;
  font-size: 17px;
  line-height: 1.75;
}

.pmf-page-content__box h2,
.pmf-page-content__box h3 {
  color: #102b63;
  line-height: 1.15;
}

.pmf-page-content__box a {
  color: #238c35;
  font-weight: 800;
}

.pmf-page-content__box .wp-block-button__link {
  background: #39a949;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .pmf-page-hero__box,
  .pmf-page-content__box {
    padding: 26px 22px;
  }
}

/* =========================================================
   PÁGINAS INTERNAS EDITABLES
   ========================================================= */

.pmf-page-main {
  padding: 28px 0 60px;
  background: #ffffff;
}

.pmf-page-hero {
  padding: 16px 0;
}

.pmf-page-hero__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3faf5, #ffffff);
  padding: 44px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
}

.pmf-page-hero__box p {
  margin: 0 0 10px;
  color: #39a949;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pmf-page-hero__box h1 {
  margin: 0;
  color: #102b63;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
}

.pmf-page-content {
  padding: 16px 0;
}

.pmf-page-content__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #ffffff;
  padding: 38px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
  color: #283756;
  font-size: 17px;
  line-height: 1.75;
}

.pmf-page-content__box h2,
.pmf-page-content__box h3 {
  color: #102b63;
  line-height: 1.15;
}

.pmf-page-content__box a {
  color: #238c35;
  font-weight: 800;
}

.pmf-page-content__box .wp-block-button__link {
  background: #39a949;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .pmf-page-hero__box,
  .pmf-page-content__box {
    padding: 26px 22px;
  }
}

/* =========================================================
   PÁGINAS INTERNAS EDITABLES
   ========================================================= */

.pmf-page-main {
  padding: 28px 0 60px;
  background: #ffffff;
}

.pmf-page-hero {
  padding: 16px 0;
}

.pmf-page-hero__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3faf5, #ffffff);
  padding: 44px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
}

.pmf-page-hero__box p {
  margin: 0 0 10px;
  color: #39a949;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pmf-page-hero__box h1 {
  margin: 0;
  color: #102b63;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.05em;
}

.pmf-page-content {
  padding: 16px 0;
}

.pmf-page-content__box {
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  background: #ffffff;
  padding: 38px 42px;
  box-shadow: 0 8px 20px rgba(16,43,99,.05);
  color: #283756;
  font-size: 17px;
  line-height: 1.75;
}

.pmf-page-content__box h2,
.pmf-page-content__box h3 {
  color: #102b63;
  line-height: 1.15;
}

.pmf-page-content__box a {
  color: #238c35;
  font-weight: 800;
}

.pmf-page-content__box .wp-block-button__link {
  background: #39a949;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .pmf-page-hero__box,
  .pmf-page-content__box {
    padding: 26px 22px;
  }
}

/* =========================================================
   PÁGINAS INTERNAS PREMIUM PMF
   No modifica la landing principal.
   ========================================================= */

.pmf-internal-main {
  min-height: 100vh;
  padding: 26px 0 70px;
  background:
    radial-gradient(circle at 12% 8%, rgba(57,169,73,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.pmf-internal-hero {
  padding: 18px 0 14px;
}

.pmf-internal-hero__box {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 46px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(243,250,245,.94), rgba(255,255,255,.98)),
    #ffffff;
  box-shadow: 0 18px 45px rgba(16,43,99,.08);
}

.pmf-internal-hero__copy h1 {
  max-width: 790px;
  margin: 0;
  color: #102b63;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.055em;
}

.pmf-internal-hero__line {
  width: 86px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: #39a949;
}

.pmf-internal-hero__badge {
  width: 170px;
  min-width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 50%;
  background: #0d2c68;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(13,44,104,.18);
}

.pmf-internal-hero__badge span {
  display: block;
  color: #39a949;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pmf-internal-hero__badge p {
  max-width: 120px;
  margin: 8px auto 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.pmf-internal-content {
  padding: 14px 0 0;
}

.pmf-internal-card {
  padding: 44px 48px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background: #ffffff;
  color: #56627e;
  font-size: 17px;
  line-height: 1.75;
  box-shadow: 0 14px 36px rgba(16,43,99,.06);
}

.pmf-internal-card > *:first-child {
  margin-top: 0;
}

.pmf-internal-card h2 {
  margin: 0 0 18px;
  color: #102b63;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pmf-internal-card h3 {
  margin: 34px 0 14px;
  color: #102b63;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.pmf-internal-card p {
  margin: 0 0 18px;
}

.pmf-internal-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pmf-internal-card li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid #e2ebf3;
  border-radius: 14px;
  background: #fbfdff;
  color: #102b63;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.pmf-internal-card li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #39a949;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.pmf-internal-card .wp-block-buttons {
  margin-top: 30px;
}

.pmf-internal-card .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 8px;
  background: #39a949;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(57,169,73,.20);
}

.pmf-internal-card .wp-block-button__link::after {
  content: "→";
  margin-left: 10px;
}

.pmf-internal-card a {
  color: #238c35;
  font-weight: 900;
}

@media (max-width: 900px) {
  .pmf-internal-hero__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .pmf-internal-hero__badge {
    width: 132px;
    min-width: 132px;
    height: 132px;
  }

  .pmf-internal-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pmf-internal-main {
    padding-top: 14px;
  }

  .pmf-internal-hero__box,
  .pmf-internal-card {
    padding: 28px 22px;
  }

  .pmf-internal-hero__copy h1 {
    font-size: 38px;
  }
}

/* =========================================================
   PÁGINAS INTERNAS PREMIUM PMF
   No modifica la landing principal.
   ========================================================= */

.pmf-internal-main {
  min-height: 100vh;
  padding: 26px 0 70px;
  background:
    radial-gradient(circle at 12% 8%, rgba(57,169,73,.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.pmf-internal-hero {
  padding: 18px 0 14px;
}

.pmf-internal-hero__box {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px 46px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(243,250,245,.94), rgba(255,255,255,.98)),
    #ffffff;
  box-shadow: 0 18px 45px rgba(16,43,99,.08);
}

.pmf-internal-hero__copy h1 {
  max-width: 790px;
  margin: 0;
  color: #102b63;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -.055em;
}

.pmf-internal-hero__line {
  width: 86px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: #39a949;
}

.pmf-internal-hero__badge {
  width: 170px;
  min-width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 50%;
  background: #0d2c68;
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(13,44,104,.18);
}

.pmf-internal-hero__badge span {
  display: block;
  color: #39a949;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pmf-internal-hero__badge p {
  max-width: 120px;
  margin: 8px auto 0;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
}

.pmf-internal-content {
  padding: 14px 0 0;
}

.pmf-internal-card {
  padding: 44px 48px;
  border: 1px solid #dfe7ef;
  border-radius: 20px;
  background: #ffffff;
  color: #56627e;
  font-size: 17px;
  line-height: 1.75;
  box-shadow: 0 14px 36px rgba(16,43,99,.06);
}

.pmf-internal-card > *:first-child {
  margin-top: 0;
}

.pmf-internal-card h2 {
  margin: 0 0 18px;
  color: #102b63;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
}

.pmf-internal-card h3 {
  margin: 34px 0 14px;
  color: #102b63;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.pmf-internal-card p {
  margin: 0 0 18px;
}

.pmf-internal-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.pmf-internal-card li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid #e2ebf3;
  border-radius: 14px;
  background: #fbfdff;
  color: #102b63;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.pmf-internal-card li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #39a949;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.pmf-internal-card .wp-block-buttons {
  margin-top: 30px;
}

.pmf-internal-card .wp-block-button__link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  border-radius: 8px;
  background: #39a949;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(57,169,73,.20);
}

.pmf-internal-card .wp-block-button__link::after {
  content: "→";
  margin-left: 10px;
}

.pmf-internal-card a {
  color: #238c35;
  font-weight: 900;
}

@media (max-width: 900px) {
  .pmf-internal-hero__box {
    flex-direction: column;
    align-items: flex-start;
  }

  .pmf-internal-hero__badge {
    width: 132px;
    min-width: 132px;
    height: 132px;
  }

  .pmf-internal-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pmf-internal-main {
    padding-top: 14px;
  }

  .pmf-internal-hero__box,
  .pmf-internal-card {
    padding: 28px 22px;
  }

  .pmf-internal-hero__copy h1 {
    font-size: 38px;
  }
}

/* =========================================================
   FAQ ACORDEÓN EDITABLE
   Mantiene el estilo visual original y agrega respuesta.
   ========================================================= */

.pmf-faq-accordion {
  align-items: start;
}

.pmf-faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pmf-faq-trigger {
  width: 100%;
}

.pmf-faq-trigger[aria-expanded="true"] {
  border-color: #cfe3d4;
  box-shadow: 0 10px 26px rgba(57,169,73,.08);
}

.pmf-faq-panel {
  padding: 14px 16px;
  border: 1px solid #dfe7ef;
  border-radius: 10px;
  background: #ffffff;
  color: #56627e;
  font-size: 12px;
  line-height: 1.55;
  box-shadow: 0 8px 20px rgba(16,43,99,.04);
}

.pmf-faq-panel p {
  margin: 0;
}

@media (max-width: 900px) {
  .pmf-faq-item {
    width: 100%;
  }
}

/* =========================================================
   FOOTER PROFESIONAL EDITABLE PMF
   ========================================================= */

.pmf-footer {
  padding: 18px 0 30px;
  background: #ffffff;
}

.pmf-footer__box {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .9fr;
  gap: 34px;
  padding: 30px 32px;
  border: 1px solid #dfe7ef;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(243,250,245,.78), rgba(255,255,255,.98)),
    #ffffff;
  box-shadow: 0 12px 30px rgba(16,43,99,.05);
}

.pmf-footer__logo img {
  width: 150px;
  height: auto;
}

.pmf-footer__brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #56627e;
  font-size: 14px;
  line-height: 1.65;
}

.pmf-footer__col h3 {
  margin: 0 0 14px;
  color: #102b63;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.pmf-footer__col a {
  display: block;
  margin: 0 0 10px;
  color: #56627e;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.pmf-footer__col a:hover {
  color: #39a949;
  transform: translateX(2px);
}

.pmf-footer__bottom {
  padding: 14px 4px 0;
  text-align: center;
}

.pmf-footer__bottom p {
  margin: 0;
  color: #7b879d;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .pmf-footer__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pmf-footer__box {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .pmf-footer__logo img {
    width: 132px;
  }
}

/* =========================================================
   FORMULARIO DE CONTACTO / LEADS PMF
   ========================================================= */

.pmf-contact-form-wrap {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid #dfe7ef;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcfa, #ffffff);
  box-shadow: 0 12px 30px rgba(16,43,99,.05);
}

.pmf-form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
}

.pmf-form-alert--success {
  border: 1px solid #cfead5;
  background: #f0fbf3;
  color: #238c35;
}

.pmf-form-alert--error {
  border: 1px solid #f4c7c7;
  background: #fff5f5;
  color: #b42318;
}

.pmf-contact-form {
  display: grid;
  gap: 18px;
}

.pmf-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pmf-form-field {
  display: grid;
  gap: 8px;
}

.pmf-form-field label {
  color: #102b63;
  font-size: 13px;
  font-weight: 900;
}

.pmf-form-field input,
.pmf-form-field select,
.pmf-form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfdbea;
  border-radius: 10px;
  background: #ffffff;
  color: #102b63;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.pmf-form-field textarea {
  resize: vertical;
  min-height: 132px;
}

.pmf-form-field input:focus,
.pmf-form-field select:focus,
.pmf-form-field textarea:focus {
  border-color: #39a949;
  box-shadow: 0 0 0 4px rgba(57,169,73,.12);
}

.pmf-form-submit {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: #39a949;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(57,169,73,.22);
}

.pmf-form-submit span {
  color: #ffffff;
}

@media (max-width: 720px) {
  .pmf-form-grid {
    grid-template-columns: 1fr;
  }

  .pmf-form-submit {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   VALIDACIONES DEL FORMULARIO PMF
   ========================================================= */

.pmf-form-field input.is-invalid,
.pmf-form-field select.is-invalid,
.pmf-form-field textarea.is-invalid {
  border-color: #d92d20 !important;
  box-shadow: 0 0 0 4px rgba(217,45,32,.10) !important;
}

.pmf-field-error {
  min-height: 16px;
  display: block;
  color: #b42318;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

/* =========================================================
   WHATSAPP FLOTANTE PMF
   ========================================================= */

.pmf-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(37,211,102,.32);
  transition: transform .18s ease, box-shadow .18s ease;
}

.pmf-whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37,211,102,.40);
  color: #ffffff !important;
}

.pmf-whatsapp-float__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #ffffff;
}

.pmf-whatsapp-float__text {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pmf-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px;
  }

  .pmf-whatsapp-float__text {
    display: none;
  }

  .pmf-whatsapp-float__icon {
    width: 34px;
    height: 34px;
  }
}

/* =========================================================
   PMF: estado visual de envío de formulario
   Cambio funcional mínimo, sin alterar diseño principal.
========================================================= */
.pmf-submit-loading,
button.pmf-submit-loading,
input.pmf-submit-loading {
  opacity: 0.72;
  cursor: wait !important;
  pointer-events: none;
}

/* =========================================================
   PMF: confirmación profesional del formulario
========================================================= */
.pmf-form-success {
  width: 100%;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(43, 169, 69, 0.22);
  border-radius: 18px;
  background: rgba(43, 169, 69, 0.08);
  color: #12245a;
  box-shadow: 0 12px 28px rgba(18, 36, 90, 0.06);
}

.pmf-form-success strong {
  display: block;
  margin-bottom: 6px;
  color: #2ba945;
  font-size: 15px;
  font-weight: 900;
}

.pmf-form-success span {
  display: block;
  color: #485674;
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   PMF: bloques comerciales de páginas internas
   Solo complementan rutas internas; no alteran la landing principal.
========================================================= */
.pmf-internal-route {
  margin-top: 34px;
}

.pmf-internal-route__intro {
  max-width: 860px;
  margin-bottom: 24px;
}

.pmf-internal-route__intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #2ba945;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pmf-internal-route__intro h2 {
  margin: 0 0 12px;
  color: #12245a;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.pmf-internal-route__intro p {
  margin: 0;
  color: #485674;
  font-size: 17px;
  line-height: 1.75;
}

.pmf-internal-route__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pmf-internal-route__card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 36, 90, 0.10);
  box-shadow: 0 18px 42px rgba(18, 36, 90, 0.07);
}

.pmf-internal-route__card h3 {
  margin: 0 0 16px;
  color: #12245a;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.pmf-internal-route__card ul,
.pmf-internal-route__card ol {
  margin: 0;
  padding-left: 20px;
  color: #485674;
  font-size: 15px;
  line-height: 1.75;
}

.pmf-internal-route__card li + li {
  margin-top: 8px;
}

.pmf-internal-route__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #12245a, #1d3477);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(18, 36, 90, 0.18);
}

.pmf-internal-route__cta strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
}

.pmf-internal-route__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.pmf-internal-route__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: #2ba945;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(43, 169, 69, 0.25);
}

.pmf-internal-route__cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(43, 169, 69, 0.32);
}

@media (max-width: 820px) {
  .pmf-internal-route__grid {
    grid-template-columns: 1fr;
  }

  .pmf-internal-route__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pmf-internal-route__cta a {
    width: 100%;
  }
}
