/* ============================================
   FADE IMPULSA 360® · LANDING v10 · 2026-06-12
   v9 + miniatura VSL texto vivo + IG cards reales + logos clientes
   ============================================ */

:root {
  --ink: #050608;
  --ink-2: #0B0C10;
  --ink-3: #111319;
  --white: #FFFFFF;
  --bone: #F2EFE9;
  --gris: #9BA0A8;
  --gris-2: #6A6F77;
  --calipso: #21D9B0;
  --calipso-dim: rgba(33, 217, 176, 0.14);
  --neon: #5BFFD1;
  --purple: #8B5CF6;
  --amarillo: #EEFF00;
  --line: rgba(255, 255, 255, 0.09);

  --sans: 'Switzer', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Fraunces', Georgia, serif;

  --container: 1200px;
  --gutter: clamp(22px, 4.5vw, 64px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; background: var(--ink); color-scheme: dark; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--bone);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

em { font-family: var(--serif); font-style: italic; font-weight: 400; }
sup { font-size: 0.45em; vertical-align: super; }

img { max-width: 100%; display: block; }

.sec-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- etiquetas y títulos ---------- */
.sec-etiqueta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--calipso); margin-bottom: 28px;
}
.sec-title {
  font-size: clamp(34px, 5vw, 64px); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05; color: var(--white);
}
.sec-title em { color: var(--calipso); }

/* V11.10 · frase única "Esto es el Sistema 360® de Fade Impulsa" — 360 con degradado animado */
.metodo-uno {
  font-size: clamp(36px, 5.8vw, 78px);
  font-weight: 700; letter-spacing: -0.028em; line-height: 1.06;
  color: var(--white); max-width: 18ch; margin: 0;
}
.metodo-de { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gris); padding: 0 0.05em; }
.metodo-punto { color: var(--neon); }
.metodo-360 {
  background: linear-gradient(100deg, var(--calipso) 0%, var(--neon) 35%, #7FE8D2 55%, var(--amarillo) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 0 18px rgba(91, 255, 209, 0.18));
}
.metodo-360-anim {
  animation: metodo-360-shift 9s linear infinite;
}
@keyframes metodo-360-shift {
  0%   { background-position:   0% 50%; }
  100% { background-position: 200% 50%; }
}
.metodo-360 sup {
  background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--neon);
}

/* ---------- botones ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--calipso); color: #04221B;
  font-weight: 700; font-size: 16px; letter-spacing: 0.01em;
  padding: 18px 34px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 36px rgba(33, 217, 176, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 10px 48px rgba(33, 217, 176, 0.4); }
.btn-big { font-size: 18px; padding: 21px 42px; }

/* ============ NAV ============ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: linear-gradient(rgba(5, 6, 8, 0.85), transparent);
}
.nav-isotipo { width: 42px; height: 42px; animation: girar 7s linear infinite; }
@keyframes girar { from { transform: rotateY(0); } to { transform: rotateY(360deg); } }
.nav-cta {
  font-size: 14px; font-weight: 700; color: #1A1503; text-decoration: none;
  background: var(--amarillo); border: 1px solid var(--amarillo);
  border-radius: 999px; padding: 10px 22px;
  box-shadow: 0 4px 20px rgba(244, 208, 63, 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(244, 208, 63, 0.4); }

/* ============ S1 · HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 42%, rgba(5, 6, 8, 0.55), transparent 70%),
    linear-gradient(transparent 78%, var(--ink));
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1100px; margin: 0 auto; padding: 130px var(--gutter) 80px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-etiqueta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gris); margin-bottom: 30px;
}
.hero-headline {
  font-size: clamp(38px, 6.2vw, 84px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.02; color: var(--white);
}
.hero-line-fija { display: block; }
.hero-rotador { display: block; position: relative; height: 1.15em; }
.hero-rotador-item {
  position: absolute; inset: 0; opacity: 0; transform: translateY(0.4em);
  font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--calipso);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  white-space: nowrap;
}
.hero-rotador-item.is-on { opacity: 1; transform: none; }
.hero-sub {
  max-width: 56ch; margin-top: 34px; font-size: clamp(16px, 1.6vw, 19px);
  color: var(--gris);
}
.hero-sub em { color: var(--amarillo); font-weight: 500; }

/* falso play VSL */
.vsl { width: min(680px, 100%); margin-top: 48px; }
.vsl-poster {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  cursor: pointer; background: var(--ink-2); padding: 0;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.vsl-poster:hover { transform: scale(1.015); border-color: rgba(33, 217, 176, 0.45); }
.vsl-img { width: 100%; height: 100%; object-fit: cover; }
.vsl-hoverplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 6, 8, 0.0); color: transparent;
  transition: background 0.35s, color 0.35s;
}
.vsl-poster:hover .vsl-hoverplay { background: rgba(5, 6, 8, 0.55); color: #fff; backdrop-filter: blur(4px); }
.vsl-chips {
  position: absolute; right: clamp(14px, 3.4%, 26px); top: 44%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 9px;
  text-align: left;
}
.vsl-chip {
  display: inline-block; padding: 5px 14px 6px; border-radius: 8px;
  font-size: clamp(15px, 2.5vw, 30px); font-weight: 800; line-height: 1.18;
  text-transform: uppercase; letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.vsl-chip-blanca { background: #F4F2ED; color: #0B0C10; }
.vsl-chip-calipso { background: var(--calipso); color: #04221B; }
.vsl-play-row { display: flex; align-items: center; gap: 12px; }
.vsl-play {
  width: clamp(40px, 5.4vw, 60px); height: clamp(40px, 5.4vw, 60px);
  border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--calipso); color: #04221B;
  border: 3px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 0 rgba(33, 217, 176, 0.45);
  animation: pulso 2.4s infinite;
}
@keyframes pulso {
  0% { box-shadow: 0 0 0 0 rgba(33, 217, 176, 0.45); }
  70% { box-shadow: 0 0 0 22px rgba(33, 217, 176, 0); }
  100% { box-shadow: 0 0 0 0 rgba(33, 217, 176, 0); }
}
.vsl-strips { position: absolute; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; }
.vsl-strip-calipso {
  background: var(--calipso); color: #04221B;
  font-size: clamp(10.5px, 1.3vw, 14.5px); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 12px; text-align: center; white-space: nowrap;
}
.vsl-strip-dark {
  background: rgba(5, 6, 8, 0.92); color: var(--bone);
  font-size: clamp(10px, 1.15vw, 13px); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 7px 12px; text-align: center; white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.vsl-stage { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #000; }
.vsl-stage video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #000; }
.vsl-clicklayer { position: absolute; inset: 0; background: transparent; border: 0; cursor: pointer; }
.vsl-loader {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(5, 6, 8, 0.65); backdrop-filter: blur(3px);
  color: var(--bone); font-size: 13.5px; font-weight: 600; pointer-events: none;
}
.vsl-spinner {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18); border-top-color: var(--calipso);
  animation: girar-spin 0.9s linear infinite;
}
@keyframes girar-spin { to { transform: rotate(360deg); } }

/* barra de controles bajo el video */
.vsl-controls {
  display: flex; align-items: center; gap: 14px;
  margin-top: 12px; padding: 10px 14px;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 999px;
}
.vsl-pp {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--calipso); color: #04221B; border: 0;
  transition: transform 0.25s var(--ease);
}
.vsl-pp:hover { transform: scale(1.08); }
.vsl-pp .vsl-pp-play { display: none; }
.vsl-pp[data-playing="0"] .vsl-pp-pause { display: none; }
.vsl-pp[data-playing="0"] .vsl-pp-play { display: block; }
.vsl-time { font-size: 13px; font-weight: 600; color: var(--gris); white-space: nowrap; font-variant-numeric: tabular-nums; }
.vsl-progress {
  flex: 1; height: 6px; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.12); overflow: hidden;
}
.vsl-progress-bar { height: 100%; width: 0%; border-radius: 999px; background: var(--calipso); transition: width 0.2s linear; }
.vsl-mute {
  display: flex; align-items: center; gap: 7px; flex-shrink: 0; cursor: pointer;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--bone); font-size: 12.5px; font-weight: 600; padding: 7px 14px;
  transition: border-color 0.3s;
}
.vsl-mute:hover { border-color: var(--calipso); }
.vsl-mute .vsl-mute-off { display: none; }
.vsl-mute[data-audio-on="0"] .vsl-mute-on { display: none; }
.vsl-mute[data-audio-on="0"] .vsl-mute-off { display: block; }
.vsl-mute[data-audio-on="0"] { color: var(--gris-2); }

/* autoridad */
.hero-autoridad {
  list-style: none; display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap;
  justify-content: center; margin-top: 52px;
}
.hero-autoridad li { display: flex; flex-direction: column; gap: 4px; max-width: 200px; }
.hero-autoridad strong { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; color: var(--white); letter-spacing: -0.01em; }
.hero-autoridad .mas { color: var(--amarillo); font-size: 1.4em; font-weight: 800; margin-right: 2px; line-height: 1; }
.hero-autoridad span { font-size: 13.5px; color: var(--gris); line-height: 1.4; }

.hero-cta-wrap { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-subcta { font-size: 14px; color: var(--gris); }

/* ============ S3 · PARA TI ============ */
.parati { padding: clamp(90px, 12vw, 160px) 0; }
.parati-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.parati-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 20px;
  padding: 38px 30px; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.parati-card:hover { border-color: rgba(33, 217, 176, 0.35); transform: translateY(-6px); }
.parati-card h3 {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.015em; line-height: 1.25; margin-bottom: 14px;
}
.parati-check {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; margin-top: -2px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(238, 255, 0, 0.12); border: 1.5px solid var(--amarillo); color: var(--amarillo);
}
.parati-check svg { width: 18px; height: 18px; }
.parati-card p { font-size: 15px; color: var(--gris); }
.parati-sub { max-width: 62ch; margin: 56px auto 0; text-align: center; font-size: 17px; color: var(--gris); }
.parati-sub strong { color: var(--bone); }
.parati-cta { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.parati-cta p { font-size: clamp(19px, 2.2vw, 24px); color: var(--bone); }

/* ============ S4 · PILARES ============ */
.pilares { padding: clamp(90px, 12vw, 160px) 0; background: var(--ink-2); border-block: 1px solid var(--line); }
.pilares-ancla { max-width: 1020px; }



.pilares-grid { margin-top: 70px; display: flex; flex-direction: column; gap: 16px; }
.pilar { border: 1px solid var(--line); border-radius: 18px; background: var(--ink); overflow: hidden; transition: border-color 0.4s; }
.pilar[open] { border-color: rgba(33, 217, 176, 0.3); }
.pilar summary {
  display: flex; align-items: center; gap: 26px; padding: 30px 34px;
  cursor: pointer; list-style: none;
}
.pilar summary::-webkit-details-marker { display: none; }
.pilar-num { font-weight: 700; color: var(--calipso); letter-spacing: -0.02em; margin-right: 6px; }
.pilar-head { flex: 1; }
.pilar-head h3 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: var(--white); letter-spacing: -0.015em;
  display: flex; align-items: baseline; gap: 10px;
}
.pilar-head h3 em { color: var(--amarillo); font-weight: 500; }
.pilar-head p { font-size: 15px; color: var(--gris); margin-top: 5px; }
.pilar-chev {
  width: 12px; height: 12px; border-right: 2px solid var(--gris); border-bottom: 2px solid var(--gris);
  transform: rotate(45deg); transition: transform 0.35s var(--ease); flex-shrink: 0;
}
.pilar[open] .pilar-chev { transform: rotate(225deg); }
.pilar ul { list-style: none; padding: 0 34px 32px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 30px; }
.pilar ul li { font-size: 15px; color: var(--gris); padding-left: 22px; position: relative; }
.pilar ul li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--calipso); font-size: 13px; }

/* ============ POSTS IG ============ */
.igposts { padding: clamp(90px, 12vw, 160px) 0 0; overflow: hidden; }
.igposts-sub { color: var(--gris); margin-top: 16px; font-size: 17px; }
.igposts-rail {
  display: flex; gap: 26px; margin-top: 56px;
  padding: 10px var(--gutter) clamp(90px, 12vw, 150px);
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.igposts-rail::-webkit-scrollbar { display: none; }
.igcard:first-child { margin-left: auto; }
.igcard:last-child { margin-right: auto; }
.igcard {
  flex: 0 0 300px; scroll-snap-align: start;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 16px;
  text-decoration: none; color: var(--bone); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.igcard:hover { transform: translateY(-8px); border-color: rgba(33, 217, 176, 0.4); }
.igcard-head { display: flex; align-items: center; gap: 9px; padding: 12px 14px; }
.igcard-head img { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); }
.igcard-user { font-size: 13.5px; font-weight: 700; color: var(--white); }
.igcard-verif { width: 14px; height: 14px; margin-left: -3px; }
.igcard-media { display: block; aspect-ratio: 4 / 5; position: relative; overflow: hidden; background: var(--ink-3); }
.igcard-media img { width: 100%; height: 100%; object-fit: cover; }
.igcard-tipo {
  position: absolute; top: 12px; right: 12px; width: 20px; height: 20px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.6));
}
.igcard-playreel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.35);
}
.igcard-playreel svg { width: 26px; height: 26px; }
.igcard-actions { display: flex; align-items: center; gap: 14px; padding: 12px 14px 6px; }
.igcard-actions svg { width: 22px; height: 22px; color: var(--bone); }
.igcard-save { margin-left: auto; }
.igcard-likes { display: block; padding: 0 14px; font-size: 13px; font-weight: 700; color: var(--white); }
.igcard-caption {
  display: block; padding: 5px 14px 14px;
  font-size: 12.5px; line-height: 1.45; color: var(--bone);
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.igcard-caption strong { font-weight: 700; color: var(--white); margin-right: 4px; }
.igcard-mas { color: var(--gris-2); }

/* ============ S6 · QUIÉN ============ */
.quien { padding: clamp(90px, 12vw, 160px) 0; background: var(--ink-2); border-block: 1px solid var(--line); }
.quien-grid { display: grid; grid-template-columns: 380px 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.quien-foto { position: relative; }
/* foto Fade INMERSA: sin marco, sin caja, integrada al fondo dark */
.quien-foto-inmersa { aspect-ratio: 3 / 4; max-width: 360px; overflow: visible; padding: 0; background: transparent; }
.quien-foto-inmersa img {
  position: relative; z-index: 3;
  width: 100%; height: auto;
  border-radius: 0; border: 0; background: transparent;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 22px rgba(91, 255, 209, 0.18));
}
/* mancha de color radial detras */
.quien-foto-glow {
  position: absolute; inset: -15% -25% -8% -25%; z-index: 0;
  background:
    radial-gradient(ellipse 55% 48% at 50% 56%, rgba(91, 255, 209, 0.32), transparent 70%),
    radial-gradient(ellipse 40% 38% at 70% 30%, rgba(238, 255, 0, 0.16), transparent 70%),
    radial-gradient(ellipse 38% 36% at 30% 35%, rgba(139, 92, 246, 0.20), transparent 70%);
  filter: blur(28px);
}
/* anillo flúor sutil */
.quien-foto-ring {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%); z-index: 1;
  width: 105%; height: 88%;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(91,255,209,0), rgba(91,255,209,0.45), rgba(91,255,209,0), rgba(238,255,0,0.30), rgba(91,255,209,0));
  -webkit-mask: radial-gradient(closest-side, transparent 60%, #000 62%, #000 70%, transparent 72%);
  mask: radial-gradient(closest-side, transparent 60%, #000 62%, #000 70%, transparent 72%);
  filter: blur(0.5px);
  animation: girar-ring 18s linear infinite;
}
@keyframes girar-ring { to { transform: translate(-50%, -50%) rotate(360deg); } }
/* mini-grid de puntitos detras */
.quien-foto-grid {
  position: absolute; right: -10%; top: 18%; z-index: 1;
  width: 140px; height: 140px;
  background-image: radial-gradient(circle, rgba(91, 255, 209, 0.30) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, #000, transparent 75%);
  opacity: 0.85;
}
/* sello 360 flotante */
.quien-foto-sello {
  position: absolute; right: -6%; bottom: 20%; z-index: 4;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 26px; font-weight: 800;
  color: transparent;
  background:
    radial-gradient(circle at 50% 50%, #0B0C10 0 56%, transparent 57%),
    conic-gradient(from 0deg, var(--calipso), var(--neon), var(--amarillo), var(--calipso));
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(91, 255, 209, 0.45), 0 0 0 10px rgba(91, 255, 209, 0.10);
  transform: rotate(-8deg);
  animation: girar-sello 12s linear infinite;
}
.quien-foto-sello::after {
  content: '360®'; position: absolute;
  background: linear-gradient(120deg, var(--calipso), var(--neon) 50%, var(--amarillo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-family: var(--sans); font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(91, 255, 209, 0.3);
  animation: girar-sello-text 12s linear infinite reverse;
}
.quien-foto-sello sup { display: none; }
@keyframes girar-sello { to { transform: rotate(352deg); } }
@keyframes girar-sello-text { to { transform: rotate(360deg); } }
.quien-foto-badge {
  position: relative; z-index: 5; display: inline-block;
  margin-top: 24px; white-space: nowrap;
  background: var(--ink); border: 1px solid rgba(91, 255, 209, 0.45);
  color: var(--bone); font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  padding: 9px 20px; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(91, 255, 209, 0.08);
}
.quien-foto-inmersa { display: flex; flex-direction: column; align-items: center; }
.quien-bio h2 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 700; color: var(--white); letter-spacing: -0.025em; }
.quien-bio h2::after { content: '.'; color: var(--calipso); }
.quien-rol { font-size: 15px; font-weight: 600; color: var(--calipso); margin: 10px 0 22px; }
.quien-bio > p { color: var(--gris); margin-bottom: 14px; max-width: 56ch; }
.quien-recursos { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.recurso-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--bone); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 11px 22px 11px 14px;
  background: var(--ink);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.recurso-pill:hover { border-color: var(--calipso); background: var(--calipso-dim); transform: translateY(-2px); }
.recurso-logo { width: 22px; height: 22px; flex-shrink: 0; }

.equipo { margin-top: clamp(80px, 10vw, 130px); }
.equipo-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.equipo-title em { color: var(--purple); }
.equipo-sub { color: var(--gris); max-width: 70ch; margin-top: 18px; }
.equipo-roles {
  list-style: none; margin-top: 46px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.equipo-roles li {
  background: var(--ink); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px;
  display: grid; grid-template-columns: 44px 1fr; gap: 4px 16px; align-items: center;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.equipo-roles li:hover { border-color: rgba(139, 92, 246, 0.45); transform: translateY(-4px); }
.rol-ico {
  grid-row: 1 / 3;
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(139, 92, 246, 0.12); border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--purple);
}
.rol-ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* iconos alternando la paleta: morado / calipso / amarillo */
.equipo-roles li:nth-child(3n+2) .rol-ico { background: rgba(33, 217, 176, 0.10); border-color: rgba(33, 217, 176, 0.32); color: var(--calipso); }
.equipo-roles li:nth-child(3n) .rol-ico { background: rgba(244, 208, 63, 0.10); border-color: rgba(244, 208, 63, 0.32); color: var(--amarillo); }
.equipo-roles li:nth-child(3n+2):hover { border-color: rgba(33, 217, 176, 0.4); }
.equipo-roles li:nth-child(3n):hover { border-color: rgba(244, 208, 63, 0.4); }
.equipo-roles strong { font-size: 16.5px; color: var(--white); letter-spacing: -0.01em; }
.equipo-roles span { font-size: 14px; color: var(--gris); }
.equipo-cierre { margin-top: 38px; font-size: clamp(19px, 2.4vw, 26px); color: var(--bone); }
.equipo-cierre em { color: var(--calipso); }

.clientes { margin-top: clamp(80px, 10vw, 130px); }
.clientes-head { font-size: clamp(20px, 2.6vw, 28px); color: var(--bone); font-weight: 600; }
.clientes-head em { color: var(--calipso); }
.clientes-stars { margin-top: 14px; font-size: 14.5px; color: var(--gris); }
.clientes-stars .stars { color: var(--amarillo); letter-spacing: 3px; margin-right: 8px; }
/* marquee de logos corriendo */
.marquee { overflow: hidden; margin-top: 32px; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; align-items: center; gap: 14px; width: max-content; animation: desfile 36s linear infinite; }
.marquee-lento .marquee-track { animation-duration: 30s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes desfile { to { transform: translateX(-50%); } }
.m-chip {
  position: relative; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #F4F2ED; border-radius: 12px;
  width: 180px; height: 96px;
  font-size: 15px; font-weight: 700; color: #23272D;
}
.m-chip::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--calipso); z-index: 2; }
.m-chip:nth-child(3n+2)::after { background: var(--purple); }
.m-chip:nth-child(3n)::after { background: var(--amarillo); }
/* default: logo centrado con margen interior (sirve para PNG con transparencia o fondo de color) */
.m-chip img { width: auto; max-width: 92%; max-height: 78%; object-fit: contain; object-position: center; }
/* m-chip-fill: logo ocupa el 100% del chip (cuando logo y chip tienen mismo color de fondo) */
.m-chip-fill img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: cover; }
.m-chip-trans { /* legacy alias = default ahora */ }
.m-chip-sm { width: 150px; height: 76px; }
.clientes-grid {
  list-style: none; margin-top: 36px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.clientes-grid li {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: #F4F2ED; border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; min-height: 86px;
  font-size: 15px; font-weight: 600; color: #3A3F46; letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.clientes-grid li::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--calipso);
}
.clientes-grid li:nth-child(3n+2)::after { background: var(--purple); }
.clientes-grid li:nth-child(3n)::after { background: var(--amarillo); }
.clientes-grid li:hover { transform: translateY(-3px); box-shadow: 0 8px 26px rgba(0,0,0,0.35); }
.clientes-grid img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }
.clientes-grid .logo-texto { font-size: 16.5px; font-weight: 700; color: #23272D; }
.clientes-tray-head { margin-top: 44px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris-2); }
.clientes-tray { margin-top: 12px; font-size: 15px; color: var(--gris); }

/* ============ S7 · DUAL + CTA FINAL ============ */
.dual { padding: clamp(90px, 12vw, 150px) 0; }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dual-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px; padding: clamp(34px, 4vw, 56px);
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.dual-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.4); }
.dual-card-b:hover { border-color: rgba(33, 217, 176, 0.4); }
.dual-num {
  position: absolute; top: -18px; right: 8px;
  font-weight: 900;
  font-size: clamp(110px, 13vw, 170px); font-weight: 800; line-height: 1;
  color: rgba(139, 92, 246, 0.35); letter-spacing: -0.05em;
  pointer-events: none;
}
.dual-card-b .dual-num { color: rgba(33, 217, 176, 0.32); }
.dual-card p { font-size: clamp(16px, 1.8vw, 20px); color: var(--gris); margin-bottom: 12px; position: relative; }
.dual-card h3 { font-size: clamp(24px, 3vw, 38px); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1.12; position: relative; }
.dual-card-b h3 { color: var(--white); }
.dual-cierre { margin-top: 36px; text-align: center; font-size: 17px; color: var(--gris); }

.ctafinal { position: relative; padding: clamp(100px, 13vw, 180px) 0; overflow: hidden; border-top: 1px solid var(--line); }
.ctafinal-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.75; }
.ctafinal .sec-inner { position: relative; z-index: 2; text-align: center; }
.ctafinal h2 { font-size: clamp(48px, 7vw, 96px); font-weight: 700; color: var(--white); letter-spacing: -0.035em; }
.ctafinal-sub { font-size: clamp(19px, 2.4vw, 26px); color: var(--gris); margin-top: 10px; }
.ctafinal-sub em { color: var(--calipso); }
.ctafinal-box {
  max-width: 660px; margin: 56px auto 0;
  background: rgba(11, 12, 16, 0.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(33, 217, 176, 0.28); border-radius: 24px;
  padding: clamp(36px, 5vw, 56px);
}
.ctafinal-box h3 { font-size: clamp(21px, 2.6vw, 28px); font-weight: 700; color: var(--white); letter-spacing: -0.015em; }
.ctafinal-box > p { color: var(--gris); margin-top: 16px; }
.ctafinal-cupos { font-size: 14px !important; font-weight: 600; color: var(--calipso) !important; margin-top: 20px !important; }
.ctafinal-box .btn-primary { margin-top: 26px; }
.ctafinal-frente { margin-top: 22px !important; font-size: 14.5px !important; }

/* ============ FOOTER ============ */
.footer { background: #030405; border-top: 1px solid var(--line); padding: clamp(60px, 8vw, 90px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: clamp(30px, 4vw, 60px); }
.footer-brand img { width: 170px; margin-bottom: 18px; }
.footer-brand p, .footer-rse p:not(.footer-head) { font-size: 14px; color: var(--gris-2); }
.footer-head { font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gris); margin-bottom: 16px; }
.footer-rse .footer-head { color: var(--amarillo); }
.footer-col:nth-of-type(2) .footer-head { color: var(--calipso); }
.footer-col:nth-of-type(3) .footer-head { color: var(--purple); }
.footer-col { display: flex; flex-direction: column; }
.footer-col a { font-size: 14.5px; color: var(--gris-2); text-decoration: none; padding: 4px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--calipso); }
.footer-legal {
  margin-top: clamp(44px, 6vw, 70px); padding: 26px var(--gutter);
  border-top: 1px solid var(--line); text-align: center;
  font-size: 13px; color: var(--gris-2); line-height: 1.5;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .parati-grid { grid-template-columns: 1fr; }
  .equipo-roles { grid-template-columns: 1fr 1fr; }
  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
  .quien-grid { grid-template-columns: 1fr; }
  .quien-foto { max-width: 320px; }
  .dual-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pilar ul { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* HERO compacto: todo visible sin scroll en cel (critico Meta ads) */
  .hero { min-height: 100svh; }
  .hero-inner { padding: 86px var(--gutter) 28px; }
  .hero-etiqueta { font-size: 12px; letter-spacing: 0.16em; margin-bottom: 14px; line-height: 1.4; }
  .hero-headline { font-size: clamp(27px, 7.6vw, 34px); }
  .hero-rotador-item { white-space: normal; }
  .hero-rotador { height: 2.15em; }
  .hero-sub { margin-top: 14px; font-size: 14px; max-width: 34ch; }
  .vsl { margin-top: 20px; }
  .vsl-chips { right: 10px; top: 40%; gap: 6px; }
  .vsl-chip { font-size: 14px; padding: 3px 9px 4px; border-radius: 6px; }
  .vsl-play { width: 34px; height: 34px; border-width: 2px; }
  .vsl-play svg { width: 16px; height: 16px; }
  .vsl-strip-calipso { font-size: 9px; padding: 6px 8px; }
  .vsl-strip-dark { font-size: 8.5px; padding: 5px 8px; }
  .hero-autoridad { margin-top: 20px; gap: 6px; flex-wrap: nowrap; justify-content: space-between; width: 100%; }
  .hero-autoridad li { align-items: center; text-align: center; flex: 1; gap: 2px; }
  .hero-autoridad strong { font-size: 16px; }
  .hero-autoridad span { font-size: 12.5px; line-height: 1.3; }
  .hero-cta-wrap { margin-top: 20px; gap: 8px; }
  .hero-cta-wrap .btn-primary { font-size: 13.5px; padding: 14px 22px; }
  .hero-subcta { font-size: 11.5px; }

  .equipo-roles { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pilar summary { padding: 24px 20px; gap: 16px; }
  .pilar ul { padding: 0 20px 26px; }
  .igcard { flex-basis: 260px; }
  .metodo-uno { font-size: 30px; max-width: 100%; }
  .parati { padding-top: 44px; }
  .pilares, .quien, .igposts, .dual { padding-top: 56px; }
  .pilar-head h3 { font-size: 21px; flex-wrap: wrap; gap: 8px; }
  .m-chip { width: 150px; height: 76px; padding: 12px 14px; }
  .m-chip img { max-height: 70%; max-width: 92%; }
  .m-chip-sm { width: 130px; height: 62px; }
  .m-chip-sm img { max-height: 36px; }
}

/* ============ V11 · ajustes feedback Fade 12-06 tarde ============ */
.dual-card p em.em-fluor { color: var(--amarillo); font-style: italic; }

/* recursos pills deshabilitados (sin URLs reales aún) */
.recurso-pill-disabled { cursor: not-allowed; opacity: 0.65; }
.recurso-pill-disabled:hover { border-color: var(--line) !important; background: var(--ink) !important; transform: none !important; }

/* footer links deshabilitados */
.footer-link-disabled { font-size: 14.5px; color: var(--gris-2); padding: 4px 0; opacity: 0.7; cursor: not-allowed; }

/* footer wordmark recoloreado (PNG flúor turquesa) */
.footer-brand .footer-logo-fluor { width: 220px; height: auto; margin-bottom: 18px; }

/* foto Quién lidera más chica + sin tanto aire arriba (audio-09) */
.quien { padding-top: clamp(60px, 8vw, 100px); }
.quien-foto { max-width: 280px; margin: 0 auto; }
.quien-foto img { aspect-ratio: 3 / 4; object-fit: cover; }

/* tap targets iconos IG ≥44px (bug D3) */
.igcard-actions { padding: 6px 6px 4px; gap: 0; display: flex; align-items: center; }
.igcard-actions svg {
  display: inline-block; box-sizing: content-box;
  width: 22px; height: 22px; padding: 11px;
  cursor: pointer; border-radius: 50%;
  transition: background 0.2s;
}
.igcard-actions svg:hover { background: rgba(255, 255, 255, 0.05); }
.igcard-actions .igcard-save { margin-left: auto; }

/* reducir cápsulas de marquee (audio-13) */
.m-chip { width: 150px; height: 76px; padding: 14px 16px; }
.m-chip img { max-height: 70%; max-width: 92%; }
.m-chip-sm { width: 130px; height: 64px; }
.m-chip-sm img { max-height: 38px; }

/* V11.4 · chips: el bg matchea exactamente el fondo del PNG del logo
   → el logo ocupa 100% del chip, no se ve doble caja */
.m-chip-bg-black { background: #000; }
.m-chip-bg-azul { background: #012F6D; }
.m-chip-bg-azul-2 { background: #012E55; }
.m-chip-bg-morado { background: #632096; }
.m-chip-bg-grisoscuro { background: #232631; }
.m-chip-bg-naranja { background: #BA1705; }
.m-chip-bg-black::after { background: var(--neon); }
.m-chip-bg-azul::after { background: var(--amarillo); }
.m-chip-bg-azul-2::after { background: var(--neon); }
.m-chip-bg-morado::after { background: var(--amarillo); }
.m-chip-bg-grisoscuro::after { background: var(--neon); }
.m-chip-bg-naranja::after { background: var(--amarillo); }

/* V11.8 · Chip "consultora Fade" (post Energy Solar, audio 12) */
.m-chip-fade-cv { background: linear-gradient(135deg, #0B0C10, #1C1F28); }
.m-chip-fade-cv img { width: auto; max-width: 56%; max-height: 70%; object-fit: contain; filter: drop-shadow(0 0 12px rgba(91, 255, 209, 0.35)); }
.m-chip-fade-cv::after { background: var(--neon); }

/* V11.8 · accesibilidad: respetar movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee-track, .quien-foto-ring, .nav-isotipo, .vsl-play, .quien-foto-sello { animation: none !important; }
  .hero-rotador-item.is-on, .ancla-item.is-on { opacity: 1 !important; transform: none !important; }
}

/* V11.8 · focus visible para teclado */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 4px;
}

/* ============ V11.10 · upgrades leves de polish ============ */

/* Cursor flúor sutil en zonas interactivas (solo desktop) */
@media (hover: hover) and (pointer: fine) {
  .igcard, .recurso-pill, .m-chip, .pilar summary {
    transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  }
}

/* Pilares: hover con borde calipso sutil */
.pilar:hover { border-color: rgba(33, 217, 176, 0.22); }
.pilar:hover .pilar-head h3 em { filter: brightness(1.18); }

/* Cards "para ti": elevación con shadow flúor sutil al hover */
.parati-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(91, 255, 209, 0.15);
}

/* Etiquetas de sección con punto pulsante a su izquierda */
.sec-etiqueta { display: inline-flex; align-items: center; gap: 10px; }
.sec-etiqueta::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--calipso);
  box-shadow: 0 0 0 0 rgba(33, 217, 176, 0.6);
  animation: latido 2.6s ease-in-out infinite;
}
@keyframes latido {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33, 217, 176, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(33, 217, 176, 0); }
}

/* Smooth scroll mejor con compensación de nav */
html { scroll-padding-top: 80px; }

/* Selección de texto en flúor */
::selection { background: var(--neon); color: #04221B; }
::-moz-selection { background: var(--neon); color: #04221B; }

/* Scrollbar pulida (desktop) */
@media (hover: hover) {
  html { scrollbar-width: thin; scrollbar-color: var(--calipso) var(--ink-2); }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--ink-2); }
  ::-webkit-scrollbar-thumb { background: var(--calipso); border-radius: 999px; border: 2px solid var(--ink-2); }
}

/* Hero subhead: leve respiración del em */
.hero-sub em { animation: respira 6s ease-in-out infinite; }
@keyframes respira { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }

/* Badge Fade Plaza: glow sutil en hover de la sección quien */
.quien-foto:hover .quien-foto-badge {
  border-color: var(--neon);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 6px rgba(91, 255, 209, 0.16);
}

/* Recursos pill: caracter más premium */
.recurso-pill { background: linear-gradient(135deg, var(--ink), var(--ink-2)); }
.recurso-pill:hover { background: linear-gradient(135deg, var(--ink-2), var(--ink-3)); }

/* Footer: dot RSE en latido */
.footer-rse .footer-head::after {
  content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amarillo); margin-left: 8px;
  box-shadow: 0 0 0 0 rgba(238, 255, 0, 0.6);
  animation: latido-amarillo 2.6s ease-in-out infinite;
}
@keyframes latido-amarillo {
  0%, 100% { box-shadow: 0 0 0 0 rgba(238, 255, 0, 0.6); }
  50%      { box-shadow: 0 0 0 5px rgba(238, 255, 0, 0); }
}

/* ============ V12 · feedback Fade reu 13-06 ============ */

/* B1 · tipografías secundarias un punto más grandes para legibilidad */
.quien-rol { font-size: 17px; line-height: 1.45; }
.quien-bio > p { font-size: 16px; line-height: 1.6; }
.parati-card p { font-size: 16px; line-height: 1.6; }
.equipo-sub { font-size: 16.5px; }
.dual-cierre { font-size: 18px; }
.hero-sub { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.55; }

/* B2 · reducir aire excesivo entre secciones sin apretar */
.quien { padding: clamp(70px, 9vw, 120px) 0; }
.dual { padding: clamp(70px, 9vw, 120px) 0; }
.parati { padding: clamp(60px, 8vw, 110px) 0; }

/* A1 · pintar el em del hero como "highlight" amarillo más fuerte (no solo color) */
.hero-sub em {
  color: var(--amarillo);
  text-shadow: 0 0 22px rgba(238, 255, 0, 0.22);
}

/* C1 · traslape badge Fade Plaza · separación firme contra el bio */
.quien-foto-badge { margin-bottom: 18px; }
.quien-foto-inmersa { margin-bottom: 14px; }
@media (max-width: 980px) {
  .quien-grid { gap: 48px !important; }
  .quien-foto-inmersa { margin-bottom: 24px; }
}

/* D · marquee logos: chips más grandes + logos llenan mejor el chip · V12.2 */
.m-chip { height: 100px !important; min-width: 180px; padding: 8px 12px; }
.m-chip-sm { height: 76px !important; min-width: 138px; padding: 6px 10px; }
.m-chip img { max-height: 100% !important; max-width: 100% !important; height: auto; width: auto; object-fit: contain; }
/* override del max-width: 76% legacy — logos chicos con whitespace alrededor llenan ahora casi todo el chip */
.m-chip img[alt="Italian Solar Energy"],
.m-chip img[alt="Energy Solar N&C"],
.m-chip img[alt="Energy Solar N&amp;C"],
.m-chip img[alt="Hometech"],
.m-chip img[alt="ImaClima"],
.m-chip img[alt="LavaFácil"],
.m-chip img[alt="Cobraya"],
.m-chip img[alt="Imagem"],
.m-chip img[alt="Zig Zag"],
.m-chip-sm img[alt="WorleyParsons"],
.m-chip-sm img[alt="Imperial"],
.m-chip-sm img[alt="Banco BCI"] {
  max-width: 98% !important;
  max-height: 96% !important;
  transform: scale(1.18);
  transform-origin: center;
}
@media (max-width: 640px) {
  .m-chip { height: 82px !important; min-width: 140px; padding: 6px 10px; }
  .m-chip-sm { height: 62px !important; min-width: 112px; padding: 4px 8px; }
}

/* E · CTA auditoría reusable · más presente en la landing */
.cta-auditoria-band {
  margin: clamp(46px, 6vw, 80px) auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}
.cta-auditoria-band .btn-primary {
  font-size: 17px; padding: 18px 38px; gap: 10px;
  background: var(--amarillo); color: #1A1503;
  box-shadow: 0 12px 40px rgba(238, 255, 0, 0.22);
}
.cta-auditoria-band .btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(238, 255, 0, 0.4);
}
.cta-auditoria-band .btn-primary svg { width: 18px; height: 18px; }
.cta-auditoria-band .cta-sub { font-size: 14px; color: var(--gris); }

/* hero · CTA auditoría inline (debajo de autoridad) */
.hero-cta-auditoria {
  margin-top: 38px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-cta-auditoria .btn-primary {
  background: var(--amarillo); color: #1A1503;
  font-size: 17px; padding: 18px 36px; gap: 10px;
  border: 1px solid var(--amarillo);
  box-shadow: 0 12px 40px rgba(238, 255, 0, 0.24);
}
.hero-cta-auditoria .btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(238, 255, 0, 0.42);
}
.hero-cta-auditoria .cta-sub { font-size: 13px; color: var(--gris); }
@media (max-width: 640px) {
  .hero-cta-auditoria { margin-top: 22px; }
  .hero-cta-auditoria .btn-primary { font-size: 15.5px; padding: 15px 26px; width: 100%; max-width: 320px; justify-content: center; }
  .cta-auditoria-band .btn-primary { font-size: 15.5px; padding: 15px 26px; width: 100%; max-width: 320px; justify-content: center; }
}

/* F · LinkedIn pill · mismo estilo que recurso-pill */
.recurso-pill.recurso-linkedin .recurso-logo path { fill: #0A66C2; }

/* G · mobile · evitar overflow horizontal y mejorar tap targets */
main, section { overflow-x: clip; }
.marquee { overflow: hidden; }
@media (max-width: 640px) {
  .sec-etiqueta { font-size: 11.5px; margin-bottom: 18px; letter-spacing: 0.18em; }
  .hero-sub { font-size: 15.5px; max-width: 38ch; }
  .dual-card h3 { font-size: 22px; }
  .parati-card h3 { font-size: 18px; }
  .parati-check { width: 30px; height: 30px; }
  .parati-check svg { width: 16px; height: 16px; }
  .quien-bio h2 { font-size: 34px; }
  .quien-rol { font-size: 15px; }
  .quien-bio > p { font-size: 15px; }
  .recurso-pill { font-size: 13.5px; padding: 11px 14px; }
  .recurso-logo { width: 18px; height: 18px; }
}

/* V12.5 · feedback Fade 13-06 ("muchos vacíos sin contenido entre secciones · mobile") → apretar paddings de secciones repetitivas. ctafinal y footer NO se tocan (aire intencional). */
.parati, .pilares, .quien, .dual, .dolor, .solucion, .hoja { padding-block: clamp(48px, 6vw, 80px); }
.igposts { padding-block: clamp(40px, 5vw, 64px) 0; }
@media (max-width: 640px) {
  .parati, .pilares, .quien, .dual, .dolor, .solucion, .hoja { padding-block: 32px; }
  .igposts { padding-block: 28px 0; }
}

/* ============ V13 COMERCIAL · secciones nuevas (no afecta v10/Sercotec) ============ */

/* === S2 · DOLOR DE MERCADO === */
.dolor { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); border-block: 1px solid var(--line); }
.dolor .sec-title em { color: var(--amarillo); font-style: italic; font-weight: 300; }
.dolor-sub { max-width: 720px; margin: 26px auto 0; text-align: center; font-size: clamp(16px, 1.6vw, 18px); color: var(--gris); line-height: 1.55; }
.dolor-sub strong { color: var(--white); font-weight: 600; }
.dolor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 56px;
}
.dolor-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 26px; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.dolor-card:hover { border-color: rgba(255, 90, 90, 0.4); transform: translateY(-3px); }
.dolor-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 90, 90, 0.12); color: #FF6B6B;
  margin-bottom: 18px;
}
.dolor-ico svg { width: 22px; height: 22px; }
.dolor-card h3 { font-size: clamp(17px, 1.8vw, 20px); font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.01em; }
.dolor-card p { font-size: 15px; line-height: 1.6; color: var(--gris); }
.dolor-puente {
  margin-top: 56px; text-align: center; font-size: clamp(17px, 1.7vw, 20px);
  color: var(--white); line-height: 1.5;
}
.dolor-puente em { color: var(--neon); font-style: italic; font-weight: 500; }
@media (max-width: 980px) { .dolor-grid { grid-template-columns: 1fr; } }

/* === S4 · SISTEMA 360 INTRO + 7 COMPONENTES === */
.solucion { text-align: center; }
.solucion-title { font-size: clamp(48px, 7vw, 88px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 16px; }
.solucion-sub-1 { font-size: clamp(20px, 2.4vw, 28px); color: var(--white); font-weight: 400; line-height: 1.3; margin: 22px auto 0; max-width: 760px; }
.solucion-sub-1 em { color: var(--calipso); font-style: italic; font-weight: 500; }
.solucion-sub-2 { font-size: clamp(15px, 1.5vw, 17px); color: var(--gris); line-height: 1.65; margin: 20px auto 0; max-width: 760px; }
.comp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 64px; text-align: left;
}
.comp-card {
  /* layout horizontal: icon a la izquierda · título + frase a la derecha (feedback Fade) */
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px; row-gap: 6px;
  align-items: start;
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 18px;
  padding: 22px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.comp-card:hover { border-color: rgba(33, 217, 176, 0.35); transform: translateY(-3px); }
.comp-ico {
  grid-row: 1 / span 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(33, 217, 176, 0.10); color: var(--calipso);
  margin-bottom: 0;
}
.comp-ico svg { width: 22px; height: 22px; }
.comp-card h3 { grid-column: 2; grid-row: 1; font-size: 16.5px; font-weight: 700; color: var(--white); line-height: 1.25; letter-spacing: -0.01em; margin: 4px 0 0; }
.comp-card p { grid-column: 2; grid-row: 2; font-size: 14px; line-height: 1.55; color: var(--gris); margin: 0; }
@media (max-width: 980px) { .comp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .comp-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; } }

/* === S5 · HOJA DE RUTA 4 MESES === */
.hoja { background: var(--ink-2); border-block: 1px solid var(--line); }
.hoja .sec-title em { color: var(--amarillo); font-style: italic; }
.hoja-sub { max-width: 760px; margin: 22px auto 0; text-align: center; font-size: 16px; color: var(--gris); line-height: 1.6; }
.hoja-timeline {
  list-style: none; padding: 0; margin: 64px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  position: relative;
}
.hoja-timeline::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 40px;
  height: 2px; background: linear-gradient(90deg, var(--calipso), var(--neon), var(--amarillo));
  opacity: 0.35; z-index: 0;
}
.hoja-fase {
  position: relative; background: var(--ink); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 22px 24px; z-index: 1;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.hoja-fase:hover { border-color: rgba(33, 217, 176, 0.35); transform: translateY(-3px); }
.hoja-mes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink-2); border: 1px solid var(--line);
  color: var(--calipso); font-weight: 800; font-size: 20px;
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.hoja-body h3 { font-size: 17.5px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 12px; letter-spacing: -0.01em; }
.hoja-body p { font-size: 14.5px; line-height: 1.6; color: var(--gris); margin-bottom: 12px; }
.hoja-entregable {
  margin-top: 14px !important; padding: 12px 14px; border-radius: 10px;
  background: rgba(33, 217, 176, 0.08); border: 1px solid rgba(33, 217, 176, 0.18);
  font-size: 13.5px !important; color: var(--white) !important;
}
.hoja-entregable strong { color: var(--calipso); }
.hoja-puente {
  margin-top: 56px; text-align: center; font-size: clamp(17px, 1.7vw, 21px);
  color: var(--white); line-height: 1.5; max-width: 720px; margin-left: auto; margin-right: auto;
}
.hoja-puente em { color: var(--amarillo); font-style: italic; }
.hoja-puente strong { color: var(--white); font-weight: 600; }
@media (max-width: 980px) {
  .hoja-timeline { grid-template-columns: 1fr; gap: 16px; }
  .hoja-timeline::before {
    left: 28px; right: auto; top: 50px; bottom: 50px; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--calipso), var(--neon), var(--amarillo));
  }
  .hoja-fase { padding-left: 80px; }
  .hoja-mes { position: absolute; left: 18px; top: 24px; }
}

/* === S7.2 · CTA FINAL caja destacada === */
.ctafinal-inner { position: relative; z-index: 2; max-width: 880px; }
.ctafinal-card {
  background: linear-gradient(160deg, rgba(33, 217, 176, 0.08), rgba(91, 255, 209, 0.04));
  border: 1px solid rgba(33, 217, 176, 0.28); border-radius: 26px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  text-align: center; backdrop-filter: blur(8px);
  box-shadow: 0 30px 80px rgba(33, 217, 176, 0.10);
}
.ctafinal-eyebrow {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--calipso); font-weight: 600; margin-bottom: 18px;
}
.ctafinal-title {
  font-size: clamp(34px, 5vw, 58px); font-weight: 700; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 22px;
}
.ctafinal-title em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  color: var(--neon);
}
.ctafinal-sub {
  font-size: clamp(16px, 1.65vw, 18.5px); color: var(--gris);
  line-height: 1.6; max-width: 620px; margin: 0 auto 18px;
}
.ctafinal-meta {
  font-size: 14px; color: var(--calipso); margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.ctafinal .btn-big {
  background: linear-gradient(110deg, var(--calipso), var(--neon));
  color: #04221B; font-weight: 800;
}
.ctafinal-fineprint {
  margin-top: 22px; font-size: 13.5px; color: var(--gris-2); font-style: italic;
}

/* === FORM AUDITORÍA · floating labels premium === */
.ctafinal-head { text-align: center; margin-bottom: 40px; }
.form-auditoria {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 620px; margin: 0 auto; text-align: left;
}
.form-row { display: grid; gap: 16px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr; }
}

.form-field { position: relative; display: block; }

.form-label {
  position: absolute; left: 16px; top: 18px;
  font-size: 14.5px; color: var(--gris); pointer-events: none;
  background: transparent; padding: 0 6px;
  transition: top 0.18s var(--ease), font-size 0.18s var(--ease), color 0.18s var(--ease);
  z-index: 1;
}
.form-label em { color: var(--gris-2); font-style: italic; font-weight: 400; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; box-sizing: border-box;
  font-family: inherit; font-size: 15.5px; color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 18px 16px 14px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-field textarea {
  padding-top: 22px; resize: vertical; min-height: 88px;
  font-family: inherit; line-height: 1.55;
}
.form-field select {
  padding-right: 44px; cursor: pointer;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: rgba(33, 217, 176, 0.30);
  background: rgba(255, 255, 255, 0.04);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--calipso);
  background: rgba(33, 217, 176, 0.04);
  box-shadow: 0 0 0 4px rgba(33, 217, 176, 0.12);
}

/* Floating label: input filled / focused */
.form-field input:focus + .form-label,
.form-field input:not(:placeholder-shown) + .form-label,
.form-field textarea:focus + .form-label,
.form-field textarea:not(:placeholder-shown) + .form-label {
  top: -8px; font-size: 11.5px; color: var(--calipso);
  background: linear-gradient(180deg, transparent 50%, rgba(11, 12, 16, 0.92) 50%);
  font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
}
/* select siempre con label arriba cuando tiene valor (no soporta :placeholder-shown) */
.form-field select:focus + .form-label,
.form-field select:valid + .form-label {
  top: -8px; font-size: 11.5px; color: var(--calipso);
  background: linear-gradient(180deg, transparent 50%, rgba(11, 12, 16, 0.92) 50%);
  font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
}
/* NOTA: el HTML pone <input> ANTES de <span class="form-label">; CSS sibling selector + funciona porque label viene después del input */

/* Select chevron */
.form-select-chevron {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--gris); pointer-events: none;
  transition: color 0.2s, transform 0.2s;
}
.form-field:hover .form-select-chevron { color: var(--calipso); }

/* Select options dark (compatible Firefox/Safari/Chrome) */
.form-field select option {
  background: var(--ink); color: var(--white); padding: 12px;
}

/* Validación visual */
.form-field input:user-invalid,
.form-field select:user-invalid {
  border-color: rgba(255, 90, 90, 0.55);
}
.form-field input:user-invalid:focus,
.form-field select:user-invalid:focus {
  box-shadow: 0 0 0 4px rgba(255, 90, 90, 0.14);
}

/* Submit button: ya hereda btn-primary btn-big de v10. Ajustes específicos: */
/* V13 · fix global del SVG dentro de btn-primary (los CTAs sin contenedor band/hero no lo tenían limitado) */
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-big svg { width: 22px; height: 22px; }

/* V13 · botón con arrow animada + shimmer suave (reemplaza el calendar feo) */
html { scroll-behavior: smooth; }

.btn-arrow {
  position: relative; overflow: hidden;
  gap: 14px;
}
.btn-arrow-text { position: relative; z-index: 2; }
.btn-arrow-icon {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-arrow-icon svg { width: 20px; height: 20px; display: block; }
.btn-arrow:hover .btn-arrow-icon { transform: translateX(6px); }
.btn-arrow:focus-visible { outline: 3px solid rgba(33, 217, 176, 0.45); outline-offset: 3px; }

/* Shimmer: pasada de luz cada ~6s para atraer mirada sin saturar */
.btn-arrow::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: btn-arrow-shimmer 6s ease-in-out infinite;
  pointer-events: none; z-index: 1;
}
@keyframes btn-arrow-shimmer {
  0%, 70% { left: -60%; }
  85% { left: 120%; }
  100% { left: 120%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-arrow::after { animation: none; display: none; }
  .btn-arrow-icon { transition: none; }
}

/* Big arrow (form submit + CTA final) — arrow un toque más prominente */
.btn-big.btn-arrow .btn-arrow-icon svg { width: 24px; height: 24px; }
.btn-big.btn-arrow:hover .btn-arrow-icon { transform: translateX(8px); }

.form-auditoria button[type="submit"] {
  margin-top: 12px; width: 100%; justify-content: center;
  font-size: 17px; padding: 20px 28px;
  background: linear-gradient(110deg, var(--calipso), var(--neon));
  color: #04221B; font-weight: 800; border: none; cursor: pointer;
}
.form-auditoria button[type="submit"]:hover {
  transform: scale(1.015);
}

.form-disclaimer {
  margin-top: 12px; text-align: center;
  font-size: 12.5px; color: var(--gris-2); line-height: 1.5;
}

/* Estado de envío (cuando el form se reemplaza por mensaje) */
.form-success {
  text-align: center; padding: 40px 20px;
  background: rgba(33, 217, 176, 0.08);
  border: 1px solid rgba(33, 217, 176, 0.28);
  border-radius: 16px;
}
.form-success h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; font-weight: 700; }
.form-success p { color: var(--gris); font-size: 15px; line-height: 1.55; }

/* ============ POP-UP VSL · dispara al seg 30 ============ */
.vsl-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; box-sizing: border-box;
}
.vsl-popup[hidden] { display: none; }
.vsl-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 6, 10, 0.78); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: vsl-popup-fade 0.35s ease forwards;
}
@keyframes vsl-popup-fade {
  from { opacity: 0; } to { opacity: 1; }
}
.vsl-popup-card {
  position: relative; z-index: 1;
  max-width: 460px; width: 100%; box-sizing: border-box;
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(33, 217, 176, 0.30); border-radius: 22px;
  padding: 40px 32px 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(33, 217, 176, 0.10);
  animation: vsl-popup-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  max-height: calc(100vh - 40px); overflow-y: auto;
}
@keyframes vsl-popup-pop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.vsl-popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--gris); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.vsl-popup-close svg { width: 16px; height: 16px; }
.vsl-popup-close:hover {
  background: rgba(255, 255, 255, 0.10); color: var(--white); transform: rotate(90deg);
}
.vsl-popup-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--calipso), var(--neon));
  color: #04221B; margin-bottom: 22px;
  box-shadow: 0 12px 32px rgba(33, 217, 176, 0.30);
}
.vsl-popup-mark svg { width: 26px; height: 26px; }
.vsl-popup-eyebrow {
  font-size: 12px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--calipso); font-weight: 600; margin-bottom: 10px;
}
.vsl-popup-title {
  font-size: clamp(22px, 3vw, 26px); font-weight: 700; color: var(--white);
  line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 10px;
}
.vsl-popup-title em {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--neon);
}
.vsl-popup-sub {
  font-size: 14.5px; color: var(--gris); line-height: 1.55; margin-bottom: 24px;
}
.vsl-popup-form { display: flex; flex-direction: column; gap: 14px; }
.vsl-popup-form .form-field input { padding: 16px 14px 12px; font-size: 15px; }
.vsl-popup-submit { width: 100%; justify-content: center; margin-top: 4px; font-size: 15.5px; padding: 16px 22px; }
.vsl-popup-success {
  text-align: center; padding: 26px 16px;
  background: rgba(33, 217, 176, 0.10); border: 1px solid rgba(33, 217, 176, 0.30);
  border-radius: 14px;
}
.vsl-popup-success h4 { color: var(--white); font-size: 19px; margin-bottom: 8px; font-weight: 700; }
.vsl-popup-success p { color: var(--gris); font-size: 14px; line-height: 1.55; }
.vsl-popup-fine {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 18px; font-size: 12px; color: var(--gris-2);
}
.vsl-popup-fine svg { width: 13px; height: 13px; color: var(--gris-2); }

body.vsl-popup-open { overflow: hidden; }

@media (max-width: 640px) {
  .vsl-popup { padding: 14px; align-items: flex-end; }
  .vsl-popup-card { padding: 32px 22px 22px; border-radius: 20px; }
  .vsl-popup-title { font-size: 20px; }
}
