/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --blue-dark:   #1b3163;
  --blue-main:   #294c98;
  --blue-mid:    #4faecf;
  --blue-light:  #84c2de;
  --blue-pale:   #acd5eb;
  --accent:      #4faecf;
  --white:       #ffffff;
  --gray-100:    #f4f6f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-900:    #0f172a;
  --success:     #22c55e;
  --error:       #c31620;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --shadow-card: 0 8px 40px rgba(27,49,99,.18);
  --shadow-btn:  0 4px 16px rgba(41,76,152,.38);
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'General Sans', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ─── Utility ────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-inner::-webkit-scrollbar { display: none; }

/* Logo */
.logo-main {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo-label {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  white-space: nowrap;
}

/* Ticker wrapper — recorta el overflow y aplica fade en los bordes */
.partner-ticker-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Partner logos */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
  width: max-content;
}
/* Ticker animado — se activa cuando hay múltiples logos */
.partner-logos.is-ticking {
  animation: partner-ticker 22s linear infinite;
}
.partner-logos.is-ticking:hover {
  animation-play-state: paused;
}
@keyframes partner-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  flex-shrink: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.partner-item img {
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s var(--ease);
}
.partner-item img:hover { opacity: 1; }
/* Chip de fallback (cuando no carga la imagen) */
.partner-chip {
  height: 26px;
  padding: 0 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .6px;
  white-space: nowrap;
  background: var(--bg, #e9f1fa);
  color: var(--c, #294c98);
  opacity: .8;
  transition: opacity .2s var(--ease);
  cursor: default;
}
.partner-chip:hover { opacity: 1; }
/* Animación de entrada al filtrar */
@keyframes fadeInLogo {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
.partner-item.visible {
  animation: fadeInLogo .35s var(--ease) both;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--blue-main);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 0;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Columna izquierda: foto pegada arriba + texto debajo */
.hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  height: 100%;
}
.hero-photo {
  width: 118%;
  aspect-ratio: 847 / 433;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  background: url('img/png/hero-people.png') left top / contain no-repeat;
}
.hero-heading { color: var(--white); }
.hero-badges  { display: flex; flex-wrap: wrap; gap: 9px; }
/* z-index alto: el formulario tapa apenas el borde derecho de la imagen.
   margin-bottom negativo: el form asoma un poco por debajo del fondo azul. */
.form-card    { align-self: start; margin-top: 40px; margin-bottom: -24px; position: relative; z-index: 3; }

.hero-title {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  color: var(--white);
  white-space: nowrap;
}
.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 1.2px;
  opacity: .88;
  color: var(--white);
}
.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(27,49,99,.55);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}
.badge::before {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6 11.5C9.03757 11.5 11.5 9.03757 11.5 6C11.5 2.96243 9.03757 0.5 6 0.5C2.96243 0.5 0.5 2.96243 0.5 6C0.5 9.03757 2.96243 11.5 6 11.5Z' fill='%234FAECF'/%3E%3Cpath d='M3.5 6.00001L5.3 7.80001L8.5 4.60001' stroke='%230C1220' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ─── Form Card ──────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px 24px;
  box-shadow: var(--shadow-card);
}
.form-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-main);
  line-height: 1.35;
  margin-bottom: 20px;
  text-align: center;
}

/* Field */
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 13px;
  color: var(--blue-main);
}
.field label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--blue-main);
}
.field input,
.field select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder { color: var(--gray-400); font-size: .83rem; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  color: var(--blue-main);
}
.field select option { color: var(--blue-main); }
/* .field select.has-value { color: var(--gray-900); } */
.field input:focus,
.field select:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(41,76,152,.1);
}

/* Validation states */
.field.is-error input,
.field.is-error select {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.field.is-valid input,
.field.is-valid select {
  border-color: var(--success);
  box-shadow: none;
}
.field-msg {
  font-size: .72rem;
  font-weight: 500;
  min-height: 14px;
  display: block;
  line-height: 1.3;
}
.field.is-error  .field-msg { color: var(--error); }
.field.is-valid  .field-msg { color: var(--success); }

/* Submit */
.btn-submit {
  width: 100%;
  padding: 14px;
  background: #4faecf;
  color: var(--white);
  font-size: .94rem;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: .6px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: opacity .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}
.btn-submit:hover  { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(41,76,152,.48); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
.btn-submit.is-loading .btn-label  { display: none; }
.btn-submit.is-loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-legal {
  font-size: .69rem;
  color: var(--blue-main);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.form-legal a { color: var(--blue-main); text-decoration: underline; }

/* Honeypot anti-bot */
.hp-wrap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Error de envío */
.submit-error[hidden] { display: none; }
.submit-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  margin-top: 8px;
}
.submit-error-icon { height: 56px; width: auto; }
.submit-error-msg { font-size: .82rem; color: var(--error); }

/* Ocultar badge de reCAPTCHA (no interfiere con el layout) */
.grecaptcha-badge { visibility: hidden !important; }

/* Success */
.form-success {
  text-align: center;
  padding: 20px 0 12px;
}
.success-icon {
  margin-bottom: 12px;
}
.success-icon img {
  height: 88px;
  width: auto;
  margin: 0 auto;
}
.form-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 6px; }
.form-success p  { font-size: .85rem; color: var(--gray-600); line-height: 1.5; }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats-section {
  padding: 64px 24px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: .72rem;
  font-weight: 700;
  font-style: italic;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 32px;
  line-height: 1.2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  aspect-ratio: 4 / 3;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  cursor: default;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.12); }
.stat-1 { background: var(--blue-main); }
.stat-2 { background: var(--blue-mid); }
.stat-3 { background: var(--blue-light); }
.stat-4 { background: var(--blue-pale); }
.stat-value {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-value img {
  height: 110px;
  width: auto;
  max-width: 100%;
}
.stat-label { font-size: 1.1rem; color: rgba(255,255,255,.82); font-weight: 700; }

/* ─── Features ───────────────────────────────────────────────── */
.features-section {
  background: var(--gray-100);
  padding: 64px 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1.5px solid var(--gray-200);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.feature-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 18px rgba(41,76,152,.09);
  transform: translateY(-2px);
}
.feature-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--gray-900); }
.feature-card p  { font-size: .83rem; color: var(--gray-600); line-height: 1.6; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(118deg, var(--blue-dark), var(--blue-main) 60%, var(--blue-mid));
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.cta-section p  { font-size: .97rem; opacity: .82; margin-bottom: 26px; }
.btn-cta {
  display: inline-block;
  padding: 14px 38px;
  background: var(--white);
  color: var(--blue-main);
  font-weight: 800;
  font-size: .94rem;
  letter-spacing: .4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,.28); }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.5);
  padding: 28px 24px;
  font-size: .8rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { transition: color .18s var(--ease); }
.footer-links a:hover { color: var(--white); }

/* ─── Cómo funciona / Pasos ──────────────────────────────────── */
.steps-section {
  padding: 64px 24px;
  background: var(--white);
}
.steps-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.steps-left { display: flex; flex-direction: column; }

.step-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 12px;
  border-left: 4px solid var(--blue-main);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.step-card:last-child { margin-bottom: 0; }
.step-card:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(41,76,152,.1); }

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-main);
  line-height: 1;
  min-width: 48px;
  opacity: .85;
}
.step-body h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.step-body p {
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Colores por tarjeta */
.step-card:nth-of-type(1) { background: var(--blue-main); border-left-color: var(--blue-main); }
.step-card:nth-of-type(1) .step-num       { color: var(--blue-pale); }
.step-card:nth-of-type(1) .step-body h3   { color: var(--white); }
.step-card:nth-of-type(1) .step-body p    { color: rgba(255,255,255,.8); }

.step-card:nth-of-type(2) { background: var(--blue-pale); border-left-color: var(--blue-pale); }
.step-card:nth-of-type(2) .step-num       { color: var(--blue-main); }
.step-card:nth-of-type(2) .step-body h3   { color: var(--blue-dark); }
.step-card:nth-of-type(2) .step-body p    { color: var(--gray-600); }

.step-card:nth-of-type(3) { background: var(--blue-mid); border-left-color: var(--blue-mid); }
.step-card:nth-of-type(3) .step-num       { color: var(--white); }
.step-card:nth-of-type(3) .step-body h3   { color: var(--white); }
.step-card:nth-of-type(3) .step-body p    { color: rgba(255,255,255,.85); }

.steps-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.steps-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  display: block;
}

/* ─── Beneficios Exclusivos ──────────────────────────────────── */
.benefits-section {
  padding: 64px 24px;
  background: var(--white);
}
.tag-pill {
  display: inline-block;
  background: var(--blue-main);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  font-style: italic;
  padding: 8px 22px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.benefits-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 1000px;
}
.benefits-carousel-wrap {
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--blue-main);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(27,49,99,.14);
  transition: background .18s var(--ease), color .18s var(--ease),
              opacity .18s var(--ease), transform .18s var(--ease);
}
.carousel-arrow:hover { background: var(--blue-main); color: var(--white); }
.carousel-prev { left: -14px; }
.carousel-next { right: -14px; }
.carousel-arrow:disabled { opacity: 0; pointer-events: none; }

.benefits-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  margin-bottom: 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.benefits-carousel::-webkit-scrollbar { display: none; }
.benefits-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}
.benefit-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 30px rgba(27,49,99,.06);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.benefits-carousel:not(.is-dragging) .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(27,49,99,.12);
}
/* Evita seleccionar texto mientras se arrastra */
.benefits-carousel.is-dragging .benefit-card { user-select: none; }
.benefit-card img { pointer-events: none; }
.benefit-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.benefit-icon img {
  height: 108px;
  width: auto;
}
.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-mid);
  margin-bottom: 16px;
}
.benefit-card p {
  font-size: 1.02rem;
  color: var(--blue-dark);
  font-weight: 500;
  line-height: 1.5;
}
.benefit-card p .rg { font-weight: 400; }
.benefit-note {
  margin-top: 16px;
  font-size: .9rem;
  font-weight: 400;
  color: var(--blue-main);
  opacity: .75;
  line-height: 1.5;
}
.benefits-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.benefits-notice .notice-icon { flex-shrink: 0; font-size: 1rem; }
.benefits-notice p { font-size: .9rem; color: #b45309; }
.benefits-notice strong { color: #b45309; font-weight: 700; }

/* ─── Texto legal ────────────────────────────────────────────── */
.legal-section {
  padding: 28px 24px;
  border-top: 1px solid var(--gray-200);
}
.legal-text {
  font-size: .72rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.legal-cft {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-top: 6px;
}

/* ─── Cobertura Nacional ─────────────────────────────────────── */
.coverage-section {
  padding: 40px 24px;
  background: var(--white);
}
.coverage-sub {
  font-size: .9rem;
  color: var(--gray-600);
  margin-top: -20px;
  margin-bottom: 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.partner-logo-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  overflow: hidden;
}
.partner-logo-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 2px 10px rgba(41,76,152,.1);
}
.partner-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* AMUS y AMPIV llenan de más la card (son logos altos): los achico un poco */
.partners-grid .partner-logo-card img[src*="amus"],
.partners-grid .partner-logo-card img[src*="ampiv"] {
  width: 80%;
  height: 80%;
}
.partner-logo-card--pending {
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-400);
  border-style: dashed;
}
.plogo-placeholder {
  font-size: .65rem;
  font-weight: 800;
  color: var(--c);
  text-align: center;
  letter-spacing: .3px;
  line-height: 1.2;
}

.coverage-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  max-width: 720px;
}
.notice-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  color: #d97706;
}
.coverage-notice p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.coverage-notice strong { color: var(--gray-900); }

/* ─── Footer actualizado ─────────────────────────────────────── */
.footer {
  background: var(--blue-main);
}
.footer-top {
  padding: 40px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo  { display: flex; align-items: center; gap: 9px; }
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.footer-nav a {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  transition: color .18s var(--ease);
}
.footer-nav a:hover { color: var(--white); }
.footer-sep { color: rgba(255,255,255,.25); font-size: .8rem; }

.footer-bottom {
  padding: 14px 24px;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom .footer-inner {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.footer-secure { margin-left: auto; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Azul sólido: el recorte (hero-people.png) trae fondo azul plano igual,
     así el letterbox del contain se funde sin costuras. */
  .hero-bg {
    background: var(--blue-main);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 0 20px 40px;
    gap: 14px;
    min-height: unset;
  }
  /* Disolver hero-left-col para ordenar foto, texto, form y badges por separado */
  .hero-left-col {
    display: contents;
  }
  .hero-photo { order: 1; width: 100%; max-width: none; }
  .hero-heading {
    order: 2;
    text-align: center;
    min-height: unset;
  }
  .hero-title { white-space: nowrap; font-size: 6vw; }
  .form-card  { order: 3; align-self: stretch; margin-top: 0; margin-bottom: 0; }
  .hero-badges {
    order: 4;
    justify-content: center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  /* Alturas iguales aunque el texto pase a otra línea: el ícono es de alto
     fijo y el label reserva el alto de 2 líneas → el contenido mide siempre
     lo mismo, así que todas las cards quedan idénticas (sin aspect-ratio). */
  .stat-card {
    aspect-ratio: auto;
    padding: 20px 14px;
    gap: 12px;
  }
  .stat-value img { height: 68px; }
  .stat-label {
    font-size: .95rem;
    line-height: 1.4;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .steps-layout { grid-template-columns: 1fr; }
  .steps-img-wrap { display: none; }
  .benefit-card { flex-basis: 85%; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .partner-chip { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-sep { display: none; }
  .footer-secure { margin-left: 0; }
}

