/* ═══════════════════════════════════════════════════════════════
   LP Fortalecimiento Institucional — lp-fortalecimiento-pro.css
   Paleta: misma que lp-home (navy/orange/cream/teal)
═══════════════════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────────────────── */
.lfpro {
  --lfpro-navy:        #2f4b88;
  --lfpro-dark:        #1f2f5f;
  --lfpro-darker:      #131e3a;
  --lfpro-orange:      #f28c3c;
  --lfpro-orange-soft: rgba(242, 140, 60, 0.12);
  --lfpro-teal:        #0fae9c;
  --lfpro-cream:       #f1e3d3;
  --lfpro-bg:          #fbf7f1;
  --lfpro-white:       #ffffff;
  --lfpro-text:        #1f2f5f;
  --lfpro-muted:       #5a6a8e;
  --lfpro-border:      #dce4f0;
  --lfpro-radius:      20px;
  --lfpro-radius-sm:   12px;
  --lfpro-shadow:      0 16px 40px rgba(31, 47, 95, 0.12);
  --lfpro-shadow-lg:   0 28px 56px rgba(31, 47, 95, 0.18);

  margin: 0;
  padding: 0;
  font-family: "HK Grotesk", "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--lfpro-text);
  background: var(--lfpro-bg);
  -webkit-font-smoothing: antialiased;
}

.lfpro *,
.lfpro *::before,
.lfpro *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lfpro a:not(.lfpro__btn) { color: inherit; text-decoration: none; }
.lfpro .lfpro__btn { text-decoration: none; }
.lfpro img { display: block; max-width: 60%; height: auto; }
.lfpro ul { list-style: none; }

/* ─── Contenedores ───────────────────────────────────────────── */
.lfpro__container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.lfpro__container--narrow {
  max-width: 760px;
}

/* ─── Tipografía global ──────────────────────────────────────── */
.lfpro h1, .lfpro h2, .lfpro h3 {
  font-family: "HK Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lfpro h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.lfpro h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.lfpro h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }

/* ─── Eyebrow ────────────────────────────────────────────────── */
.lfpro__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lfpro-orange);
  margin-bottom: 10px;
}

.lfpro__eyebrow--dark { color: var(--lfpro-navy); }
.lfpro__eyebrow--light { color: rgba(255, 255, 255, 0.7); }

/* ─── Section header ─────────────────────────────────────────── */
.lfpro__section-header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.lfpro__section-header--light h2,
.lfpro__section-header--light h3 { color: #fff; }

.lfpro__intro {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--lfpro-muted);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.65;
}

.lfpro__intro--light { color: rgba(255, 255, 255, 0.78); }

/* ─── Botones ────────────────────────────────────────────────── */
.lfpro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--lfpro-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.lfpro__btn:hover { transform: translateY(-2px); }

.lfpro__btn--primary {
  background: var(--lfpro-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(242, 140, 60, 0.35);
}
.lfpro__btn--primary:hover { box-shadow: 0 10px 28px rgba(242, 140, 60, 0.45); }

.lfpro__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.lfpro__btn--ghost:hover { background: rgba(255, 255, 255, 0.2); }

.lfpro__btn--ghost-light {
  background: transparent;
  color: var(--lfpro-orange);
  border: 1px solid var(--lfpro-orange);
}
.lfpro__btn--ghost-light:hover { background: rgba(242, 140, 60, 0.12); }

.lfpro__btn--outline {
  background: transparent;
  color: var(--lfpro-navy);
  border: 1.5px solid var(--lfpro-navy);
}
.lfpro__btn--outline:hover { background: var(--lfpro-navy); color: #fff; }

.lfpro__btn--full { width: 100%; }

/* ─── Image placeholder ──────────────────────────────────────── */
.lfpro__img-placeholder {
  width: 100%;
  min-height: 360px;
  background: linear-gradient(135deg, #c8d4ec 0%, #a0b5d5 100%);
  border-radius: var(--lfpro-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lfpro-navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px dashed rgba(47, 75, 136, 0.25);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.lfpro__header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 47, 95, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.lfpro__header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.lfpro__brand {
  flex-shrink: 0;
}

.lfpro__header .lfpro__brand-logo {
  /* Especificidad (0,2,0) — gana sobre la regla global .lfpro img (0,1,1) */
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  /* El logo es azul oscuro — se invierte a blanco sobre fondo navy */
  filter: brightness(0) invert(1);
}

.lfpro__nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.lfpro__header .lfpro__nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.lfpro__header .lfpro__nav a:hover { color: var(--lfpro-orange); }

.lfpro__header-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.88rem;
}

/* ─── Hamburger toggle ───────────────────────────────────────── */
.lfpro__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}
.lfpro__menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lfpro__menu-toggle[aria-expanded="true"] .lfpro__menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lfpro__menu-toggle[aria-expanded="true"] .lfpro__menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.lfpro__menu-toggle[aria-expanded="true"] .lfpro__menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile drawer ──────────────────────────────────────────── */
.lfpro__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lfpro-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: lfpro-slide-down 0.22s ease;
  z-index: 99;
}
.lfpro__mobile-menu[hidden] { display: none; }

.lfpro__mobile-menu a:not(.lfpro__btn) {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.lfpro__mobile-menu a:not(.lfpro__btn):hover { color: var(--lfpro-orange); }
.lfpro__mobile-menu-cta { margin-top: 16px; width: 100%; justify-content: center; }

@keyframes lfpro-slide-down {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   S1 — HERO
═══════════════════════════════════════════════════════════════ */
.lfpro__hero {
  background: var(--lfpro-dark);
  padding: clamp(64px, 10vh, 100px) 0 clamp(56px, 9vh, 90px);
  overflow: hidden;
}

.lfpro__hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.lfpro__hero-copy { color: #fff; }

.lfpro__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(242, 140, 60, 0.18);
  border: 1px solid rgba(242, 140, 60, 0.45);
  color: var(--lfpro-orange);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.lfpro__hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lfpro-orange);
  flex-shrink: 0;
  animation: lfpro-pulse 2s ease-in-out infinite;
}

@keyframes lfpro-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

@media (prefers-reduced-motion: reduce) {
  .lfpro__hero-badge-dot { animation: none; }
}

.lfpro__hero-copy h1 {
  color: #fff;
  margin-bottom: 14px;
}

.lfpro__hero-subtitle {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  font-style: normal;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lfpro__hero-subtitle em {
  font-style: italic;
  font-weight: 700;
  color: var(--lfpro-orange);
}

.lfpro__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  line-height: 1.65;
}

.lfpro__hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lfpro__hero-photo-wrap {
  border-radius: var(--lfpro-radius);
  overflow: hidden;
  height: 480px;
}

.lfpro__hero-photo-wrap .lfpro__hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-width: 100%;
  transform: scale(1.07);
  transition: transform 8s ease-out;
}

.lfpro__hero-photo-wrap .lfpro__hero-photo.is-loaded {
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   S2 — URGENCIA
═══════════════════════════════════════════════════════════════ */
.lfpro__urgencia {
  background: var(--lfpro-white);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.lfpro__stat-card {
  background: var(--lfpro-bg);
  border: 1.5px solid var(--lfpro-border);
  border-top: 4px solid var(--lfpro-navy);
  border-radius: var(--lfpro-radius);
  padding: 36px 32px;
  text-align: center;
}

.lfpro__stat-num {
  display: block;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--lfpro-orange);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.lfpro__stat-unit {
  font-size: 0.55em;
  font-weight: 700;
  vertical-align: super;
  color: var(--lfpro-navy);
}

.lfpro__stat-label {
  display: block;
  font-size: 1rem;
  color: var(--lfpro-muted);
  line-height: 1.45;
  max-width: 220px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════════
   S3 — PROBLEMÁTICA
═══════════════════════════════════════════════════════════════ */
.lfpro__problematica {
  background: var(--lfpro-bg);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lfpro__problem-card {
  background: var(--lfpro-white);
  border-radius: var(--lfpro-radius);
  border-left: 4px solid var(--lfpro-orange);
  padding: 24px 24px 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--lfpro-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lfpro__problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lfpro-shadow-lg);
}

.lfpro__problem-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.lfpro__problem-card h3 {
  font-size: 1.05rem;
  color: var(--lfpro-dark);
  margin-bottom: 6px;
}

.lfpro__problem-card p {
  font-size: 0.92rem;
  color: var(--lfpro-muted);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   S4 — SOLUCIÓN
═══════════════════════════════════════════════════════════════ */
.lfpro__solucion {
  background: var(--lfpro-navy);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__duration-badge {
  display: inline-block;
  background: var(--lfpro-orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  margin-top: 20px;
}

.lfpro__pilares-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.lfpro__pilar {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lfpro-radius);
  padding: 28px 24px;
  transition: background 0.2s ease;
}

.lfpro__pilar:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lfpro__pilar-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.lfpro__pilar h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.lfpro__pilar p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.lfpro__solucion-enfoque {
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

.lfpro__solucion-enfoque strong { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   S5 — IMPACTO
═══════════════════════════════════════════════════════════════ */
.lfpro__impacto {
  background: var(--lfpro-white);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__impacto-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
  margin-top: 16px;
}

.lfpro__beneficios h3 {
  font-size: 1.15rem;
  color: var(--lfpro-dark);
  margin-bottom: 20px;
}

.lfpro__check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.lfpro__check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--lfpro-text);
  line-height: 1.45;
}

.lfpro__check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--lfpro-teal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.lfpro__impacto-cierre {
  font-size: 1.05rem;
  color: var(--lfpro-navy);
  border-left: 3px solid var(--lfpro-orange);
  padding-left: 14px;
  margin: 0;
}

.lfpro__evidencia {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lfpro__evidencia-card {
  background: var(--lfpro-bg);
  border-radius: var(--lfpro-radius);
  border-left: 4px solid var(--lfpro-navy);
  padding: 24px;
}

.lfpro__evidencia-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.lfpro__evidencia-card p {
  font-size: 0.95rem;
  color: var(--lfpro-text);
  line-height: 1.6;
  margin-bottom: 14px;
}

.lfpro__evidencia-tag {
  display: inline-block;
  background: var(--lfpro-orange-soft);
  color: var(--lfpro-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.lfpro__quote {
  background: var(--lfpro-cream);
  border-radius: var(--lfpro-radius);
  padding: 24px 28px;
  border-left: 4px solid var(--lfpro-orange);
}

.lfpro__quote p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lfpro-dark);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   S6 — INSTRUCTOR
═══════════════════════════════════════════════════════════════ */
.lfpro__instructor {
  background: var(--lfpro-cream);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.lfpro__instructor-photo > img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--lfpro-radius);
  display: block;
  max-width: 100%;
}

.lfpro__instructor-bio h2 {
  color: var(--lfpro-dark);
  margin-bottom: 4px;
}

.lfpro__instructor-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lfpro-orange);
  margin-bottom: 20px;
}

.lfpro__instructor-bio > p {
  font-size: 1rem;
  color: var(--lfpro-text);
  line-height: 1.65;
  margin-bottom: 24px;
}

.lfpro__instructor-logros {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lfpro__instructor-logros li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--lfpro-dark);
}

.lfpro__instructor-logros li::before {
  content: '✦';
  color: var(--lfpro-orange);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   S6b — INVERSIÓN
═══════════════════════════════════════════════════════════════ */
.lfpro__inversion {
  background: var(--lfpro-dark);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__inversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lfpro__inversion-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--lfpro-radius);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lfpro__inversion-card--featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--lfpro-orange);
  position: relative;
}

.lfpro__inversion-badge {
  display: inline-block;
  background: var(--lfpro-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.lfpro__inversion-card h3 {
  color: #fff;
  font-size: 1.15rem;
}

.lfpro__inversion-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}

.lfpro__price-num {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--lfpro-orange);
  letter-spacing: -0.03em;
}

.lfpro__price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 6px;
}

.lfpro__price-detail {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  margin: 0;
}

.lfpro__inversion-nota {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-top: 40px;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.lfpro__inversion-nota em {
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   S7 — FORMULARIO
═══════════════════════════════════════════════════════════════ */
.lfpro__contacto {
  background: var(--lfpro-darker);
  padding: clamp(56px, 8vh, 100px) 0;
}

.lfpro__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lfpro-radius);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.lfpro__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lfpro__form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lfpro__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.lfpro__label span { color: var(--lfpro-orange); }

.lfpro__input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lfpro-radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.lfpro__input::placeholder { color: rgba(255, 255, 255, 0.35); }

.lfpro__input:focus {
  outline: none;
  border-color: var(--lfpro-orange);
  background: rgba(255, 255, 255, 0.12);
}

.lfpro__input.is-error { border-color: #e05c5c; }

.lfpro__textarea { resize: vertical; min-height: 110px; }

.lfpro__field-error {
  font-size: 0.78rem;
  color: #e87c7c;
  min-height: 1em;
}

.lfpro__form-error {
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.3);
  border-radius: var(--lfpro-radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #f09090;
  text-align: center;
}

.lfpro__form-note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.lfpro__form-note a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lfpro__form-note a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   S8 — FOOTER
═══════════════════════════════════════════════════════════════ */
.lfpro__footer {
  background: var(--lfpro-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 48px 0 32px;
}

.lfpro__footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 32px;
}

.lfpro__footer-logo-text {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.lfpro__footer-tagline {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.lfpro__footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lfpro__footer .lfpro__footer-contact a {
  font-size: 0.88rem;
  color: #fff;
  transition: color 0.2s;
}

.lfpro__footer .lfpro__footer-contact a:hover { color: var(--lfpro-orange); }

.lfpro__footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── Reveal on scroll ───────────────────────────────────────── */
.lfpro-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease var(--lfpro-reveal-delay, 0ms),
    transform 0.55s ease var(--lfpro-reveal-delay, 0ms);
}

.lfpro-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤ 900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Header */
  .lfpro__header-inner { gap: 16px; flex-wrap: nowrap; }
  .lfpro__nav { display: none; }
  .lfpro__header-cta { margin-left: auto; }
  .lfpro__menu-toggle { display: flex; }
  .lfpro__header { position: relative; }

  /* Hero */
  .lfpro__hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lfpro__hero-visual { order: -1; }
  .lfpro__hero-photo-wrap { height: 320px; }

  /* Impacto */
  .lfpro__impacto-body { grid-template-columns: 1fr; }

  /* Instructor */
  .lfpro__instructor-grid { grid-template-columns: 1fr; }
  .lfpro__instructor-photo > img { height: 300px; }

  /* Footer */
  .lfpro__footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .lfpro__footer-contact { align-items: center; }
  .lfpro__footer-action { justify-self: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — móvil (≤ 680px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 680px) {

  /* Header */
  .lfpro__header .lfpro__brand-logo { height: 32px; max-width: 150px; }
  .lfpro__header-cta { display: none; }
  .lfpro__menu-toggle { margin-left: auto; }

  /* Hero */
  .lfpro__hero { padding: 48px 0 40px; }
  .lfpro__hero-photo-wrap { height: 260px; }
  .lfpro__hero-badge { font-size: 0.78rem; padding: 9px 14px; }
  .lfpro__hero-subtitle { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .lfpro__hero-actions { flex-direction: column; }
  .lfpro__hero-actions .lfpro__btn { width: 100%; justify-content: center; }

  /* Grids a columna única */
  .lfpro__stats-grid,
  .lfpro__problem-grid,
  .lfpro__pilares-grid {
    grid-template-columns: 1fr;
  }

  /* Stat cards: números un poco más pequeños en móvil */
  .lfpro__stat-num { font-size: clamp(2.8rem, 12vw, 4rem); }

  /* Sección headers */
  .lfpro__section-header { margin-bottom: 28px; }

  /* Impacto: evidencia full-width */
  .lfpro__evidencia-card,
  .lfpro__quote { padding: 18px; }

  /* Instructor */
  .lfpro__instructor-photo > img { height: 240px; }

  /* Formulario */
  .lfpro__form-row { grid-template-columns: 1fr; }
  .lfpro__form { padding: 24px 20px; }

  /* Footer */
  .lfpro__footer { padding: 36px 0 24px; }
  .lfpro__footer-inner { gap: 20px; }
}
