/* =========================================================
   CREDIEXPRES — Cinematic Layer
   Smooth scroll (Lenis) + GSAP ScrollTrigger
   Parallax · Pin · Horizontal · Reveals · Velocity
   ========================================================= */

/* Lenis smooth scroll core */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Body cinematic background — subtle base */
body { background: #FAFBFD; }

/* =========================================================
   Cinematic reveals (replaces basic [data-reveal])
   ========================================================= */
[data-cinema] {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
  /* Fallback: si GSAP/ScrollTrigger falla, auto-revela después de 2s */
  animation: cinema-fallback 1s cubic-bezier(.16,1,.3,1) 2s forwards;
}
@keyframes cinema-fallback {
  to {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
  }
}
/* Cuando GSAP corre exitosamente añade .cinema-in → cancela animation */
.cinema-in {
  animation: none !important;
}
[data-cinema="left"]   { transform: translateX(-60px); }
[data-cinema="right"]  { transform: translateX(60px); }
[data-cinema="up"]     { transform: translateY(80px); }
[data-cinema="scale"]  { transform: scale(.85); }
[data-cinema="rotate"] { transform: rotate(-6deg) translateY(40px); }
[data-cinema="blur"]   { filter: blur(20px); transform: translateY(30px); }
[data-cinema="mask"]   { clip-path: inset(0 100% 0 0); }
.cinema-in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  clip-path: inset(0 0 0 0) !important;
}

/* Stagger children */
[data-cinema-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  will-change: opacity, transform;
}

/* =========================================================
   Parallax layers
   ========================================================= */
[data-parallax] { will-change: transform; }
.parallax-layer { position: absolute; inset: 0; pointer-events: none; }
.parallax-layer img,
.parallax-layer .layer-content {
  width: 100%; height: 100%; object-fit: cover;
}

/* =========================================================
   Pin sections
   ========================================================= */
.pin-stage {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}
.pin-stage[data-pin] {
  /* Will be pinned by ScrollTrigger */
}

/* Pin progress indicator */
.pin-progress {
  position: absolute;
  top: 50%; left: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
  pointer-events: none;
}
.pin-progress-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: all .35s ease;
}
.pin-progress-dot.active {
  background: var(--azul-electrico);
  width: 6px; height: 28px; border-radius: 4px;
  box-shadow: 0 0 14px rgba(30,95,255,.55);
}
@media (max-width: 768px) { .pin-progress { display: none; } }

/* =========================================================
   Horizontal scroll track
   ========================================================= */
.h-scroll-stage {
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
.h-scroll-track {
  display: flex;
  height: 100%;
  width: max-content;
  align-items: center;
  padding: 0 4vw;
  gap: clamp(20px, 3vw, 48px);
  will-change: transform;
}
.h-scroll-card {
  flex-shrink: 0;
  width: clamp(280px, 28vw, 380px);
  height: clamp(380px, 56vh, 460px);
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(30,95,255,.08),
    0 24px 60px -20px rgba(10,23,51,.18);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              box-shadow .45s ease;
}
.h-scroll-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 0 rgba(30,95,255,.12),
    0 36px 90px -24px rgba(30,95,255,.30);
}

/* Imagen de fondo VISIBLE — antes estaba muy blureada/transparente */
.h-scroll-card .h-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.1);
  opacity: 1;                                  /* full visibility */
  transition: filter .5s ease, transform .8s ease;
  z-index: 0;
  pointer-events: none;
}
/* En móvil enfocar la zona superior-central de la imagen (caras / asunto principal) */
@media (max-width: 1024px) {
  .h-scroll-card .h-card-bg {
    background-position: center 18%;
  }
}
@media (max-width: 600px) {
  .h-scroll-card .h-card-bg {
    background-position: center 12%;
  }
}
.h-scroll-card:hover .h-card-bg {
  filter: saturate(1.2);
  transform: scale(1.05);
}

/* Overlay: oscuro en reposo (texto legible) → casi limpio en hover (imagen brilla) */
.h-scroll-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10, 23, 51, .12) 0%,
      rgba(10, 23, 51, .25) 45%,
      rgba(10, 23, 51, .55) 80%,
      rgba(10, 23, 51, .72) 100%);
  pointer-events: none;
  z-index: 1;
  transition: background .45s ease;
}
.h-scroll-card:hover::before {
  background:
    linear-gradient(180deg,
      rgba(10, 23, 51, .02) 0%,
      rgba(10, 23, 51, .06) 45%,
      rgba(10, 23, 51, .22) 80%,
      rgba(10, 23, 51, .38) 100%);
}

/* Texto del card en BLANCO sobre la imagen + overlay oscuro */
.h-scroll-card,
.h-scroll-card h3,
.h-scroll-card p,
.h-scroll-card .badge,
.h-scroll-card [class*="card-num"] {
  color: white !important;
  position: relative;
  z-index: 2;
}
.h-scroll-card p {
  color: rgba(255, 255, 255, .85) !important;
}
/* Badge HIPOTECARIO·01 sobre la imagen — fondo azul translúcido */
.h-scroll-card [style*="background:#E8F0FF"],
.h-scroll-card [style*="background: #E8F0FF"] {
  background: rgba(255, 255, 255, .15) !important;
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, .95) !important;
  border: 1px solid rgba(255, 255, 255, .2);
}

.h-scroll-card > *:not(.h-card-bg) { position: relative; z-index: 1; }

/* Número grande primero — actúa de cabecera (blanco para máximo contraste) */
.h-scroll-card .h-card-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 4.25rem;
  line-height: .95;
  letter-spacing: -.04em;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 12px rgba(10, 23, 51, .5);
}

/* Tag categoría debajo del número — Hipotecario default = coral */
.h-scroll-card .h-card-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--coral);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, .25);
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px -4px rgba(255, 107, 71, .55);
}

/* === DIFERENCIACIÓN HIPOTECARIO vs PYME === */
/* Cards 1-5 = Hipotecario → tag CORAL (default arriba) */

/* Cards 6-10 = PyME → tag VERDE con texto blanco */
.h-scroll-card:nth-child(n+6) .h-card-tag {
  background: var(--pyme-accent);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 4px 14px -4px rgba(16, 185, 129, .55);
}
/* Número PyME mantiene blanco como en HIP — sin gradient verde */
.h-scroll-card:nth-child(n+6) .h-card-cta {
  background: rgba(16, 185, 129, .12);
  box-shadow:
    0 0 0 1px rgba(110, 231, 183, .65),
    0 0 16px rgba(16, 185, 129, .55),
    0 0 36px rgba(16, 185, 129, .35);
}
.h-scroll-card:nth-child(n+6):hover .h-card-cta {
  background: rgba(16, 185, 129, .22);
  box-shadow:
    0 0 0 1px rgba(110, 231, 183, .9),
    0 0 24px rgba(16, 185, 129, .8),
    0 0 50px rgba(16, 185, 129, .5);
}
.h-scroll-card h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.h-scroll-card p {
  font-size: .9375rem;
  flex: 1;
  line-height: 1.55;
}
/* CTA "Ver detalle" — ghost button transparente con glow neón */
.h-scroll-card .h-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-titulo);
  font-weight: 800;
  color: #ffffff;
  font-size: .9375rem;
  letter-spacing: .01em;
  align-self: flex-start;
  padding: 13px 26px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .65),
    0 0 16px rgba(30, 95, 255, .55),
    0 0 36px rgba(30, 95, 255, .35);
  transition: gap .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  isolation: isolate;
  --spark-angle: 0deg;
}
.h-scroll-card:hover .h-card-cta {
  gap: 14px;
  transform: translateY(-1px);
  background: rgba(30, 95, 255, .22);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .9),
    0 0 24px rgba(30, 95, 255, .8),
    0 0 50px rgba(30, 95, 255, .5);
}
.h-scroll-card .h-card-cta:active { transform: translateY(0); }

/* Destello viajando por el contorno — gradient border con mask-composite.
   El conic-gradient queda recortado al ring de 2px (no hay residuos fuera). */
@property --spark-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.h-scroll-card .h-card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--spark-angle),
    transparent 0deg 340deg,
    rgba(255, 255, 255, .35) 348deg,
    #ffffff 355deg,
    rgba(180, 210, 255, .85) 358deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: ctaSparkOrbit 6s linear infinite;
  z-index: 1;
}
/* Delays distintos por card para que no marchen sincronizados */
.h-scroll-card:nth-child(1)  .h-card-cta::before { animation-delay: -0.7s; }
.h-scroll-card:nth-child(2)  .h-card-cta::before { animation-delay: -2.4s; }
.h-scroll-card:nth-child(3)  .h-card-cta::before { animation-delay: -1.1s; }
.h-scroll-card:nth-child(4)  .h-card-cta::before { animation-delay: -4.5s; }
.h-scroll-card:nth-child(5)  .h-card-cta::before { animation-delay: -3.2s; }
.h-scroll-card:nth-child(6)  .h-card-cta::before { animation-delay: -5.8s; }
.h-scroll-card:nth-child(7)  .h-card-cta::before { animation-delay: -0.3s; }
.h-scroll-card:nth-child(8)  .h-card-cta::before { animation-delay: -3.9s; }
.h-scroll-card:nth-child(9)  .h-card-cta::before { animation-delay: -2.0s; }
.h-scroll-card:nth-child(10) .h-card-cta::before { animation-delay: -4.8s; }
@keyframes ctaSparkOrbit {
  to { --spark-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .h-scroll-card .h-card-cta::before { animation: none; }
}

/* Mobile fallback: turn horizontal into stacked grid */
@media (max-width: 1024px) {
  .h-scroll-stage { height: auto; overflow: visible; padding: 64px 0; }
  .h-scroll-track {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0 24px;
    gap: 20px;
  }
  .h-scroll-card {
    width: 100%;
    height: auto;
    min-height: 360px;
  }
}

/* =========================================================
   Services grid (stagger reveal — replaces horizontal scroll)
   ========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--gris-borde);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              border-color .25s ease,
              box-shadow .35s ease;
  min-height: 280px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(30, 95, 255, .10),
    transparent 50%
  );
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--azul-electrico);
  box-shadow:
    0 1px 0 rgba(30,95,255,.10),
    0 18px 40px -12px rgba(30,95,255,.18),
    0 30px 80px -20px rgba(10,23,51,.18);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.service-card p {
  font-size: .875rem;
  flex: 1;
  margin-bottom: 16px;
  line-height: 1.55;
}
.service-cta {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .875rem;
  color: var(--azul-electrico);
  align-self: flex-start;
  transition: transform .25s ease;
}
.service-card:hover .service-cta { transform: translateX(4px); }

/* =========================================================
   Velocity-driven text marquee (scrub direction)
   ========================================================= */
.velocity-text {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  width: max-content;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--azul-marino);
  will-change: transform;
}
.velocity-text span { white-space: nowrap; }
.velocity-text .vfilled {
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 50%, var(--azul-marino) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Separadores tipo bullet — más sutiles */
.velocity-text .vsep {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--azul-electrico);
  opacity: .5;
  flex-shrink: 0;
}
.velocity-section {
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--gris-claro);
  position: relative;
  isolation: isolate;
}

/* =========================================================
   Hero cinematic — multilayer parallax
   ========================================================= */
.hero-cinematic {
  position: relative;
  min-height: 100dvh;
  padding: 200px 0 100px;
  background: var(--azul-marino);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero-cinematic .hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-cinematic .layer-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.hero-cinematic .layer-orb-1 {
  width: 600px; height: 600px;
  right: -150px; top: -100px;
  background: radial-gradient(circle, rgba(30,95,255,.45), transparent 60%);
  filter: blur(40px);
  inset: auto;
  position: absolute;
}
.hero-cinematic .layer-orb-2 {
  width: 480px; height: 480px;
  left: -120px; bottom: -120px;
  background: radial-gradient(circle, rgba(75,127,255,.32), transparent 60%);
  filter: blur(50px);
  inset: auto;
  position: absolute;
}
.hero-cinematic .layer-particles {
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.6) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.5) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(147,180,255,.7) 1px, transparent 2px),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,.4) 1px, transparent 2px);
  background-size: 220px 220px, 280px 280px, 320px 320px, 240px 240px;
  background-position: 0 0, 30px 30px, 60px 60px, 90px 90px;
}
.hero-cinematic .container { position: relative; z-index: 5; }

/* =========================================================
   HERO AMBIENT MOTION — drift continuo, "navegando" por el espacio
   Inspiración: Synthesized hero, Stripe, Linear
   ========================================================= */

/* ORBES con flotación pronunciada + escala respiratoria — viaje espacial */
.hero-cinematic .layer-orb-1 {
  animation: hero-orb-drift-1 14s ease-in-out infinite alternate !important;
}
.hero-cinematic .layer-orb-2 {
  animation: hero-orb-drift-2 18s ease-in-out infinite alternate !important;
}
@keyframes hero-orb-drift-1 {
  0%   { transform: translate(0, 0) scale(1);          opacity: 1; }
  33%  { transform: translate(-160px, 90px) scale(1.25); opacity: .7; }
  66%  { transform: translate(120px, -80px) scale(.85);  opacity: 1; }
  100% { transform: translate(60px, 40px) scale(1.1);    opacity: .9; }
}
@keyframes hero-orb-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(140px, -90px) scale(1.2); }
  66%  { transform: translate(-100px, 60px) scale(.9); }
  100% { transform: translate(-60px, -30px) scale(1.05); }
}

/* PARTICLE FIELD — drift más rápido y visible — sensación de viaje */
.hero-cinematic .layer-particles {
  animation: hero-particle-drift 30s linear infinite !important;
}
@keyframes hero-particle-drift {
  0%   { background-position: 0 0, 30px 30px, 60px 60px, 90px 90px; }
  100% { background-position: 0 660px, 30px 870px, 60px 1140px, 90px 990px; }
}

/* GRID con pulse más visible */
.hero-cinematic .layer-grid {
  animation: hero-grid-pulse 8s ease-in-out infinite !important;
}
@keyframes hero-grid-pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.08); }
}

/* DATA STREAMS — líneas movidas al CENTRO del hero (no en bordes laterales) */
.hero-cinematic .layer-stream {
  position: absolute;
  inset: 0 15%;                                /* recorte 15% en cada lado para no tocar bordes */
  pointer-events: none;
  z-index: 2;
  background-image:
    linear-gradient(180deg,
      transparent 0%,
      rgba(107, 149, 255, .25) 30%,
      rgba(147, 180, 255, .6) 50%,
      rgba(107, 149, 255, .25) 70%,
      transparent 100%);
  background-size: 2px 220px;
  background-repeat: repeat-y;
  background-position:
    20% 0, 32% 50%, 44% 100%, 56% 30%, 68% 70%, 80% 0;  /* solo 6 líneas, centradas */
  animation: hero-stream-rain 4s linear infinite !important;
  opacity: .55;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);  /* fade en bordes */
}
@keyframes hero-stream-rain {
  0%   { background-position-y: -220px; }
  100% { background-position-y: 440px; }
}

/* NAVEGACIÓN — toda la composición flota suave (sensación de viaje) */
.hero-cinematic {
  perspective: 1000px;
}
.hero-cinematic .hero-layer.layer-grid,
.hero-cinematic .hero-layer.layer-particles {
  transform-origin: center center;
}

/* GLOW STREAK — destello horizontal que cruza el hero cada cierto tiempo */
.hero-cinematic::after {
  content: '';
  position: absolute;
  top: 30%;
  left: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(147, 180, 255, .8),
    rgba(255, 255, 255, .9),
    rgba(147, 180, 255, .8),
    transparent);
  filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  animation: hero-glow-streak 12s ease-in-out infinite;
}
@keyframes hero-glow-streak {
  0%, 100%  { transform: translateX(0); opacity: 0; }
  45%       { opacity: 0; transform: translateX(0); }
  50%       { opacity: 1; }
  55%, 99%  { transform: translateX(280vw); opacity: 0; }
}

/* Disable ambient motion on reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic .layer-orb-1,
  .hero-cinematic .layer-orb-2,
  .hero-cinematic .layer-particles,
  .hero-cinematic .layer-grid,
  .hero-cinematic .layer-stream,
  .hero-cinematic::after {
    animation: none !important;
  }
}

/* ---------- HERO TORCH (spotlight cursor) ---------- */
.hero-torch {
  position: absolute;
  pointer-events: none;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(147, 180, 255, 0.28) 0%,
    rgba(107, 149, 255, 0.18) 22%,
    rgba(75, 127, 255, 0.10) 42%,
    rgba(30, 95, 255, 0.04) 60%,
    transparent 75%
  );
  transform: translate(-50%, -50%);
  z-index: 4;
  mix-blend-mode: screen;
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform, left, top;
}
.hero-torch.active { opacity: 1; }

/* Hero layers se mueven con mouse — necesitan will-change para perf */
.hero-cinematic .hero-layer { will-change: transform; }
.hero-cinematic .layer-orb-1,
.hero-cinematic .layer-orb-2 { will-change: transform; }

/* ---------- HERO WATER RIPPLE (ondulación única súper lenta con fade) ---------- */
.hero-cinematic { position: relative; }
.water-ripple {
  position: absolute;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(147, 180, 255, .35);
  transform: translate(-50%, -50%);
  z-index: 4;
  mix-blend-mode: screen;
  filter: blur(3px);
  animation: rippleWater 11s cubic-bezier(.12, .65, .25, 1) forwards;
  will-change: width, height, opacity, border-width, filter;
  box-sizing: border-box;
}
@keyframes rippleWater {
  0% {
    width: 6px;
    height: 6px;
    opacity: 0;
    border-width: 1.5px;
    filter: blur(2px);
  }
  12% {
    opacity: .42;
    filter: blur(2.5px);
  }
  35% {
    opacity: .25;
    border-width: 1px;
    filter: blur(3px);
  }
  70% {
    opacity: .08;
    filter: blur(4px);
  }
  100% {
    width: 880px;
    height: 880px;
    opacity: 0;
    border-width: 0;
    filter: blur(6px);
  }
}

/* Hero kicker (large editorial number) */
.hero-cinematic .kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-cinematic .kicker .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--azul-electrico);
  letter-spacing: -.04em;
  line-height: 1;
}

/* Hero headline xl */
.hero-cinematic h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: white;
  margin-bottom: 32px;
  text-wrap: balance;
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 5;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
  animation: scrollCueDrop 1.8s ease-in-out infinite;
}
@keyframes scrollCueDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Ocultar scroll-cue cuando el hero tiene quick-stats (queda detrás de la 3ra card) */
.product-hero:has(.product-quick-stats) .scroll-cue,
.hero-cinematic:has(.product-quick-stats) .scroll-cue {
  display: none;
}

/* =========================================================
   Stat ticker (huge animated numbers)
   ========================================================= */
.stat-ticker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(60px, 8vw, 100px) 0;
}
.stat-ticker-item {
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(255,255,255,.08);
}
.section--marino .stat-ticker-item { border-color: rgba(255,255,255,.18); }
.stat-ticker-item .num-xl {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.section--marino .stat-ticker-item .num-xl {
  background: linear-gradient(135deg, #93B4FF, #C9D9FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-ticker-item .label-xl {
  font-size: .9375rem;
  color: var(--gris-texto);
  font-weight: 500;
}
.section--marino .stat-ticker-item .label-xl { color: rgba(255,255,255,.6); }

/* =========================================================
   RETRATO STAGE — Photo sticky top + cards horizontal accumulation
   ========================================================= */
.retrato-stage {
  position: relative;
  background: white;
  /* height: 320vh REMOVIDO — restringía altura del nuevo layout grid */
}
/* .retrato-pin-wrap CSS antiguo REMOVIDO. El nuevo wrapper usa
   display:grid via inline style. Sin position:sticky, height:100dvh, overflow:hidden
   que bloqueaban la visualización de la 3ra card. */
.retrato-frame-top {
  width: clamp(200px, 17vw, 240px);
  aspect-ratio: 4/5;
  flex-shrink: 0;
  margin-bottom: 32px;
  position: relative;
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(10,23,51,.35);
}
.retrato-frame-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 50%);
}
.retrato-frame-top .ini {
  position: relative;
  z-index: 2;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: white;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.retrato-frame-top .tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 12px 14px;
  border-radius: 12px;
  z-index: 3;
}
.retrato-frame-top .tag-name {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  color: var(--azul-marino);
}
.retrato-frame-top .tag-role {
  font-size: .75rem;
  color: var(--gris-texto);
  margin-top: 2px;
}

/* Cards horizontal track */
.retrato-cards-h {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
}
.retrato-card-h {
  position: absolute;
  width: clamp(220px, 19vw, 280px);
  height: clamp(260px, 36vh, 320px);
  background: white;
  border: 1px solid var(--gris-borde);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px -20px rgba(10,23,51,.18);
  transform: translateX(120vw);
  opacity: 0;
  will-change: transform, opacity;
  transition: box-shadow .35s ease;
}
.retrato-card-h:hover {
  box-shadow: 0 36px 80px -20px rgba(30,95,255,.32);
}
.retrato-card-h .num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.retrato-card-h .eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  margin-bottom: 10px;
}
.retrato-card-h h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.retrato-card-h p {
  font-size: .8125rem;
  line-height: 1.55;
  flex: 1;
  color: var(--gris-texto);
  margin: 0;
}

/* Mobile fallback: stack vertical, sin pin */
@media (max-width: 1024px) {
  .retrato-stage { height: auto; }
  .retrato-pin-wrap {
    position: static;
    height: auto;
    padding: 60px 24px 40px;
  }
  .retrato-cards-h {
    flex-direction: column;
    gap: 18px;
    margin-top: 16px;
    align-items: center;
  }
  .retrato-card-h {
    position: relative;
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 220px;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* =========================================================
   Pin retrato (Conócenos) — legacy (mantener por compatibilidad)
   ========================================================= */
.pin-retrato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100dvh;
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .pin-retrato { grid-template-columns: 1fr; gap: 40px; }
}
.pin-retrato-visual {
  /* sticky reemplazado por GSAP pin (Lenis rompe sticky) */
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .pin-retrato-visual { position: static; height: auto; min-height: 400px; }
}
.retrato-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 60px 120px -30px rgba(10,23,51,.4);
}
.retrato-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.25), transparent 50%);
}
.retrato-frame .retrato-initials {
  position: relative;
  z-index: 2;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(8rem, 18vw, 14rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: white;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.retrato-tag {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 16px;
  z-index: 3;
}
.retrato-tag .name { font-family: var(--font-titulo); font-weight: 800; font-size: 1.125rem; color: var(--azul-marino); }
.retrato-tag .role { font-size: .8125rem; color: var(--gris-texto); margin-top: 2px; }

/* Retrato story — texto que cambia en scroll */
.retrato-story {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.retrato-story-block {
  padding: 48px 0;
}
.retrato-story-block .step-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: block;
  width: auto; height: auto;
  border-radius: 0;
  box-shadow: none;
}
.retrato-story-block h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-wrap: balance;
}

/* =========================================================
   Cinematic CTA
   ========================================================= */
.cta-cinematic {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  background: linear-gradient(135deg, var(--azul-marino) 0%, #122149 100%);
  color: white;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
/* Mesh gradient animado — blobs respirando */
.cta-cinematic::after {
  content: '';
  position: absolute;
  inset: -15%;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(30,95,255,.55), transparent 45%),
    radial-gradient(circle at 82% 68%, rgba(75,127,255,.42), transparent 50%),
    radial-gradient(circle at 50% 18%, rgba(107,149,255,.32), transparent 42%),
    radial-gradient(circle at 30% 82%, rgba(147,180,255,.30), transparent 45%),
    radial-gradient(circle at 78% 22%, rgba(45,108,255,.40), transparent 48%);
  filter: blur(70px) saturate(1.35);
  animation: meshDrift 22s cubic-bezier(.45,.05,.55,.95) infinite alternate;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes meshDrift {
  0%   { transform: translate(0%, 0%) scale(1) rotate(0deg); }
  25%  { transform: translate(-3%, 2%) scale(1.08) rotate(2deg); }
  50%  { transform: translate(2%, -3%) scale(.95) rotate(-1deg); }
  75%  { transform: translate(-2%, -2%) scale(1.05) rotate(1.5deg); }
  100% { transform: translate(3%, 3%) scale(1.02) rotate(-2deg); }
}
.cta-cinematic .container { position: relative; z-index: 5; }
.cta-cinematic .cta-bg-text { z-index: 1; }
.cta-cinematic h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.03em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.cta-cinematic .cta-bg-text {
  position: absolute;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(8rem, 25vw, 24rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.06);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
}

/* =========================================================
   Product page — feature stack
   ========================================================= */
.product-hero {
  position: relative;
  min-height: 80dvh;
  padding: 200px 0 80px;
  background: var(--azul-marino);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.product-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -.035em;
  text-wrap: balance;
  margin-bottom: 24px;
  color: white;
}
.product-hero .product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.product-hero .product-eyebrow .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--azul-electrico);
  color: white;
  display: grid; place-items: center;
  font-size: .8125rem;
}

.product-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
  max-width: 720px;
}
.product-quick-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
}
.product-quick-stat .v {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: white;
  font-variant-numeric: tabular-nums;
}
.product-quick-stat .l {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}


.product-section {
  padding: clamp(64px, 10vw, 120px) 0;
}
.product-section--alt { background: var(--gris-claro); }

.product-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .product-grid-2 { grid-template-columns: 1fr; } }

.product-info-card {
  background: white;
  border-radius: 24px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gris-borde);
}
.product-info-card h3 { margin-bottom: 16px; }
.product-info-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.product-info-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: .9375rem;
  align-items: start;
}
.product-info-list li::before {
  content: '';
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--verde-exito) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11L3 7.5l1.4-1.4L6.5 8.2l5-5 1.4 1.4z'/></svg>") center/14px no-repeat;
  flex-shrink: 0;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .9375rem;
}
.product-table th {
  background: var(--gris-claro);
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--azul-marino);
}
.product-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--gris-borde);
  color: var(--gris-texto);
}
.product-table tr:hover td { background: var(--azul-suave); }
.product-table td:first-child { font-weight: 600; color: var(--azul-marino); }

/* When-conviene callout */
.callout-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) { .callout-fit { grid-template-columns: 1fr; } }
.callout-card {
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--gris-borde);
}
.callout-card.fit-yes {
  background: linear-gradient(135deg, rgba(16,185,129,.06), rgba(16,185,129,.02));
  border-color: rgba(16,185,129,.25);
}
.callout-card.fit-no {
  background: linear-gradient(135deg, rgba(239,68,68,.04), rgba(239,68,68,.01));
  border-color: rgba(239,68,68,.20);
}
.callout-card h4 {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.callout-card.fit-yes h4 { color: #047857; }
.callout-card.fit-no h4 { color: #B91C1C; }
.callout-card ul { list-style: none; display: grid; gap: 8px; font-size: .9375rem; }
.callout-card ul li { padding-left: 20px; position: relative; }
.callout-card.fit-yes ul li::before { content: '✓'; position: absolute; left: 0; color: var(--verde-exito); font-weight: 800; }
.callout-card.fit-no ul li::before { content: '✕'; position: absolute; left: 0; color: #DC2626; font-weight: 800; }

/* =========================================================
   Stagger micro-utility
   ========================================================= */
.fade-up { opacity: 0; transform: translateY(40px); will-change: opacity, transform; }

/* =========================================================
   Mobile: simplify cinematic effects
   ========================================================= */
@media (prefers-reduced-motion: reduce), (max-width: 768px) {
  [data-cinema], [data-cinema-stagger] > * {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }
  .velocity-text { animation: none; }
}

/* =========================================================
   BRAND STATEMENT — Pin + Mask Reveal (replaces velocity)
   ========================================================= */
.brand-statement {
  position: relative;
  /* Altura del pin scroll — compacto */
  height: 140vh;
}
.brand-statement-pin {
  height: 100dvh;
  display: grid;
  place-items: center;
  padding-bottom: 28vh; /* shift content up — recorta espacio superior */
  position: relative;
  background: var(--azul-suave);
  isolation: isolate;
  overflow: hidden;
}
/* Aurora con paleta nueva: azul-suave base + spot coral cálido + verde PyME sutil */
.brand-statement-pin::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .22), transparent 60%),    /* azul electrico */
    radial-gradient(ellipse 42% 36% at 80% 24%, rgba(255, 107, 71, .18), transparent 60%),   /* coral spot */
    radial-gradient(ellipse 55% 45% at 50% 82%, rgba(10, 23, 51, .12), transparent 60%),     /* navy profundidad */
    radial-gradient(ellipse 35% 30% at 90% 72%, rgba(16, 185, 129, .14), transparent 60%);   /* verde PyME */
  filter: blur(70px) saturate(1.15);
  animation: auroraDrift 26s ease-in-out infinite alternate;
  pointer-events: none;
}
.brand-statement .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
}
.brand-statement-headline,
html body .brand-statement-headline,
html body.is-home .brand-statement-headline,
html body.home .brand-statement-headline {
  font-family: var(--font-titulo) !important;
  font-weight: 800 !important;
  font-size: 16rem !important;               /* 256px default desktop */
  line-height: .9 !important;
  letter-spacing: -.065em !important;
  color: var(--azul-marino) !important;
  text-align: center !important;
  text-wrap: balance !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
@media (min-width: 1200px) {
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: 19rem !important;              /* 304px desktop wide */
  }
}
@media (min-width: 1600px) {
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: 24rem !important;              /* 384px monitor grande */
  }
}
@media (max-width: 900px) {
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: 11rem !important;              /* 176px tablet */
  }
}
@media (max-width: 600px) {
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: 7rem !important;               /* 112px mobile */
  }
}
@media (max-width: 400px) {
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: 5.5rem !important;             /* 88px mobile chico */
  }
}
.brand-statement-headline .reveal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 0.9vw, 18px);             /* gap palabras tight, no abrir espacios */
  align-items: baseline;
}
.brand-statement-headline .reveal-word {
  display: inline-block;
  clip-path: inset(-0.1em 100% -0.25em 0);     /* máscara cerrada — bottom -0.25em deja espacio para descenders (j, g, p, q, y) */
  will-change: clip-path;
}
/* Acento azul (1ra palabra "crédito.") — gradient con shine */
.brand-statement-headline .reveal-accent {
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 50%, var(--azul-electrico) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s ease infinite;
}
/* Acento coral en la 2da palabra "decisión." — spot cálido contra el azul */
.brand-statement-headline .reveal-row:last-child .reveal-accent {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8E72 50%, var(--coral-hover) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-statement-sub {
  text-align: center;
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  margin: clamp(28px, 4vw, 48px) auto 0;
  color: var(--gris-texto);
  max-width: 680px;
  font-weight: 500;
  line-height: 1.55;
  opacity: 0;                                  /* GSAP timeline lo lleva a 1 al final */
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* Mobile fallback: estático, sin pin */
@media (max-width: 1024px) {
  .brand-statement { height: auto; }
  .brand-statement-pin { height: auto; min-height: 70dvh; padding: 80px 0; }
  .brand-statement-headline .reveal-word { clip-path: inset(0 0% 0 0); }
  .brand-statement-sub { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-statement-headline .reveal-word { clip-path: inset(0 0% 0 0); }
  .brand-statement-sub { opacity: 1; transform: none; }
}

/* =========================================================
   ★ FASE 1 PREMIUM ★
   Border beam · Aurora · Text split · SVG path · 3D tilt
   ========================================================= */

/* ---------- 1. SHINE ON HOVER (CTAs principales) ---------- */
/* Reemplaza border beam — no se corta con magnetic translate */
.btn--primary.btn--lg,
.navbar-cta .btn--primary,
.cta-cinematic .btn--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.btn--primary.btn--lg::before,
.navbar-cta .btn--primary::before,
.cta-cinematic .btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.45) 45%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.45) 55%,
    transparent 100%
  );
  transform: skewX(-12deg);
  transition: left .85s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  z-index: 1;
}
.btn--primary.btn--lg:hover::before,
.navbar-cta .btn--primary:hover::before,
.cta-cinematic .btn--primary:hover::before {
  left: 130%;
}
/* Shine azul para CTA cinematic (botón blanco) */
.cta-cinematic .btn--primary::before {
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(30,95,255,.30) 45%,
    rgba(30,95,255,.40) 50%,
    rgba(30,95,255,.30) 55%,
    transparent 100%
  );
}

/* ---------- 2. AURORA BACKGROUND ---------- */
.velocity-section,
.stat-ticker {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.velocity-section::before,
.stat-ticker::before {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(30,95,255,.18), transparent 60%),
    radial-gradient(ellipse 40% 35% at 75% 25%, rgba(147,180,255,.22), transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 80%, rgba(75,127,255,.16), transparent 60%),
    radial-gradient(ellipse 35% 30% at 90% 70%, rgba(16,185,129,.10), transparent 60%);
  filter: blur(60px) saturate(1.2);
  animation: auroraDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
}
/* Aurora más sutil en velocity-section (no compite con texto) */
.velocity-section::before {
  background:
    radial-gradient(ellipse 45% 35% at 15% 30%, rgba(30,95,255,.10), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 25%, rgba(147,180,255,.12), transparent 60%),
    radial-gradient(ellipse 50% 35% at 50% 80%, rgba(75,127,255,.08), transparent 60%);
  filter: blur(80px) saturate(1.1);
}
.section--marino .stat-ticker::before {
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(147,180,255,.32), transparent 60%),
    radial-gradient(ellipse 40% 35% at 75% 25%, rgba(75,127,255,.40), transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 80%, rgba(30,95,255,.34), transparent 60%),
    radial-gradient(ellipse 35% 30% at 90% 70%, rgba(201,217,255,.20), transparent 60%);
}

/* Grid pattern animado con luz viajando — vibe data tech */
.stat-ticker {
  position: relative;
}
.stat-ticker::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 0 0;
  pointer-events: none;
  mask-image: radial-gradient(
    280px circle at var(--light-x, 50%) var(--light-y, 50%),
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.5) 30%,
    rgba(0,0,0,.15) 60%,
    transparent 80%
  );
  -webkit-mask-image: radial-gradient(
    280px circle at var(--light-x, 50%) var(--light-y, 50%),
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,.5) 30%,
    rgba(0,0,0,.15) 60%,
    transparent 80%
  );
  animation: lightTravel 14s ease-in-out infinite;
}
.section--marino .stat-ticker::after {
  background-image:
    linear-gradient(rgba(147,180,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(147,180,255,.10) 1px, transparent 1px);
}
@keyframes lightTravel {
  0%   { --light-x: 5%;  --light-y: 20%; }
  25%  { --light-x: 70%; --light-y: 35%; }
  50%  { --light-x: 90%; --light-y: 80%; }
  75%  { --light-x: 30%; --light-y: 65%; }
  100% { --light-x: 5%;  --light-y: 20%; }
}
@property --light-x { syntax: '<percentage>'; initial-value: 50%; inherits: false; }
@property --light-y { syntax: '<percentage>'; initial-value: 50%; inherits: false; }
.stat-ticker > * { position: relative; z-index: 1; }
@keyframes auroraDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-4%, 3%) scale(1.06); }
  66%  { transform: translate(3%, -2%) scale(.97); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ---------- 3. TEXT SPLIT (heroes) ---------- */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50%) rotate(6deg);
  transform-origin: 0 100%;
  filter: blur(10px);
  will-change: opacity, transform, filter;
}
.split-word.in {
  opacity: 1;
  transform: translateY(0) rotate(0);
  filter: blur(0);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1),
              filter .9s cubic-bezier(.16,1,.3,1);
}
.split-line { display: inline-block; overflow: hidden; }

/* ---------- 4. SVG PATH DRAWING (proceso steps) ---------- */
.steps-svg {
  position: absolute;
  top: 36px;
  left: 0; right: 0;
  width: 100%;
  height: 4px;
  pointer-events: none;
  z-index: 1;
}
.steps-svg path {
  fill: none;
  stroke: url(#stepsGradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 1.6s cubic-bezier(.16,1,.3,1);
}
.steps-svg.draw path { stroke-dashoffset: 0; }
@media (max-width: 900px) {
  .steps-svg { display: none; }
  /* También oculta la línea CSS punteada anterior en mobile */
  .steps::before { display: none; }
}
/* Cuando hay SVG, ocultar línea punteada CSS estática */
.steps:has(.steps-svg)::before { display: none; }

/* ---------- 6. PROGRESS RING — Capacidad de pago (calculadora) ---------- */
.capacity-ring {
  margin-top: 32px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--azul-suave) 0%, #F0F5FF 100%);
  border: 1px solid var(--gris-borde);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 600px) {
  .capacity-ring { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
.capacity-ring-visual {
  position: relative;
  width: 160px;
  height: 160px;
}
.capacity-ring-visual svg {
  display: block;
}
.capacity-ring-visual #capRing {
  transition: stroke-dashoffset .6s cubic-bezier(.34,1.56,.64,1);
}
.capacity-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.capacity-ring-num .cap-pct {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2rem;
  color: var(--azul-marino);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.capacity-ring-num .cap-label {
  font-size: .6875rem;
  color: var(--gris-texto);
  margin-top: 6px;
  letter-spacing: .04em;
}
.capacity-ring-text .cap-status {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-marino);
  margin-bottom: 8px;
}
.capacity-ring-text .cap-desc {
  font-size: .8125rem;
  color: var(--gris-texto);
  line-height: 1.55;
}

/* ---------- 5. 3D TILT (Vanilla-Tilt prep) ---------- */
.h-scroll-card,
.service-card,
.testimonio {
  transform-style: preserve-3d;
}
.h-scroll-card .h-card-num,
.h-scroll-card h3,
.h-scroll-card .h-card-cta,
.service-card .service-num,
.service-card h3,
.service-card .service-cta {
  transform: translateZ(20px);
}
.h-scroll-card .h-card-tag {
  transform: translateZ(35px);
}
/* Tilt glare */
.js-tilt-glare {
  border-radius: inherit;
}

/* =========================================================
   RETRATO STAGE — Conócenos: deck stacking cards
   Foto sticky a la izquierda + 3 tarjetas que se apilan
   con position:sticky y top creciente (efecto deck CSS-only)
   ========================================================= */

/* Override de inline styles del bloque wp:html — necesario para que
   sticky funcione: el grid debe align-items:start (no center) y el
   wrap NO debe tener position:static que bloquee el sticky context. */
.retrato-stage .retrato-pin-wrap {
  align-items: start !important;
  position: relative !important;
  min-height: 0 !important;
}

.retrato-stage .retrato-story {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
  padding: 0 !important;
}

.retrato-stage .retrato-story-block {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--gris-borde);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow:
    0 1px 0 rgba(30, 95, 255, .06),
    0 24px 60px -20px rgba(10, 23, 51, .15);
  transition: box-shadow .35s var(--expo);
  opacity: 1 !important;
}
/* z-index escalonado: cada card nueva queda ENCIMA de la anterior al stackearse */
.retrato-stage .retrato-story-block:nth-child(1) { z-index: 1; }
.retrato-stage .retrato-story-block:nth-child(2) { z-index: 2; }
.retrato-stage .retrato-story-block:nth-child(3) { z-index: 3; }
.retrato-stage .retrato-story-block:nth-child(4) { z-index: 4; }
.retrato-stage .retrato-story-block:hover {
  box-shadow:
    0 1px 0 rgba(30, 95, 255, .08),
    0 32px 80px -20px rgba(10, 23, 51, .22);
}

/* Refuerza la sombra de la card más reciente (la última visible) */
.retrato-stage .retrato-story-block:hover {
  box-shadow:
    0 1px 0 rgba(30, 95, 255, .08),
    0 32px 80px -20px rgba(10, 23, 51, .22);
}

/* Reset de márgenes para que el padding interno mande */
.retrato-stage .retrato-story-block > *:first-child { margin-top: 0; }
.retrato-stage .retrato-story-block > *:last-child { margin-bottom: 0; }

/* Mobile: desactiva el sticky (no tiene sentido en columna única) */
@media (max-width: 1024px) {
  .retrato-stage .retrato-pin-wrap {
    grid-template-columns: 1fr !important;
  }
  .retrato-stage .pin-retrato-visual {
    position: relative !important;
    top: auto !important;
    margin-bottom: 32px;
  }
  .retrato-stage .retrato-story-block {
    position: static;
    top: auto !important;
    z-index: auto !important;
  }
  .retrato-stage .retrato-story {
    gap: 24px;
  }
}

/* =========================================================
   ★ MOBILE OPTIMIZATIONS — solo aplican ≤768px
   No tocan desktop. Refactor pensado para iPhone/Android.
   ========================================================= */
@media (max-width: 768px) {

  /* ---------- 1. CARRUSEL HORIZONTAL para grids/stacks de cards ---------- */
  .grid-3,
  .grid-2,
  .hub-grid,
  .product-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-direction: row !important;
    gap: 16px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    padding: 8px 16px 24px !important;
    margin: 0 -16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
  }
  .grid-3::-webkit-scrollbar,
  .grid-2::-webkit-scrollbar,
  .hub-grid::-webkit-scrollbar,
  .product-grid::-webkit-scrollbar { display: none; }

  .grid-3 > *,
  .grid-2 > *,
  .hub-grid > *,
  .product-grid > *,
  .hub-card,
  .product-card,
  .service-card {
    flex: 0 0 85vw !important;
    max-width: 360px !important;
    scroll-snap-align: start;
    min-height: auto !important;
  }

  .hub-grid::after,
  .grid-3::after { content: ''; flex: 0 0 24px; }

  /* ---------- 2. STATS TICKER → grid 2×2 ---------- */
  .stat-ticker,
  .stat-ticker[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 16px !important;
  }
  .stat-ticker-item .num-xl {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
    line-height: 1 !important;
  }
  .stat-ticker-item .label-xl {
    font-size: .75rem !important;
    line-height: 1.35 !important;
  }

  /* ---------- 3. PADDING ENTRE SECCIONES ---------- */
  .product-section,
  .stat-ticker,
  .velocity-section,
  .cta-cinematic,
  section.bank-marquee,
  section.h-scroll-stage {
    padding-top: clamp(48px, 10vw, 64px) !important;
    padding-bottom: clamp(48px, 10vw, 64px) !important;
  }

  /* Brand statement: alto natural, sin pin/scrub en mobile */
  .brand-statement {
    height: auto !important;
    min-height: auto !important;
  }
  .brand-statement-pin {
    height: auto !important;
    min-height: auto !important;
    padding: 64px 16px !important;
    place-items: center !important;
  }
  .brand-statement-headline,
  html body .brand-statement-headline {
    font-size: clamp(1.875rem, 8vw, 2.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
  }
  .brand-statement-headline .reveal-word {
    clip-path: none !important;
  }
  .brand-statement-sub {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ---------- 4. TIPOGRAFÍA Y NÚMEROS COMPACTOS ---------- */
  .hub-card-num,
  .product-card-num {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
    margin-bottom: 4px !important;
  }
  .hub-card h3,
  .product-card h3 {
    font-size: clamp(1.125rem, 4.5vw, 1.375rem) !important;
    line-height: 1.25 !important;
  }
  .hub-card p,
  .product-card p {
    font-size: .875rem !important;
    line-height: 1.55 !important;
  }
  .hub-card,
  .product-card {
    padding: 22px 20px !important;
  }

  /* h-scroll-card num también compacto en mobile */
  .h-scroll-card .h-card-num {
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
  }
  .h-scroll-card h3 {
    font-size: clamp(1.0625rem, 4.5vw, 1.25rem) !important;
  }
  .h-scroll-card p {
    font-size: .875rem !important;
  }

  /* Headers globales más compactos */
  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  section h2 { text-wrap: balance; }

  /* ---------- 5. HERO COMPACTO + CTAs 50% CENTRADOS ---------- */
  .hero-cinematic {
    min-height: 88dvh !important;
    padding: 100px 0 60px !important;
  }
  .hero-cinematic h1 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.1 !important;
  }
  .hero-cinematic .container > div[style*="display:flex"],
  .hero-cinematic .container > div[style*="flex-wrap"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 90% !important;          /* 5% padding der/izq efectivo */
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
  }
  .hero-cinematic .container > div[style*="display:flex"] a,
  .hero-cinematic .container > div[style*="flex-wrap"] a {
    width: 50% !important;          /* botón al 50% del contenedor */
    min-width: 200px !important;
    text-align: center !important;
    padding: 14px 24px !important;
    justify-content: center !important;
    box-sizing: border-box;
    margin: 0 auto !important;
  }

  /* Botones en otras secciones de la página (CTA cinematic, retrato, etc.) */
  .cta-cinematic .wp-block-button__link,
  .retrato-stage .wp-block-button__link,
  section .wp-block-button__link {
    width: 50% !important;
    min-width: 200px !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .cta-cinematic .wp-block-buttons,
  .retrato-stage .wp-block-buttons,
  section .wp-block-buttons {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  /* ---------- 6. STICKY MOBILE CTA BAR ---------- */
  /* 2026-06-30 Luis: iOS home indicator (safe-area-inset-bottom) cortaba los botones.
     padding-bottom usa env() para respetar el safe area en iPhone */
  body.has-mobile-cta-bar { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .ce-mobile-cta-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(10, 23, 51, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(30, 95, 255, .25);
    display: flex;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    z-index: 9990;
    transform: translateY(100%);
    transition: transform .35s var(--expo, cubic-bezier(.16, 1, .3, 1));
  }
  body.is-scrolled .ce-mobile-cta-bar { transform: translateY(0); }
  .ce-mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .875rem;
    text-decoration: none;
    line-height: 1.2;
  }
  .ce-mobile-cta-bar .primary { background: var(--azul-electrico, #1E5FFF); color: #fff; }
  .ce-mobile-cta-bar .ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
  }
}

/* Ocultar la barra fuera de mobile por seguridad */
@media (min-width: 769px) {
  .ce-mobile-cta-bar { display: none !important; }
}

/* Stat-ticker: padding muy reducido para pegarse a brand-statement */
section.stat-ticker[style*="padding:clamp(72px"] {
  padding-top: clamp(28px, 4vw, 48px) !important;
  padding-bottom: clamp(40px, 5vw, 64px) !important;
}

/* =========================================================
   ★ LEGAL PAGE — Aviso de Privacidad (página standalone)
   ========================================================= */
.legal-page {
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 50%, #ffffff 100%);
  color: var(--azul-marino);
  isolation: isolate;
}

/* Hero */
.legal-hero {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px) clamp(48px, 6vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.legal-hero-bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .15), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .12), transparent 60%);
  filter: blur(80px) saturate(1.1);
  pointer-events: none;
  animation: auroraDrift 28s ease-in-out infinite alternate;
}
.legal-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.legal-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .2),
              0 0 12px rgba(110, 231, 183, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.legal-h1 {
  font-family: var(--font-titulo);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 auto 22px;
  color: var(--azul-marino);
  text-wrap: balance;
}
.legal-lead {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--gris-texto);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.legal-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.legal-meta-pill {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--azul-electrico);
  color: #ffffff;
  box-shadow: 0 4px 14px -4px rgba(30, 95, 255, .55);
}
.legal-meta-pill--soft {
  background: rgba(30, 95, 255, .1);
  color: var(--azul-electrico);
  border: 1px solid rgba(30, 95, 255, .25);
  box-shadow: none;
}

/* Video YouTube embedded */
.legal-video {
  padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 7vw, 100px);
  position: relative;
}
.legal-video-container {
  max-width: 1080px;
  margin: 0 auto;
}
.legal-video-header {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.legal-video-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 12px;
}
.legal-video-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--azul-marino);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}
.legal-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 80px -24px rgba(10, 23, 51, .35),
    0 0 0 1px rgba(107, 149, 255, .25),
    0 0 60px -10px rgba(30, 95, 255, .25);
}
.legal-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Body — TOC sticky + content */
.legal-body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) clamp(80px, 10vw, 140px);
  position: relative;
}

/* TOC */
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
  padding: 24px 22px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(107, 149, 255, .2);
  border-radius: 18px;
  box-shadow: 0 8px 28px -12px rgba(30, 95, 255, .15);
}
.legal-toc-label {
  display: block;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(107, 149, 255, .2);
}
.legal-toc nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: legal-toc;
}
.legal-toc nav li {
  counter-increment: legal-toc;
  margin-bottom: 4px;
}
.legal-toc nav a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: .875rem;
  color: var(--gris-texto);
  text-decoration: none;
  font-family: var(--font-titulo);
  font-weight: 500;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  line-height: 1.35;
}
.legal-toc nav a::before {
  content: counter(legal-toc, decimal-leading-zero);
  font-size: .6875rem;
  font-weight: 700;
  color: rgba(30, 95, 255, .5);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.legal-toc nav a:hover {
  background: rgba(30, 95, 255, .08);
  color: var(--azul-electrico);
  transform: translateX(2px);
}
.legal-toc nav a:hover::before { color: var(--azul-electrico); }

/* Content */
.legal-content { min-width: 0; }
.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(107, 149, 255, .15);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--azul-marino);
  margin: 0 0 18px;
  scroll-margin-top: 90px;
}
.legal-section h3 {
  font-family: var(--font-titulo);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--azul-electrico);
  margin: 24px 0 10px;
  letter-spacing: -.01em;
}
.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gris-texto);
  margin: 0 0 16px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--azul-electrico);
  text-decoration: underline;
  text-decoration-color: rgba(30, 95, 255, .4);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease, color .2s ease;
}
.legal-section a:hover {
  text-decoration-color: var(--azul-electrico);
  color: var(--azul-electrico-hover);
}
.legal-section strong {
  color: var(--azul-marino);
  font-weight: 700;
}
.legal-section em {
  color: var(--azul-electrico);
  font-style: normal;
  background: rgba(30, 95, 255, .08);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: .9375rem;
}

/* Listas */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gris-texto);
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), rgba(30, 95, 255, .3));
}
.legal-list--compact li { margin-bottom: 6px; }
.legal-list--roman { counter-reset: legal-roman; }
.legal-list--roman li { padding-left: 36px; }
.legal-list--roman li::before {
  counter-increment: legal-roman;
  content: counter(legal-roman, upper-roman) '.';
  background: none;
  width: auto;
  height: auto;
  top: 0;
  font-family: var(--font-titulo);
  font-weight: 700;
  color: var(--azul-electrico);
  font-size: .9375rem;
  letter-spacing: .04em;
}

/* Callout (datos sensibles) */
.legal-callout {
  margin: 24px 0 8px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(255, 107, 71, .08), rgba(255, 142, 114, .04));
  border: 1px solid rgba(255, 107, 71, .25);
  border-radius: 14px;
  position: relative;
}
.legal-callout-label {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-hover);
  font-weight: 700;
  background: rgba(255, 107, 71, .14);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.legal-callout p { margin-bottom: 12px; }
.legal-callout p:last-child { margin-bottom: 0; }

/* ARCO grid */
.legal-arco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.legal-arco-item {
  position: relative;
  padding: 20px 20px 20px 60px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(107, 149, 255, .2);
  border-radius: 14px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.legal-arco-item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 95, 255, .4);
  box-shadow: 0 12px 28px -10px rgba(30, 95, 255, .25);
}
.legal-arco-letter {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.125rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--azul-electrico), #4A8BFF);
  box-shadow: 0 6px 14px -4px rgba(30, 95, 255, .55);
}
.legal-arco-item strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 1rem;
  color: var(--azul-marino);
  margin-bottom: 4px;
}
.legal-arco-item p {
  font-size: .875rem;
  line-height: 1.55;
  margin: 0;
}

/* Sección de contacto final */
.legal-section--contact { border-bottom: none; padding: 48px 0 0; }
.legal-contact-card {
  text-align: center;
  padding: clamp(32px, 4vw, 48px);
  background: linear-gradient(135deg, var(--azul-marino) 0%, #07112B 100%);
  color: #ffffff;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.legal-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 107, 71, .25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(30, 95, 255, .35), transparent 60%);
  filter: blur(60px);
}
.legal-contact-card h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.legal-contact-card p {
  color: rgba(220, 230, 245, .8);
  margin-bottom: 24px;
}
.legal-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #4A8BFF 100%);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .55),
    0 0 16px rgba(30, 95, 255, .55),
    0 0 36px rgba(30, 95, 255, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.legal-contact-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .85),
    0 0 24px rgba(30, 95, 255, .8),
    0 0 50px rgba(30, 95, 255, .5);
}

/* Responsive */
@media (max-width: 1024px) {
  .legal-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-toc {
    position: relative;
    top: auto;
    order: -1;
  }
  .legal-toc nav ol {
    columns: 2;
    column-gap: 14px;
  }
}
@media (max-width: 768px) {
  .legal-hero { padding: 80px 16px 48px; }
  .legal-video { padding: 0 16px 60px; }
  .legal-body { padding: 0 16px 80px; }
  .legal-toc { padding: 18px 16px; }
  .legal-toc nav ol { columns: 1; }
  .legal-section { padding: 24px 0; }
  .legal-arco-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ★ ADQUISICIÓN — Proceso en 2 fases (callout dentro de Requisitos)
   ========================================================= */
.req-phases {
  margin-top: clamp(48px, 5vw, 72px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.req-phases-header {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.req-phases-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
}
.req-phases-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--azul-marino);
  margin: 0;
  line-height: 1.15;
}
.req-phases-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: stretch;
}
.req-phase-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(24px, 2.5vw, 32px);
  isolation: isolate;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 12px 32px -14px rgba(10, 23, 51, .15);
}
.req-phase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .12) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.req-phase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px -16px rgba(30, 95, 255, .3),
              0 0 50px -16px rgba(30, 95, 255, .2);
}
.req-phase-num {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--azul-electrico), #4A8BFF);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px -4px rgba(30, 95, 255, .55);
}
.req-phase-card:nth-child(3) .req-phase-num {
  background: linear-gradient(135deg, var(--coral), #FF8E72);
  box-shadow: 0 6px 14px -4px rgba(255, 107, 71, .55);
}
.req-phase-title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--azul-marino);
  margin: 0 0 10px;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.req-phase-text {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.6;
  margin: 0 0 14px;
}
.req-phase-text strong { color: var(--azul-marino); font-weight: 700; }
.req-phase-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.req-phase-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: .875rem;
  color: var(--gris-texto);
  line-height: 1.5;
}
.req-phase-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), rgba(30, 95, 255, .3));
}
.req-phase-card:nth-child(3) .req-phase-bullets li::before {
  background: linear-gradient(90deg, var(--coral), rgba(255, 107, 71, .3));
}
.req-phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-electrico);
  opacity: .5;
}

@media (max-width: 768px) {
  .req-phases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .req-phase-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

/* =========================================================
   ★ ADQUISICIÓN — Ajuste sección "¿Es para ti?" (callout fit yes/no)
   Más separación entre los 2 recuadros + recorte borde superior
   ========================================================= */
.callout-fit {
  gap: clamp(28px, 4vw, 56px) !important;
}
/* Recortar padding-top de la sección que contiene "¿Es para ti?" */
section.product-section.product-section--alt[style*="background:#F5F7FB"]:has(.callout-fit) {
  padding-top: clamp(40px, 6vw, 72px) !important;
}
/* Reducir margin-bottom del header decisión honesta */
section.product-section.product-section--alt:has(.callout-fit) > .container > div[style*="text-align:center"] {
  margin-bottom: clamp(32px, 4vw, 40px) !important;
}

/* Wrapper para video destacado pre-FAQ — espacio vertical */
.adq-video-pre-faq-stage {
  padding: clamp(48px, 6vw, 80px) 0 0;
  background: linear-gradient(180deg, var(--azul-suave) 0%, #ffffff 100%);
}
.adq-video-pre-faq-stage .adq-featured-video {
  margin-top: 0;
}

/* =========================================================
   ★ MEJORA HIPOTECA — Secciones principales (split image + content)
   ========================================================= */
.mej-requisitos-stage,
.mej-ideal-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.mej-ideal-stage {
  background: #ffffff;
  color: var(--azul-marino);
}
.mej-ideal-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 38% at 14% 22%, rgba(30, 95, 255, .10), transparent 65%),
    radial-gradient(ellipse 38% 32% at 86% 78%, rgba(255, 107, 71, .08), transparent 65%);
  filter: blur(60px);
}

/* Split layout */
.mej-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.mej-split--reverse .mej-split-content { order: 2; }
.mej-split--reverse .mej-split-visual { order: 1; }

.mej-split-content { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }

/* Eyebrow */
.mej-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
}
.mej-eyebrow--coral { color: var(--coral-hover); border-color: rgba(255, 142, 114, .45); background: rgba(255, 107, 71, .1); }
.mej-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .2), 0 0 12px rgba(110, 231, 183, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.mej-eyebrow-dot--coral {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 71, .2), 0 0 12px rgba(255, 107, 71, .55);
}

/* Title + lead */
.mej-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--azul-marino);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.mej-ideal-stage .mej-title { color: var(--azul-marino); }

.mej-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--gris-texto);
  margin: 0;
  max-width: 540px;
}
.mej-lead-center {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--gris-texto);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mej-ideal-stage .mej-lead { color: var(--gris-texto); }
.mej-lead strong { color: var(--azul-marino); font-weight: 700; }
.mej-ideal-stage .mej-lead strong { color: var(--azul-marino); }

/* Bullets */
.mej-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mej-bullets li {
  position: relative;
  padding-left: 32px;
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--gris-texto);
}
.mej-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 95, 255, .15), rgba(107, 149, 255, .08));
  border: 1px solid rgba(30, 95, 255, .25);
}
.mej-bullets li::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--azul-electrico);
  border-bottom: 2px solid var(--azul-electrico);
  transform: rotate(-45deg);
}
.mej-bullets strong { color: var(--azul-marino); font-weight: 700; }
.mej-bullet--highlight {
  margin-top: 6px;
  padding: 14px 16px 14px 46px !important;
  background: linear-gradient(135deg, rgba(255, 107, 71, .06), rgba(255, 142, 114, .02));
  border: 1px solid rgba(255, 107, 71, .22);
  border-radius: 12px;
}
.mej-bullet--highlight::before {
  left: 14px !important;
  top: 18px !important;
  background: linear-gradient(135deg, rgba(255, 107, 71, .2), rgba(255, 142, 114, .1)) !important;
  border-color: rgba(255, 142, 114, .4) !important;
}
.mej-bullet--highlight::after {
  left: 20px !important;
  top: 23px !important;
  border-color: var(--coral-hover) !important;
}

/* CTA ghost */
.mej-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .12);
  color: var(--azul-electrico) !important;
  border: 1px solid rgba(30, 95, 255, .35);
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  text-decoration: none !important;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.mej-cta-ghost:hover {
  background: rgba(30, 95, 255, .22);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(30, 95, 255, .35);
}

/* Image wraps */
.mej-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10, 23, 51, .35);
}
.mej-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}
.mej-image-deco {
  position: absolute;
  inset: -16px;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 95, 255, .25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 71, .2), transparent 50%);
  filter: blur(40px);
  border-radius: 30px;
  pointer-events: none;
}

/* Image card variant (cartas de aprobación) — sin recuadro, sin sombra, imagen 100% limpia */
.mej-image-wrap--card {
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.mej-image-wrap--card img {
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

/* Stamp APROBADO — reposicionado dentro de la imagen para no chocar con overflow del section */
.mej-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(16, 185, 129, .55),
              0 0 0 4px rgba(255, 255, 255, .9);
  transform: rotate(8deg);
  z-index: 2;
}
.mej-stamp svg { display: block; }

/* Perfiles list */
.mej-perfiles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.mej-perfil {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: #FAFBFE;
  border: 0;
  border-left: 3px solid var(--coral);
  border-radius: 12px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.mej-perfil:hover {
  background: #F4F6FB;
  transform: translateX(3px);
  box-shadow: 0 10px 24px -14px rgba(255, 107, 71, .35);
}
.mej-perfil-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--azul-electrico), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mej-perfil-text {
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--gris-texto);
}
.mej-perfil-text strong { color: var(--azul-marino); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .mej-split { grid-template-columns: 1fr; gap: 32px; }
  .mej-split--reverse .mej-split-content { order: 1; }
  .mej-split--reverse .mej-split-visual { order: 2; }
}

/* =========================================================
   ★ MEJORA HIPOTECA — Costos table tachados + Banamex banner + Infonavit card
   ========================================================= */
.mej-costos-table .mej-cost-old {
  text-decoration: line-through;
  color: #94A3B8;
  font-size: .8125rem;
  margin-right: 6px;
}

/* Banamex tasa especial banner */
.mej-banamex-banner {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
  background: linear-gradient(135deg, #ffffff 0%, #FFF7F4 100%);
  border-radius: 18px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(255, 107, 71, .35),
              0 0 0 1px rgba(255, 142, 114, .35);
}
/* Variante con icono lateral (legacy): tres columnas */
.mej-banamex-banner:has(.mej-banamex-icon) {
  grid-template-columns: 56px 1fr auto;
}
.mej-banamex-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 107, 71, .15), transparent 60%);
}
.mej-banamex-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(255, 107, 71, .55);
  flex-shrink: 0;
}
/* Variante con logo Banamex */
.mej-banamex-icon--logo {
  width: 88px;
  height: 56px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(10, 23, 51, .08);
  box-shadow: 0 4px 12px -4px rgba(10, 23, 51, .12);
  padding: 6px 10px;
}
.mej-banamex-icon--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mej-banamex-content { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mej-banamex-tag {
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-hover);
  font-weight: 700;
}
.mej-banamex-title {
  font-family: var(--font-titulo);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  color: var(--azul-marino);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.mej-banamex-logo-inline {
  height: 48px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 0 6px 0 0;
  filter: drop-shadow(0 1px 2px rgba(10, 23, 51, .12));
}
@media (max-width: 600px) {
  .mej-banamex-logo-inline { height: 38px; }
}
.mej-banamex-text {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin: 4px 0 0;
}
.mej-banamex-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: #ffffff !important;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .8125rem;
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 8px 22px -6px rgba(255, 107, 71, .55);
}
.mej-banamex-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(255, 107, 71, .8);
}

/* Toggle "Ver requisitos" — usa la misma base visual */
.mej-banamex-cta--toggle {
  border: 0;
  cursor: pointer;
  font-family: var(--font-titulo);
  font-weight: 800;
}
.mej-banamex-cta--toggle .mej-cta-label-open { display: none; }
.mej-banamex-cta--toggle .mej-cta-chevron { transition: transform .25s ease; }
.mej-banamex-cta--toggle[aria-expanded="true"] .mej-cta-label-closed { display: none; }
.mej-banamex-cta--toggle[aria-expanded="true"] .mej-cta-label-open { display: inline; }
.mej-banamex-cta--toggle[aria-expanded="true"] .mej-cta-chevron { transform: rotate(180deg); }

/* Bloque colapsable de requisitos Banamex */
.mej-banamex-reqs {
  margin-top: 12px;
  overflow: hidden;
}
.mej-banamex-reqs[hidden] { display: none; }
.mej-banamex-reqs-inner {
  padding: clamp(22px, 2.6vw, 32px);
  background: linear-gradient(135deg, #FFF7F4 0%, #FFFFFF 60%);
  border: 1px solid rgba(255, 142, 114, .35);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 12px 32px -16px rgba(255, 107, 71, .25);
  animation: mejReqsReveal .35s ease-out;
}
.mej-banamex-reqs-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 50% 70% at 100% 100%, rgba(255, 107, 71, .12), transparent 60%);
}
@keyframes mejReqsReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mej-banamex-reqs-tag {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-hover);
  font-weight: 700;
}
.mej-banamex-reqs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mej-banamex-reqs-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(255, 142, 114, .25);
  border-radius: 12px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mej-banamex-reqs-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 142, 114, .55);
  box-shadow: 0 10px 24px -10px rgba(255, 107, 71, .35);
}
.mej-banamex-reqs-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1rem;
  color: var(--coral-hover);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  background: rgba(255, 107, 71, .12);
  border-radius: 8px;
  padding: 4px 8px;
  height: max-content;
}
.mej-banamex-reqs-text {
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--gris-texto);
}
.mej-banamex-reqs-text strong { color: var(--azul-marino); font-weight: 700; }
.mej-banamex-reqs-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-hover));
  color: #ffffff !important;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .8125rem;
  text-decoration: none !important;
  box-shadow: 0 8px 22px -6px rgba(255, 107, 71, .55);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mej-banamex-reqs-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(255, 107, 71, .8);
}
@media (max-width: 760px) {
  .mej-banamex-reqs-list { grid-template-columns: 1fr; }
}

/* Infonavit migration card */
.mej-infonavit-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
  padding: clamp(20px, 2.4vw, 28px) clamp(22px, 2.6vw, 32px);
  background: linear-gradient(135deg, rgba(30, 95, 255, .04), rgba(107, 149, 255, .02));
  border: 1px solid rgba(30, 95, 255, .25);
  border-radius: 18px;
}
.mej-infonavit-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30, 95, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid rgba(30, 95, 255, .3);
}
.mej-infonavit-content { min-width: 0; }
.mej-infonavit-tag {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 6px;
}
.mej-infonavit-title {
  font-family: var(--font-titulo);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 700;
  color: var(--azul-marino);
  margin: 0 0 6px;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.mej-infonavit-text {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin: 0;
}
.mej-infonavit-text strong { color: var(--azul-marino); font-weight: 700; }

@media (max-width: 768px) {
  .mej-banamex-banner { grid-template-columns: 1fr; text-align: left; }
  .mej-banamex-cta { justify-self: flex-start; }
  .mej-infonavit-card { grid-template-columns: 1fr; }
  .mej-infonavit-icon { width: 48px; height: 48px; }
}

/* =========================================================
   ★ ADQUISICIÓN — Sección "Carta de aprobación" (prueba visual)
   ========================================================= */
.adq-proof-stage {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 100%);
  isolation: isolate;
  overflow: hidden;
}
.adq-proof-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .15), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .12), transparent 60%);
  filter: blur(80px);
}
.adq-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.adq-proof-content { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.adq-proof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
}
.adq-proof-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .2), 0 0 12px rgba(110, 231, 183, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.adq-proof-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--azul-marino);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.adq-proof-accent {
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adq-proof-text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--gris-texto);
  margin: 0;
}
.adq-proof-text strong { color: var(--azul-marino); font-weight: 700; }
.adq-proof-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adq-proof-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: .9375rem;
  line-height: 1.5;
  color: var(--gris-texto);
}
.adq-proof-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), var(--coral));
}
.adq-proof-bullets strong { color: var(--azul-marino); font-weight: 700; }
.adq-proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--azul-electrico), #4A8BFF);
  color: #ffffff !important;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  text-decoration: none !important;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .55),
    0 0 14px rgba(30, 95, 255, .55),
    0 0 32px rgba(30, 95, 255, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.adq-proof-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .85),
    0 0 22px rgba(30, 95, 255, .8),
    0 0 44px rgba(30, 95, 255, .5);
}

/* Imagen con stamp APROBADO */
.adq-proof-visual { position: relative; }
.adq-proof-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  transform: rotate(-1.5deg);
  transition: transform .5s var(--expo, cubic-bezier(.16,1,.3,1));
}
.adq-proof-image-wrap:hover { transform: rotate(0deg) scale(1.02); }
.adq-proof-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 30px 60px -20px rgba(10, 23, 51, .35),
    0 8px 20px -8px rgba(10, 23, 51, .15),
    0 0 0 1px rgba(107, 149, 255, .15);
}
.adq-proof-stamp {
  position: absolute;
  top: 18px;
  right: -14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #ffffff;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(16, 185, 129, .55),
              0 0 0 4px rgba(255, 255, 255, .9);
  transform: rotate(8deg);
  z-index: 2;
}
.adq-proof-stamp svg { display: block; }

@media (max-width: 900px) {
  .adq-proof-grid { grid-template-columns: 1fr; }
  .adq-proof-image-wrap { transform: none; max-width: 480px; margin: 0 auto; }
  .adq-proof-stamp { right: -8px; top: 12px; padding: 8px 14px; font-size: .6875rem; }
}

/* =========================================================
   ★ ADQUISICIÓN — Calculadora rápida de capacidad
   ========================================================= */
.adq-calc-stage {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 60%, #ffffff 100%);
  isolation: isolate;
  overflow: hidden;
}
.adq-calc-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .15), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .1), transparent 60%);
  filter: blur(80px);
}
.adq-calc-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.adq-calc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
  margin-bottom: 18px;
}
.adq-calc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .2), 0 0 12px rgba(110, 231, 183, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.adq-calc-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--azul-marino);
  margin: 0 auto 14px;
  line-height: 1.1;
  text-wrap: balance;
  max-width: 760px;
}
.adq-calc-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--gris-texto);
  max-width: 560px;
  margin: 0 auto;
}

/* Grid form + output */
.adq-calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* FORM card */
.adq-calc-form {
  position: relative;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 22px;
  padding: clamp(24px, 2.5vw, 32px);
  isolation: isolate;
  box-shadow: 0 14px 40px -16px rgba(10, 23, 51, .15);
}
.adq-calc-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .12) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Toggle solo/dual */
.adq-calc-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: rgba(30, 95, 255, .06);
  padding: 5px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.adq-calc-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 8px;
  background: transparent;
  border: none;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--gris-texto);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.adq-calc-toggle-btn.is-active {
  background: #ffffff;
  color: var(--azul-electrico);
  box-shadow: 0 4px 12px -4px rgba(30, 95, 255, .25);
}
.adq-calc-toggle-icon { font-size: 1.125rem; line-height: 1; }

/* Person block */
.adq-calc-person {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adq-calc-person + .adq-calc-person {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px dashed rgba(107, 149, 255, .3);
}
.adq-calc-person-label {
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 4px;
}
.adq-calc-person-label--two { color: var(--coral-hover); }

.adq-calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.adq-calc-field-label {
  font-family: var(--font-titulo);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--azul-marino);
}
.adq-calc-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.adq-calc-input-prefix {
  position: absolute;
  left: 14px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-electrico);
  pointer-events: none;
}
.adq-calc-input {
  width: 100%;
  padding: 12px 14px 12px 28px;
  background: rgba(255, 255, 255, .9);
  border: 1.5px solid rgba(107, 149, 255, .25);
  border-radius: 10px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--azul-marino);
  font-variant-numeric: tabular-nums;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.adq-calc-input:focus {
  outline: none;
  border-color: var(--azul-electrico);
  box-shadow: 0 0 0 3px rgba(30, 95, 255, .15);
}
.adq-calc-input::-webkit-outer-spin-button,
.adq-calc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.adq-calc-input[type=number] { -moz-appearance: textfield; }

/* OUTPUT card */
.adq-calc-output {
  position: relative;
  background: linear-gradient(160deg, var(--azul-marino) 0%, #07112B 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: clamp(24px, 2.5vw, 32px);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adq-calc-output::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 107, 71, .25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(30, 95, 255, .35), transparent 60%);
  filter: blur(50px);
}
.adq-calc-result-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(107, 149, 255, .25);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.adq-calc-result-row--main {
  background: rgba(30, 95, 255, .15);
  border-color: rgba(107, 149, 255, .45);
  padding: 18px 20px;
  box-shadow: 0 0 30px -10px rgba(30, 95, 255, .55);
}
.adq-calc-result-label {
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, .85);
  font-weight: 700;
}
.adq-calc-result-value {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.adq-calc-result-value--big {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  background: linear-gradient(135deg, #ffffff 0%, #B4CEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.adq-calc-explainer {
  font-size: .8125rem;
  line-height: 1.55;
  color: rgba(220, 230, 245, .75);
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border-radius: 10px;
}
.adq-calc-explainer strong { color: #B4CEFF; font-weight: 700; }
.adq-calc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--azul-electrico), #4A8BFF);
  color: #ffffff !important;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  text-decoration: none !important;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .55),
    0 0 16px rgba(30, 95, 255, .55),
    0 0 36px rgba(30, 95, 255, .35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.adq-calc-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .85),
    0 0 24px rgba(30, 95, 255, .8),
    0 0 50px rgba(30, 95, 255, .5);
}
.adq-calc-disclaimer {
  font-size: .75rem;
  color: rgba(220, 230, 245, .55);
  text-align: center;
}

/* Tips accordion */
.adq-calc-tips {
  max-width: 880px;
  margin: 0 auto;
}
.adq-calc-tips-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--azul-marino);
  text-align: center;
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.adq-calc-tip {
  position: relative;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(107, 149, 255, .25);
  border-radius: 14px;
  margin-bottom: 10px;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.adq-calc-tip[open] {
  background: rgba(255, 255, 255, .85);
  border-color: rgba(30, 95, 255, .4);
  box-shadow: 0 8px 24px -10px rgba(30, 95, 255, .2);
}
.adq-calc-tip summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--azul-marino);
}
.adq-calc-tip summary::-webkit-details-marker { display: none; }
.adq-calc-tip summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(30, 95, 255, .12);
  border: 1px solid rgba(30, 95, 255, .3);
  color: var(--azul-electrico);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .35s ease, background .25s ease;
}
.adq-calc-tip[open] summary::after {
  transform: rotate(45deg);
  background: rgba(255, 107, 71, .15);
  border-color: rgba(255, 107, 71, .45);
  color: var(--coral-hover);
}
.adq-calc-tip-body {
  padding: 0 20px 18px;
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.6;
}
.adq-calc-tip-body p { margin: 0 0 10px; }
.adq-calc-tip-body p:last-child { margin: 0; }
.adq-calc-tip-body strong { color: var(--azul-marino); font-weight: 700; }

/* Featured video card al final */
.adq-featured-video {
  margin-top: clamp(48px, 5vw, 72px);
  position: relative;
  background: linear-gradient(135deg, var(--azul-marino) 0%, #07112B 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 20px 50px -20px rgba(10, 23, 51, .4);
}
.adq-featured-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(255, 0, 0, .25), transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(30, 95, 255, .35), transparent 60%);
  filter: blur(50px);
}
.adq-featured-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -20px rgba(10, 23, 51, .55),
              0 0 80px -16px rgba(255, 0, 0, .25);
}
.adq-fv-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.adq-fv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF0000, #CC0000);
  box-shadow: 0 4px 14px -4px rgba(255, 0, 0, .55);
}
.adq-fv-eyebrow svg { display: block; }
.adq-fv-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
  text-wrap: balance;
}
.adq-fv-text {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(220, 230, 245, .82);
  margin: 0;
  max-width: 520px;
}
.adq-fv-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #ffffff !important;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease;
}
.adq-featured-video:hover .adq-fv-cta {
  background: rgba(255, 255, 255, .22);
  transform: translateX(4px);
}
.adq-fv-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .1);
}
.adq-fv-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35));
}
.adq-fv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 0, 0, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .5);
  z-index: 1;
  transition: transform .25s ease;
}
.adq-featured-video:hover .adq-fv-play { transform: translate(-50%, -50%) scale(1.1); }
.adq-fv-play svg { display: block; margin-left: 3px; }

/* Variante con iframe embed (en vez de thumbnail) */
.adq-featured-video .adq-fv-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px -14px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .1);
  background: #000;
}
.adq-featured-video .adq-fv-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .adq-calc-grid { grid-template-columns: 1fr; }
  .adq-featured-video { grid-template-columns: 1fr; }
  .adq-fv-thumb,
  .adq-fv-frame { order: -1; }
}

/* Forzar 3 columnas en steps de adquisición */
section.product-section .steps {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 768px) {
  section.product-section .steps { grid-template-columns: 1fr !important; }
}

/* =========================================================
   ★ ADQUISICIÓN — Highlight card (reemplaza tabla de tasas)
   ========================================================= */
.adq-highlight-card {
  position: relative;
  background: linear-gradient(160deg, #0A1733 0%, #122149 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 40px);
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(10, 23, 51, .35),
              0 0 0 1px rgba(30, 95, 255, .25);
}
.adq-highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 107, 71, .25), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(30, 95, 255, .4), transparent 60%);
  filter: blur(50px);
}
.adq-highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .15));
  border: 1px solid rgba(107, 149, 255, .35);
  color: #ffffff;
  margin-bottom: 18px;
  box-shadow: 0 8px 22px -8px rgba(30, 95, 255, .55),
              inset 0 1px 0 rgba(255, 255, 255, .15);
}
.adq-highlight-tag {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #B4CEFF;
  background: rgba(30, 95, 255, .2);
  border: 1px solid rgba(107, 149, 255, .3);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.adq-highlight-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.adq-highlight-text {
  font-size: .9375rem;
  line-height: 1.6;
  color: rgba(220, 230, 245, .8);
  margin: 0 0 18px;
}
.adq-highlight-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.adq-highlight-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: .9375rem;
  line-height: 1.5;
  color: rgba(220, 230, 245, .82);
}
.adq-highlight-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6B95FF, var(--coral));
}
.adq-highlight-bullets strong { color: #ffffff; font-weight: 700; }
.adq-highlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255, 107, 71, .12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 1px rgba(255, 142, 114, .65),
    0 0 16px rgba(255, 107, 71, .55),
    0 0 36px rgba(255, 107, 71, .35);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.adq-highlight-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 107, 71, .22);
  box-shadow:
    0 0 0 1px rgba(255, 142, 114, .9),
    0 0 24px rgba(255, 107, 71, .8),
    0 0 50px rgba(255, 107, 71, .5);
}

/* =========================================================
   ★ ADQUISICIÓN — Esquemas de crédito (Cofinavit/Apoyo/Fovissste)
   ========================================================= */
.adq-esquemas-stage {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 60%, #ffffff 100%);
  isolation: isolate;
  overflow: hidden;
}
.adq-esquemas-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .12), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .1), transparent 60%);
  filter: blur(80px) saturate(1.1);
}
.adq-esquemas-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.adq-esquemas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
.adq-esquema-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 14px 36px -16px rgba(10, 23, 51, .15);
}
.adq-esquema-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .12) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.adq-esquema-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -16px rgba(30, 95, 255, .3),
              0 0 60px -18px rgba(30, 95, 255, .2);
}
.adq-esquema-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px 24px;
  background: linear-gradient(180deg, var(--azul-suave), transparent);
  border-bottom: 1px solid rgba(107, 149, 255, .12);
  min-height: 180px;
}
.adq-esquema-logo-wrap img {
  max-height: 130px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(10, 23, 51, .12));
}
/* 2026-07-01 Luis: mobile — logo compacto arriba-derecha, body toma la izquierda
   con eyebrow + title + texto. Ahorra ~60% del vertical del card. */
@media (max-width: 640px) {
  .adq-esquema-card {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .adq-esquema-logo-wrap {
    flex: 0 0 96px;
    padding: 18px 16px 8px 0;
    background: none;
    border-bottom: none;
    min-height: 0;
    align-self: flex-start;
  }
  .adq-esquema-logo-wrap img {
    max-height: 76px;
    max-width: 76px;
    filter: drop-shadow(0 4px 10px rgba(10, 23, 51, .1));
  }
  .adq-esquema-body {
    padding: 18px 8px 22px 20px;
    flex: 1;
    min-width: 0;
  }
}
.adq-esquema-body {
  padding: clamp(22px, 2.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.adq-esquema-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  background: rgba(30, 95, 255, .1);
  padding: 5px 11px;
  border-radius: 999px;
}
.adq-esquema-title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--azul-marino);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.adq-esquema-text {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.6;
  margin: 0;
}
.adq-esquema-text strong { color: var(--azul-marino); font-weight: 700; }

/* =========================================================
   ★ ADQUISICIÓN — FAQ accordion
   ========================================================= */
.adq-faq-stage {
  position: relative;
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(180deg, var(--azul-suave) 0%, #ffffff 60%, var(--azul-suave) 100%);
  isolation: isolate;
  overflow: hidden;
}
.adq-faq-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(30, 95, 255, .14), transparent 60%),
    radial-gradient(ellipse 42% 36% at 20% 80%, rgba(255, 107, 71, .1), transparent 60%);
  filter: blur(80px);
}
.adq-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.adq-faq-item {
  position: relative;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 16px;
  transition: background .35s ease,
              transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 4px 16px -8px rgba(10, 23, 51, .1);
}
.adq-faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .3), rgba(107, 149, 255, .1) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background .35s ease;
}
.adq-faq-item:hover:not([open]) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 16px 32px -14px rgba(30, 95, 255, .25);
}
.adq-faq-item:hover:not([open])::before {
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF 70%);
}
.adq-faq-item[open] {
  background: rgba(255, 255, 255, .85);
  box-shadow:
    0 12px 36px -10px rgba(30, 95, 255, .25),
    0 0 50px -14px rgba(255, 107, 71, .18);
}
.adq-faq-item[open]::before {
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF 50%, var(--coral) 100%);
}
.adq-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-marino);
  line-height: 1.35;
}
.adq-faq-item summary::-webkit-details-marker { display: none; }
.adq-faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(30, 95, 255, .14), rgba(107, 149, 255, .08)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E5FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / cover;
  border: 1px solid rgba(30, 95, 255, .25);
  transition: transform .4s var(--expo, cubic-bezier(.16,1,.3,1)),
              background .35s ease, border-color .25s ease;
}
.adq-faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: rgba(255, 107, 71, .45);
  background:
    linear-gradient(135deg, rgba(255, 107, 71, .2), rgba(255, 142, 114, .1)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FF6B47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>") center / cover;
}
.adq-faq-body {
  padding: 0 24px 22px;
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.65;
}
.adq-faq-body strong { color: var(--azul-marino); font-weight: 700; }

/* Responsive */
@media (max-width: 900px) {
  .adq-esquemas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .adq-faq-item summary { padding: 18px 20px; font-size: .9375rem; }
  .adq-faq-body { padding: 0 20px 20px; font-size: .875rem; }
  .adq-highlight-card { padding: 24px 22px; }
}

/* =========================================================
   ★ BLOG GRID — cards dinámicos con miniatura (página /blog/)
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2vw, 24px);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--gris-borde);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit !important;
  position: relative;
  isolation: isolate;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              border-color .25s ease;
  box-shadow: 0 4px 20px -10px rgba(10, 23, 51, .1);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 95, 255, .35);
  box-shadow:
    0 24px 48px -16px rgba(10, 23, 51, .25),
    0 0 0 1px rgba(107, 149, 255, .2),
    0 0 50px -12px rgba(30, 95, 255, .25);
}
/* Thumbnail (featured image) */
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--azul-suave);
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 23, 51, .12));
  pointer-events: none;
  transition: opacity .35s ease;
}
.blog-card:hover .blog-card-thumb {
  transform: none; /* keep stable */
}
.blog-card-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Body */
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  gap: 10px;
}
.blog-card-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid;
  margin-bottom: 4px;
}
.blog-card-title {
  font-family: var(--font-titulo);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--azul-marino);
  margin: 0;
}
.blog-card-excerpt {
  font-size: .875rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin: 0;
  flex: 1;
  /* Limit a 3 líneas con ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-cta {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .8125rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  transition: gap .25s ease;
}
.blog-card:hover .blog-card-cta { gap: 8px; }

/* Mobile */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card-body { padding: 18px 20px 20px; }
}

/* =========================================================
   ★ BLOG POST — elementos custom dentro del contenido
   ========================================================= */
.post-lead {
  margin: 0 0 32px;
  padding: 24px 26px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .06), rgba(107, 149, 255, .03));
  border-left: 3px solid var(--azul-electrico);
  border-radius: 0 14px 14px 0;
}
.post-lead p {
  font-size: 1.0625rem !important;
  line-height: 1.65 !important;
  color: var(--azul-marino) !important;
  margin: 0 0 12px !important;
}
.post-lead p:last-child { margin-bottom: 0 !important; }

.post-figure {
  margin: 32px 0;
  padding: 0;
}
.post-figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(10, 23, 51, .25);
  display: block;
}

.post-callout {
  margin: 28px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .07), rgba(107, 149, 255, .03));
  border: 1px solid rgba(30, 95, 255, .25);
  border-radius: 14px;
  border-left-width: 3px;
}
.post-callout-label {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  background: rgba(30, 95, 255, .14);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.post-callout p {
  margin: 0 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}
.post-callout--warn {
  background: linear-gradient(135deg, rgba(255, 107, 71, .07), rgba(255, 142, 114, .03));
  border-color: rgba(255, 107, 71, .3);
}
.post-callout--warn .post-callout-label {
  color: var(--coral-hover);
  background: rgba(255, 107, 71, .14);
}

/* CTA card dentro del post — !important para vencer color heredado del template post */
.post-cta {
  margin: 48px 0;
  padding: clamp(28px, 4vw, 40px) !important;
  background: linear-gradient(135deg, var(--azul-marino) 0%, #07112B 100%) !important;
  color: #ffffff !important;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.post-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(255, 107, 71, .35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(30, 95, 255, .45), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.post-cta > * { position: relative; z-index: 1; }
.post-cta .post-cta-title,
.post-cta h3.post-cta-title {
  color: #ffffff !important;
  font-family: var(--font-titulo) !important;
  font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 14px !important;
  line-height: 1.2 !important;
}
.post-cta .post-cta-text,
.post-cta p.post-cta-text {
  color: rgba(230, 238, 250, .92) !important;
  font-size: 1.0625rem !important;
  line-height: 1.6 !important;
  margin: 0 auto 26px !important;
  max-width: 540px !important;
}
.post-cta .post-cta-text strong { color: #ffffff !important; font-weight: 700; }
.post-cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.post-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease;
  box-sizing: border-box;
}
.post-cta-btn--primary {
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #4A8BFF 100%);
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .55),
    0 0 14px rgba(30, 95, 255, .55),
    0 0 32px rgba(30, 95, 255, .35);
}
.post-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .85),
    0 0 22px rgba(30, 95, 255, .8),
    0 0 44px rgba(30, 95, 255, .5);
}
.post-cta-btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, .25);
}
.post-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px);
}

/* Video YouTube embed responsive */
.post-video {
  margin: 32px 0;
  padding: 0;
}
.post-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 24px 60px -20px rgba(10, 23, 51, .35),
    0 0 0 1px rgba(107, 149, 255, .25);
}
.post-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.post-byline {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 149, 255, .2);
  font-size: .9375rem;
  color: var(--gris-texto);
  font-style: italic;
}

@media (max-width: 768px) {
  .post-lead { padding: 20px 22px; }
  .post-callout { padding: 18px 20px; }
  .post-cta { padding: 28px 22px; }
  .post-cta-buttons { flex-direction: column; width: 100%; }
  .post-cta-btn { justify-content: center; width: 100%; }
}

/* =========================================================
   ★ ALIANZAS STAGE — Creditaria + AHMEX (página Conócenos)
   ========================================================= */
.alianzas-stage {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 60%, #ffffff 100%);
  isolation: isolate;
  overflow: hidden;
}
.alianzas-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .14), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .12), transparent 60%);
  filter: blur(80px) saturate(1.1);
  animation: auroraDrift 28s ease-in-out infinite alternate;
}
.alianzas-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.alianzas-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 72px);
}
.alianzas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
  backdrop-filter: blur(8px);
  margin-bottom: 22px;
}
.alianzas-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 71, .2),
              0 0 12px rgba(255, 107, 71, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.alianzas-title {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 880px;
  color: var(--azul-marino);
  text-wrap: balance;
}
.alianzas-sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--gris-texto);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
.alianzas-sub strong { color: var(--azul-marino); font-weight: 700; }

/* Grid 2 cards */
.alianzas-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-bottom: clamp(48px, 5vw, 72px);
}

/* Card base */
.alianza-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 14px 40px -16px rgba(10, 23, 51, .15);
}
.alianza-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .12) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.alianza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -16px rgba(30, 95, 255, .25),
              0 0 60px -16px rgba(30, 95, 255, .15);
}
.alianza-card--secondary::before {
  background: linear-gradient(135deg, rgba(255, 107, 71, .4), rgba(255, 142, 114, .12) 70%);
}
.alianza-card--secondary:hover {
  box-shadow: 0 22px 50px -16px rgba(255, 107, 71, .3),
              0 0 60px -16px rgba(255, 107, 71, .2);
}

/* Logo wrap — fluid sizing (Design System §10 compliant) */
.alianza-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.5vw, 32px) clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(30, 95, 255, .04), transparent);
  border-bottom: 1px solid rgba(107, 149, 255, .15);
}
.alianza-card--secondary .alianza-logo-wrap {
  background: linear-gradient(180deg, rgba(255, 107, 71, .05), transparent);
  border-bottom-color: rgba(255, 142, 114, .2);
}
.alianza-logo {
  max-height: clamp(150px, 18vw, 200px);
  width: auto;
  max-width: clamp(380px, 40vw, 520px);
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(10, 23, 51, .1));
}

/* Card body */
.alianza-card-body {
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.alianza-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  background: rgba(30, 95, 255, .1);
  padding: 6px 12px;
  border-radius: 999px;
}
.alianza-tag--coral {
  color: var(--coral-hover);
  background: rgba(255, 107, 71, .12);
}
.alianza-card-title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--azul-marino);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.alianza-card-text {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.6;
  margin: 0;
}
.alianza-card-text strong { color: var(--azul-marino); font-weight: 700; }

/* Bullets */
.alianza-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.alianza-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.5;
}
.alianza-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), rgba(30, 95, 255, .3));
}
.alianza-bullets strong { color: var(--azul-marino); font-weight: 700; }

/* Meta row (AHMEX) */
.alianza-meta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.alianza-meta-item {
  padding: 14px 16px;
  background: rgba(255, 107, 71, .08);
  border: 1px solid rgba(255, 142, 114, .25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.alianza-meta-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--coral-hover);
  letter-spacing: -.02em;
  line-height: 1;
}
.alianza-meta-lbl {
  font-size: .75rem;
  color: var(--gris-texto);
  letter-spacing: .02em;
  line-height: 1.3;
}

/* Strip de logos al pie */
.alianzas-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  flex-wrap: wrap;
  padding: clamp(18px, 2vw, 28px) clamp(20px, 3vw, 36px);
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(107, 149, 255, .2);
  border-radius: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.alianzas-strip-label {
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gris-texto);
  font-weight: 700;
  flex-shrink: 0;
}
.alianzas-strip-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
}
.alianza-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(80px, 9vw, 120px);
  filter: grayscale(.25) opacity(.85);
  transition: filter .25s ease, transform .25s ease;
}
.alianza-mini:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}
.alianza-mini img {
  max-height: 100%;
  max-width: 100%;
  width: clamp(140px, 15vw, 220px);
  object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
  .alianzas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .alianzas-strip {
    flex-direction: column;
    gap: 22px;
    padding: 24px 20px;
  }
  .alianzas-strip-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  /* .alianza-logo-wrap, .alianza-logo, .alianza-mini usan clamp() fluid — no override mobile necesario */
  .alianza-meta-row { grid-template-columns: 1fr; }
}

/* =========================================================
   ★ TRUST STAGE — Privacidad blindada (premium glassmorphism)
   ========================================================= */
.trust-stage {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, var(--azul-marino) 0%, #07112B 50%, var(--azul-marino) 100%);
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
}
.trust-aurora {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .35), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .22), transparent 60%),
    radial-gradient(ellipse 35% 30% at 60% 45%, rgba(107, 149, 255, .25), transparent 60%);
  filter: blur(90px) saturate(1.2);
  animation: auroraDrift 28s ease-in-out infinite alternate;
}
/* Grid hairline pattern para fondo tech sutil */
.trust-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.trust-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(180, 210, 255, .9);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(107, 149, 255, .35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
}
.trust-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .2),
              0 0 12px rgba(110, 231, 183, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
@keyframes trustPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(110, 231, 183, .2), 0 0 12px rgba(110, 231, 183, .55); }
  50%      { box-shadow: 0 0 0 7px rgba(110, 231, 183, .08), 0 0 18px rgba(110, 231, 183, .8); }
}
.trust-title {
  font-family: var(--font-titulo);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 auto 18px;
  max-width: 900px;
  text-wrap: balance;
}
.trust-accent {
  background: linear-gradient(135deg, #6B95FF 0%, #4A8BFF 50%, var(--coral) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s ease infinite;
}
.trust-sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: rgba(220, 230, 245, .82);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid 4 cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* Card glassmorph oscura */
.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 2.5vw, 32px);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-radius: 20px;
  isolation: isolate;
  transition: transform .45s var(--expo, cubic-bezier(.16,1,.3,1)),
              background .35s ease,
              box-shadow .45s var(--expo, cubic-bezier(.16,1,.3,1));
}
/* Borde gradient hairline */
.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(107, 149, 255, .55) 0%, rgba(107, 149, 255, .12) 60%, rgba(255, 107, 71, .25) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background .35s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .07);
  box-shadow:
    0 20px 50px -16px rgba(30, 95, 255, .4),
    0 0 80px -20px rgba(107, 149, 255, .35);
}
.trust-card:hover::before {
  background: linear-gradient(135deg, rgba(107, 149, 255, .9) 0%, rgba(74, 139, 255, .6) 50%, rgba(255, 107, 71, .55) 100%);
}

/* Variant accent (4ta card) — toque coral */
.trust-card--accent::before {
  background: linear-gradient(135deg, rgba(255, 107, 71, .55) 0%, rgba(255, 142, 114, .2) 70%);
}
.trust-card--accent:hover::before {
  background: linear-gradient(135deg, rgba(255, 107, 71, .85) 0%, rgba(255, 142, 114, .55) 70%);
}

/* Icono — cuadrado redondeado con gradient bg */
.trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .15));
  border: 1px solid rgba(107, 149, 255, .35);
  color: #ffffff;
  box-shadow: 0 8px 22px -8px rgba(30, 95, 255, .55),
              inset 0 1px 0 rgba(255, 255, 255, .15);
  flex-shrink: 0;
}
.trust-card--accent .trust-icon {
  background: linear-gradient(135deg, rgba(255, 107, 71, .35), rgba(255, 142, 114, .12));
  border-color: rgba(255, 142, 114, .45);
  box-shadow: 0 8px 22px -8px rgba(255, 107, 71, .55),
              inset 0 1px 0 rgba(255, 255, 255, .15);
}

/* Card body */
.trust-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.trust-card-title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.1875rem;
  color: #ffffff;
  margin: 0;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.trust-card-text {
  font-size: .9375rem;
  color: rgba(220, 230, 245, .75);
  line-height: 1.55;
  margin: 0;
}
.trust-card-text strong {
  color: #ffffff;
  font-weight: 700;
}
.trust-card-text em {
  color: rgba(180, 210, 255, .95);
  font-style: normal;
  background: rgba(30, 95, 255, .15);
  padding: 1px 6px;
  border-radius: 6px;
  font-size: .875rem;
  letter-spacing: 0;
}
.trust-card-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #B4CEFF;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .15);
  border: 1px solid rgba(107, 149, 255, .3);
}
.trust-card--accent .trust-card-tag {
  color: #FFB39E;
  background: rgba(255, 107, 71, .15);
  border-color: rgba(255, 142, 114, .35);
}

/* Footer stats */
.trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  padding: clamp(24px, 3vw, 36px) clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107, 149, 255, .25);
  border-radius: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.trust-footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-stat-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #ffffff 0%, #B4CEFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.trust-stat-lbl {
  font-family: var(--font-titulo);
  font-size: .75rem;
  color: rgba(180, 210, 255, .75);
  letter-spacing: .04em;
}
.trust-footer-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(107, 149, 255, .35), transparent);
}

/* Responsive */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .trust-card { padding: 22px 20px !important; }
  .trust-footer { gap: 16px; padding: 20px 18px; }
  .trust-footer-divider { display: none; }
  .trust-stat-num { font-size: 1.625rem; }
}

/* =========================================================
   ★ COMPARE STAIR — 4 etapas en escalera ascendente
   "1 asesor · 5+ bancos comparados"
   ========================================================= */
.compare-stair-stage {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 60%, #ffffff 100%);
  isolation: isolate;
  overflow: hidden;
}
.compare-stair-stage::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 18% 30%, rgba(30, 95, 255, .14), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 65%, rgba(255, 107, 71, .12), transparent 60%);
  filter: blur(80px) saturate(1.1);
  pointer-events: none;
  animation: auroraDrift 30s ease-in-out infinite alternate;
}
.compare-stair-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.compare-stair-header {
  text-align: center;
  margin-bottom: clamp(60px, 6vw, 90px);
}
.compare-stair-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .2);
}
.compare-stair-title {
  font-family: var(--font-titulo);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--azul-marino);
  line-height: 1.02;
  margin: 0 auto 18px;
  max-width: 900px;
  text-wrap: balance;
}
.compare-stair-sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--gris-texto);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Grid: 4 columnas escalonadas descendentes (cae hacia la derecha) */
.compare-stair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;                  /* cards crecen hacia abajo */
  position: relative;
  padding-bottom: 160px;                /* espacio para que la card 04 (más baja) respire */
}

/* Línea diagonal removida — solo escalera tipográfica */

/* Steps — sin caja, solo tipografía libre escalonada */
.compare-stair-card {
  position: relative;
  background: transparent;
  border: none;
  padding: clamp(20px, 2vw, 28px) clamp(16px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--expo, cubic-bezier(.16,1,.3,1));
  z-index: 1;
}

/* Escalera descendente: 01 más alta → 04 más baja */
.compare-stair-card.stair-step-1 { transform: translateY(0); }
.compare-stair-card.stair-step-2 { transform: translateY(45px); }
.compare-stair-card.stair-step-3 { transform: translateY(90px); }
.compare-stair-card.stair-step-4 { transform: translateY(140px); }

/* Hover: levanta sutilmente + número se intensifica */
.compare-stair-card:hover .compare-stair-num {
  filter: drop-shadow(0 6px 18px rgba(30, 95, 255, .35));
  transform: translateY(-2px);
}
.compare-stair-card.stair-step-1:hover { transform: translateY(-8px); }
.compare-stair-card.stair-step-2:hover { transform: translateY(37px); }
.compare-stair-card.stair-step-3:hover { transform: translateY(82px); }
.compare-stair-card.stair-step-4:hover { transform: translateY(132px); }

/* NÚMERO — display gigante editorial */
.compare-stair-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(4.5rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, #4A8BFF 0%, var(--azul-electrico) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              filter .35s ease;
}
.compare-stair-card.stair-step-4 .compare-stair-num {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TAG categoría — pequeña, sin caja, con punto a la izquierda */
.compare-stair-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
}
.compare-stair-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--azul-electrico);
  box-shadow: 0 0 12px rgba(30, 95, 255, .55);
}
.compare-stair-card.stair-step-4 .compare-stair-tag {
  color: var(--coral-hover);
}
.compare-stair-card.stair-step-4 .compare-stair-tag::before {
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 107, 71, .55);
}

/* TÍTULO */
.compare-stair-h3 {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.1875rem;
  color: var(--azul-marino);
  margin: 0 0 10px;
  line-height: 1.25;
  letter-spacing: -.015em;
}

/* PÁRRAFO */
.compare-stair-p {
  font-size: .9375rem;
  color: var(--gris-texto);
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}

/* Footer cierre */
.compare-stair-footer {
  text-align: center;
  margin-top: clamp(60px, 6vw, 90px);
}
.compare-stair-cost {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-marino);
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 95, 255, .2);
  box-shadow: 0 8px 24px -12px rgba(30, 95, 255, .25);
}

/* Tablet: 2x2 sin escalera */
@media (max-width: 1100px) {
  .compare-stair-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    padding-top: 0;
    gap: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 32px);
  }
  .compare-stair-grid::after { display: none; }
  .compare-stair-card.stair-step-1,
  .compare-stair-card.stair-step-2,
  .compare-stair-card.stair-step-3,
  .compare-stair-card.stair-step-4 { transform: none; }
  .compare-stair-card:hover { transform: translateY(-4px) !important; }
}

/* Mobile: stack vertical con números gigantes a la izquierda */
@media (max-width: 768px) {
  .compare-stair-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(24px, 6vw, 36px) !important;
    padding-top: 0 !important;
  }
  .compare-stair-card { padding: 18px 4px !important; }
  .compare-stair-num { font-size: 4rem; margin-bottom: 8px; }
  .compare-stair-h3 { font-size: 1.125rem; }
  .compare-stair-p { font-size: .9375rem; max-width: none; }
}

/* =========================================================
   ★ TESTIMONIOS — cards con foto + quote + CTA modal video
   ========================================================= */
.testimonios-stage {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, var(--azul-suave) 0%, #ffffff 100%);
  overflow: hidden;
}
.testimonios-stage::before {
  content: '';
  position: absolute;
  inset: -10% -5% auto auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(255, 107, 71, .12), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.testimonios-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonios-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.testimonios-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 14px;
}
.testimonios-title {
  font-family: var(--font-titulo);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--azul-marino);
  text-wrap: balance;
  margin: 0 auto 14px;
  max-width: 720px;
  line-height: 1.1;
}
.testimonios-sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--gris-texto);
  max-width: 520px;
  margin: 0 auto;
}
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.testimonio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--gris-borde);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.5vw, 32px);
  isolation: isolate;
  transition: transform .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              box-shadow .35s var(--expo, cubic-bezier(.16,1,.3,1)),
              border-color .25s ease;
  box-shadow: 0 4px 20px -8px rgba(10, 23, 51, .08);
}
.testimonio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 95, 255, .25);
  box-shadow: 0 22px 48px -16px rgba(10, 23, 51, .25),
              0 0 0 1px rgba(107, 149, 255, .25),
              0 0 50px -12px rgba(30, 95, 255, .25);
}
.testimonio-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 22px -6px rgba(30, 95, 255, .35);
  background: var(--azul-suave);
}
.testimonio-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonio-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.testimonio-name {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--azul-marino);
  margin: 0;
  letter-spacing: -.01em;
}
.testimonio-tag {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  background: var(--azul-suave);
  padding: 5px 12px;
  border-radius: 999px;
}
.testimonio-quote {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gris-texto);
  font-style: italic;
  max-width: 280px;
  min-height: 56px;
  margin: 0 0 24px;
}
.testimonio-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #4A8BFF 100%);
  border: none;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .55),
    0 0 14px rgba(30, 95, 255, .55),
    0 0 32px rgba(30, 95, 255, .35);
  transition: gap .25s ease, transform .25s ease, box-shadow .25s ease;
}
.testimonio-cta:hover {
  gap: 14px;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(107, 149, 255, .85),
    0 0 22px rgba(30, 95, 255, .8),
    0 0 44px rgba(30, 95, 255, .5);
}
.testimonio-cta svg { transition: transform .25s ease; }
.testimonio-cta:hover svg { transform: translateX(2px); }

/* Tablet/mobile: carrusel scroll-snap */
@media (max-width: 1024px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .testimonios-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    gap: 16px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 16px 24px !important;
    margin: 0 -16px !important;
    max-width: none;
    scrollbar-width: none;
  }
  .testimonios-grid::-webkit-scrollbar { display: none; }
  .testimonio-card {
    flex: 0 0 85vw !important;
    max-width: 360px !important;
    scroll-snap-align: start;
  }
}

/* =========================================================
   ★ MODAL VIDEO — popup con backdrop
   ========================================================= */
.testimonio-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 23, 51, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.testimonio-modal[hidden] { display: none !important; }
.testimonio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.testimonio-modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .18) !important;
  border: 1.5px solid rgba(255, 255, 255, .55) !important;
  color: #ffffff !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  z-index: 10001;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .4);
}
.testimonio-modal-close svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: #ffffff;
  stroke-width: 2.5;
}
.testimonio-modal-close:hover {
  background: rgba(255, 255, 255, .3) !important;
  border-color: rgba(255, 255, 255, .85) !important;
  transform: scale(1.06);
}
.testimonio-modal-shell {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: 85dvh;
  aspect-ratio: 16 / 9;                 /* default; JS lo sobrescribe por video */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
  transform: scale(.94);
  transition: transform .3s var(--expo, cubic-bezier(.16,1,.3,1));
}
.testimonio-modal.is-open .testimonio-modal-shell { transform: scale(1); }
.testimonio-modal-frame {
  position: absolute;
  inset: 0;
}
.testimonio-modal-frame iframe,
.testimonio-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .testimonio-modal-close { top: 14px; right: 14px; width: 40px; height: 40px; }
  .testimonio-modal-shell { max-width: 92vw; max-height: 82dvh; }
}

/* =========================================================
   ★ FAQ — Glassmorphism Premium (estilo Apple / Vercel)
   ========================================================= */
.faq-stage {
  position: relative;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-suave) 60%, #ffffff 100%);
  isolation: isolate;
  overflow: hidden;
}
/* Aurora glow detrás — azul + coral suaves */
.faq-stage::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 18% 28%, rgba(30, 95, 255, .18), transparent 60%),
    radial-gradient(ellipse 42% 36% at 82% 75%, rgba(255, 107, 71, .14), transparent 60%),
    radial-gradient(ellipse 35% 30% at 90% 20%, rgba(107, 149, 255, .15), transparent 60%);
  filter: blur(90px) saturate(1.1);
  pointer-events: none;
  animation: auroraDrift 28s ease-in-out infinite alternate;
}
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.faq-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .8125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 700;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 95, 255, .08);
  border: 1px solid rgba(30, 95, 255, .18);
  backdrop-filter: blur(8px);
}
.faq-title {
  font-family: var(--font-titulo);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--azul-marino);
  margin: 0 auto;
  line-height: 1.05;
  text-wrap: balance;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.5vw, 56px);
}
.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-col-title {
  font-family: var(--font-titulo);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--azul-marino);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 14px;
}
.faq-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-electrico), var(--coral));
}

/* Card glass con borde gradient via mask-composite */
.faq-item {
  position: relative;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: none;
  border-radius: 18px;
  padding: 0;
  transition: background .35s ease, box-shadow .4s var(--expo, cubic-bezier(.16,1,.3,1)),
              transform .4s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 4px 20px -10px rgba(10, 23, 51, .12);
}
/* Borde gradient — cerrado: azul sutil */
.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 95, 255, .35), rgba(107, 149, 255, .12) 70%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  transition: background .35s ease, opacity .35s ease;
}
/* Hover (solo en cerrado): lift + brillo azul */
.faq-item:not([open]):hover {
  background: rgba(255, 255, 255, .72);
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px -14px rgba(30, 95, 255, .35),
    0 0 0 1px rgba(107, 149, 255, .25);
}
.faq-item:not([open]):hover::before {
  background: linear-gradient(135deg, var(--azul-electrico) 0%, #6B95FF 60%, rgba(255, 107, 71, .35) 100%);
  opacity: 1;
}
.faq-item:not([open]):hover summary {
  color: var(--azul-electrico);
}
.faq-item:not([open]):hover summary::after {
  background:
    linear-gradient(135deg, rgba(30, 95, 255, .28), rgba(107, 149, 255, .14)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, 14px 14px;
  border-color: rgba(30, 95, 255, .65);
  transform: scale(1.06);
  box-shadow: 0 4px 14px -4px rgba(30, 95, 255, .55);
}

.faq-item[open] {
  background: rgba(255, 255, 255, .8);
  transform: translateY(-1px);
  box-shadow:
    0 12px 36px -10px rgba(30, 95, 255, .28),
    0 0 50px -12px rgba(255, 107, 71, .22);
}
/* Borde abierto: gradient azul → coral activo */
.faq-item[open]::before {
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF 50%, var(--coral) 100%);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul-marino);
  line-height: 1.35;
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--azul-electrico); }
.faq-item[open] summary { color: var(--azul-marino); }

/* Icono + → × con rotación */
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(30, 95, 255, .14), rgba(107, 149, 255, .08)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231E5FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, 14px 14px;
  border: 1px solid rgba(30, 95, 255, .25);
  transition: transform .4s var(--expo, cubic-bezier(.16,1,.3,1)),
              background .35s ease,
              border-color .25s ease;
}
.faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: rgba(255, 107, 71, .45);
  background:
    linear-gradient(135deg, rgba(255, 107, 71, .2), rgba(255, 142, 114, .1)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FF6B47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='12' y1='5' x2='12' y2='19'/><line x1='5' y1='12' x2='19' y2='12'/></svg>");
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: cover, 14px 14px;
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--gris-texto);
  line-height: 1.65;
  font-size: .9375rem;
  font-weight: 400;
  position: relative;
}
.faq-body strong {
  color: var(--azul-marino);
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(30, 95, 255, .12) 65%);
  padding: 0 2px;
}

/* Animación height suave para el contenido (Chrome/Edge soporta interpolate-size) */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-item {
    transition: background .35s ease,
                box-shadow .4s var(--expo, cubic-bezier(.16,1,.3,1)),
                transform .4s var(--expo, cubic-bezier(.16,1,.3,1));
  }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr !important; }
  .faq-stage { padding: clamp(48px, 10vw, 64px) 16px !important; }
  .faq-item summary { padding: 18px 20px; font-size: .9375rem; }
  .faq-item summary::after { width: 28px; height: 28px; }
  .faq-body { padding: 0 20px 18px; font-size: .875rem; }
}

/* =========================================================
   ★ PYME FORM — Multi-step landing /credito-pyme/
   ========================================================= */

/* En /credito-pyme/ ocultamos header y footer para landing puro (PC + móvil) */
body.page-id-3055 #masthead,
body.page-id-3055 .site-header,
body.page-id-3055 .ast-main-header-wrap,
body.page-id-3055 .main-header-bar-wrap,
body.page-id-3055 .ast-primary-header-bar,
body.page-id-3055 #ast-mobile-header,
body.page-id-3055 .ast-mobile-header-wrap,
body.page-id-3055 .ast-mobile-menu-buttons,
body.page-id-3055 .ast-builder-menu,
body.page-id-3055 .main-header-menu,
body.page-id-3055 .menu-toggle,
body.page-id-3055 .ast-mobile-popup-drawer,
body.page-id-3055 #colophon,
body.page-id-3055 .site-footer,
body.page-id-3055 .ce-footer,
body.page-id-3055 .footer-widgets-area,
body.page-id-3055 .ast-builder-footer-grid-columns,
body.page-id-3055 .crediexpres-mobile-cta,
body.page-id-3055 .crediexpres-sticky-bar,
body.page-id-3055 .ast-scroll-to-top,
body.page-id-3055 .entry-header {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}
body.page-id-3055 #page,
body.page-id-3055 #content,
body.page-id-3055 .site-content,
body.page-id-3055 .ast-container,
body.page-id-3055 #primary,
body.page-id-3055 .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
body.page-id-3055 {
  background: #000;
  margin: 0 !important;
  padding: 0 !important;
}
html.html-page-id-3055 { background: #000; }

.pyme-form-stage {
  position: relative;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse at 20% 10%, #0E1F4A 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, #1A0E33 0%, transparent 55%),
    linear-gradient(180deg, #050A1F 0%, #03081A 60%, #050A1F 100%);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(80px, 10vh, 120px) 0 clamp(60px, 8vh, 100px);
}

/* Capa de estrellas (3 layers, tamaños distintos, parallax sutil) */
.pyme-form-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 12%, rgba(255,255,255,.85), transparent 50%),
    radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1.2px 1.2px at 35% 48%, rgba(180,206,255,.85), transparent 50%),
    radial-gradient(1px 1px at 62% 65%, rgba(255,255,255,.75), transparent 50%),
    radial-gradient(1.4px 1.4px at 88% 78%, rgba(180,206,255,.9), transparent 50%),
    radial-gradient(1px 1px at 12% 82%, rgba(255,255,255,.65), transparent 50%),
    radial-gradient(.8px .8px at 50% 18%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1.2px 1.2px at 25% 70%, rgba(255,255,255,.8), transparent 50%),
    radial-gradient(1px 1px at 70% 38%, rgba(180,206,255,.7), transparent 50%),
    radial-gradient(.8px .8px at 92% 50%, rgba(255,255,255,.55), transparent 50%),
    radial-gradient(1.6px 1.6px at 8% 35%, rgba(255,255,255,.95), transparent 50%),
    radial-gradient(1px 1px at 55% 88%, rgba(180,206,255,.7), transparent 50%);
  background-size: 1100px 900px;
  background-repeat: repeat;
  animation: pymeStarsDrift 120s linear infinite;
  opacity: .9;
}
.pyme-form-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 14% 28%, rgba(255,255,255,.9), transparent 50%),
    radial-gradient(.8px .8px at 42% 58%, rgba(180,206,255,.7), transparent 50%),
    radial-gradient(1.2px 1.2px at 68% 12%, rgba(255,255,255,.85), transparent 50%),
    radial-gradient(.9px .9px at 84% 44%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1px 1px at 22% 92%, rgba(180,206,255,.75), transparent 50%),
    radial-gradient(.7px .7px at 58% 26%, rgba(255,255,255,.6), transparent 50%);
  background-size: 700px 600px;
  background-repeat: repeat;
  animation: pymeStarsDrift 80s linear infinite reverse;
  opacity: .7;
}

@keyframes pymeStarsDrift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -900px, 0); }
}

/* Light orbs flotando — DOM elements para animaciones independientes */
.pyme-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  mix-blend-mode: screen;
  will-change: transform;
}
.pyme-bg-orb--1 {
  width: 520px; height: 520px;
  top: -10%; left: -8%;
  background: radial-gradient(circle, rgba(30, 95, 255, .55) 0%, rgba(30, 95, 255, .15) 45%, transparent 70%);
  animation: pymeOrb1 26s ease-in-out infinite;
}
.pyme-bg-orb--2 {
  width: 600px; height: 600px;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, rgba(255, 107, 71, .42) 0%, rgba(255, 107, 71, .12) 45%, transparent 70%);
  animation: pymeOrb2 32s ease-in-out infinite;
}
.pyme-bg-orb--3 {
  width: 440px; height: 440px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(110, 231, 183, .32) 0%, rgba(110, 231, 183, .08) 45%, transparent 70%);
  animation: pymeOrb3 38s ease-in-out infinite;
}
.pyme-bg-orb--4 {
  width: 360px; height: 360px;
  top: 22%; right: 18%;
  background: radial-gradient(circle, rgba(180, 130, 255, .32) 0%, rgba(180, 130, 255, .08) 45%, transparent 70%);
  animation: pymeOrb4 44s ease-in-out infinite;
}

@keyframes pymeOrb1 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(8vw, 12vh, 0) scale(1.12); }
}
@keyframes pymeOrb2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-10vw, -10vh, 0) scale(1.08); }
}
@keyframes pymeOrb3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-12vw, 8vh, 0) scale(.95); }
}
@keyframes pymeOrb4 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(6vw, -10vh, 0) scale(1.15); }
}

/* Shooting star ocasional */
.pyme-shooting-star {
  position: absolute;
  top: 18%;
  left: -10%;
  width: 140px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(180,206,255,.95) 80%, #ffffff 100%);
  border-radius: 999px;
  filter: drop-shadow(0 0 6px rgba(180,206,255,.7));
  transform: rotate(18deg);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  animation: pymeShoot 14s ease-in-out infinite;
}
.pyme-shooting-star--2 {
  top: 62%;
  left: -10%;
  animation-delay: 7s;
  animation-duration: 18s;
}
@keyframes pymeShoot {
  0%, 88% { opacity: 0; transform: translate3d(0, 0, 0) rotate(18deg); }
  90%     { opacity: 1; }
  100%    { opacity: 0; transform: translate3d(140vw, 30vh, 0) rotate(18deg); }
}

@media (prefers-reduced-motion: reduce) {
  .pyme-form-stage::before,
  .pyme-form-stage::after,
  .pyme-bg-orb,
  .pyme-shooting-star { animation: none !important; }
}
.pyme-form-stage > .container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 24px);
  position: relative;
  z-index: 2;
}

/* Header (fuera de los pasos) */
.pyme-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.pyme-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #B4CEFF;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(107, 149, 255, .25);
  backdrop-filter: blur(10px);
}
.pyme-header-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 71, .2), 0 0 12px rgba(255, 107, 71, .55);
  animation: trustPulse 2.4s ease-in-out infinite;
}
.pyme-header-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #ffffff;
  margin: 14px 0 8px;
  text-wrap: balance;
}
.pyme-header-sub {
  font-size: clamp(.9375rem, 1.4vw, 1.0625rem);
  color: rgba(220, 230, 245, .75);
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress bar */
.pyme-progress {
  margin: 0 auto clamp(24px, 3vw, 36px);
  max-width: 640px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pyme-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(107, 149, 255, .15);
}
.pyme-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--azul-electrico), #6B95FF, var(--coral));
  border-radius: 999px;
  transition: width .5s var(--expo, cubic-bezier(.16,1,.3,1));
  box-shadow: 0 0 20px -4px rgba(30, 95, 255, .55);
}
.pyme-progress-label {
  font-family: var(--font-titulo);
  font-size: .8125rem;
  font-weight: 700;
  color: rgba(220, 230, 245, .7);
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Card del paso */
.pyme-form {
  position: relative;
}
.pyme-step,
.pyme-disqualify,
.pyme-success {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(107, 149, 255, .25);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .35);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s var(--expo, cubic-bezier(.16,1,.3,1));
}
.pyme-step.is-active,
.pyme-disqualify.is-active,
.pyme-success.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow + question */
.pyme-step-eyebrow {
  display: inline-block;
  font-family: var(--font-titulo);
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--azul-electrico);
  font-weight: 800;
  margin-bottom: 12px;
}
.pyme-step-eyebrow .pyme-step-num {
  color: #ffffff;
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  padding: 4px 10px;
  border-radius: 999px;
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
}
.pyme-step-question {
  font-family: var(--font-titulo);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #ffffff;
  margin: 0 0 8px;
  text-wrap: balance;
}
.pyme-step-helper {
  font-size: .9375rem;
  color: rgba(220, 230, 245, .68);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* Opciones (radio cards) */
.pyme-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 24px;
}
.pyme-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(107, 149, 255, .22);
  border-radius: 14px;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  font-size: .9375rem;
  line-height: 1.4;
  color: rgba(220, 230, 245, .92);
}
.pyme-option:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(107, 149, 255, .45);
  transform: translateX(3px);
}
.pyme-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pyme-option-dot {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(107, 149, 255, .4);
  background: transparent;
  transition: border-color .2s ease, background .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pyme-option-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--azul-electrico);
  transform: scale(0);
  transition: transform .2s var(--expo, cubic-bezier(.16,1,.3,1));
}
.pyme-option input[type="radio"]:checked ~ .pyme-option-dot {
  border-color: var(--azul-electrico);
}
.pyme-option input[type="radio"]:checked ~ .pyme-option-dot::after {
  transform: scale(1);
}
.pyme-option:has(input:checked) {
  background: rgba(30, 95, 255, .12);
  border-color: var(--azul-electrico);
  box-shadow: 0 0 0 1px var(--azul-electrico) inset, 0 8px 24px -10px rgba(30, 95, 255, .55);
}
.pyme-option-text { flex: 1; }
.pyme-option-text strong { color: #ffffff; font-weight: 700; }

/* Inputs (Step 8 — datos) */
.pyme-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 4px 0 22px;
}
.pyme-field { display: flex; flex-direction: column; gap: 6px; }
.pyme-field--full { grid-column: 1 / -1; }
.pyme-field label {
  font-size: .8125rem;
  font-weight: 700;
  color: rgba(220, 230, 245, .82);
  letter-spacing: .02em;
}
.pyme-field input,
.pyme-field select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(107, 149, 255, .25);
  border-radius: 10px;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  font-family: inherit;
  font-size: .9375rem;
  line-height: 1.4;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pyme-field input::placeholder {
  color: rgba(220, 230, 245, .35);
  -webkit-text-fill-color: rgba(220, 230, 245, .35);
  opacity: 1;
}
/* Sobre-escribe autofill (Chrome ponía texto invisible y bg amarillo) */
.pyme-field input:-webkit-autofill,
.pyme-field input:-webkit-autofill:hover,
.pyme-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(20, 32, 60, .85) inset !important;
  caret-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}
.pyme-field input:focus,
.pyme-field select:focus {
  border-color: var(--azul-electrico);
  background: rgba(30, 95, 255, .08);
  box-shadow: 0 0 0 4px rgba(30, 95, 255, .15);
}
.pyme-field input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}
.pyme-field-error {
  font-size: .75rem;
  color: #fca5a5;
  margin-top: 2px;
  min-height: 14px;
}

/* Disclaimer + privacidad */
.pyme-disclaimer {
  font-size: .75rem;
  color: rgba(220, 230, 245, .55);
  line-height: 1.5;
  margin: 8px 0 0;
}
.pyme-disclaimer a {
  color: #B4CEFF;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pyme-disclaimer a:hover { color: #ffffff; }

/* Botones de navegación */
.pyme-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.pyme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: .9375rem;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.pyme-btn--primary {
  background: linear-gradient(135deg, var(--azul-electrico), #6B95FF);
  color: #ffffff;
  box-shadow: 0 12px 28px -8px rgba(30, 95, 255, .55);
}
.pyme-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -8px rgba(30, 95, 255, .8);
}
.pyme-btn--primary:disabled {
  opacity: .35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.pyme-btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: rgba(220, 230, 245, .82);
  border: 1px solid rgba(107, 149, 255, .25);
}
.pyme-btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #ffffff;
}
.pyme-btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .55);
}
.pyme-btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -8px rgba(37, 211, 102, .8);
}

/* Pantallas de descalificación */
.pyme-disqualify {
  text-align: center;
}
.pyme-disqualify-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 71, .2), rgba(255, 142, 114, .08));
  border: 1px solid rgba(255, 142, 114, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}
.pyme-disqualify-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #ffffff;
  margin: 0 0 12px;
  text-wrap: balance;
}
.pyme-disqualify-body {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(220, 230, 245, .78);
  max-width: 520px;
  margin: 0 auto 24px;
}

/* Pantalla de éxito */
.pyme-success {
  text-align: center;
}
.pyme-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 14px 32px -8px rgba(16, 185, 129, .55);
}
.pyme-success-title {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #ffffff;
  margin: 0 0 12px;
}
.pyme-success-body {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(220, 230, 245, .82);
  max-width: 540px;
  margin: 0 auto 28px;
}
.pyme-success-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 700px) {
  .pyme-form-stage { padding: clamp(48px, 8vh, 80px) 0 clamp(40px, 6vh, 60px); }
  .pyme-fields { grid-template-columns: 1fr; gap: 12px; }
  .pyme-step,
  .pyme-disqualify,
  .pyme-success { padding: 24px 20px; border-radius: 18px; }
  .pyme-actions { flex-direction: column-reverse; align-items: stretch; gap: 10px; }
  .pyme-btn { justify-content: center; padding: 14px 20px; }
  .pyme-progress { gap: 10px; }
  .pyme-progress-label { font-size: .75rem; }
  .pyme-options { gap: 8px; }
  .pyme-option { padding: 14px 14px; gap: 12px; font-size: .9rem; }
  .pyme-step-question { font-size: 1.25rem; }
  .pyme-header { margin-bottom: 22px; }
  .pyme-header-title { font-size: 1.5rem; }
}
@media (max-width: 420px) {
  .pyme-step,
  .pyme-disqualify,
  .pyme-success { padding: 22px 18px; border-radius: 16px; }
  .pyme-option { padding: 13px 12px; font-size: .875rem; }
  .pyme-option-dot { width: 20px; height: 20px; }
  .pyme-option-dot::after { width: 8px; height: 8px; }
  .pyme-field input,
  .pyme-field select { height: 46px; padding: 0 14px; font-size: .9rem; }
}
