:root {
  --bg-dark: #0A0E1A;
  --bg-dark-soft: #0D1424;
  --bg-mid: #1C2436;
  --bg-light: #E8EEF5;
  --bg-light-warm: #F0F3F8;
  --ink: #0A0E1A;
  --ice: #E8EEF5;
  --ice-muted: rgba(232, 238, 245, 0.65);
  --ice-soft: rgba(232, 238, 245, 0.4);
  --ink-muted: rgba(10, 14, 26, 0.65);
  --ink-soft: rgba(10, 14, 26, 0.4);
  /* ADR-016 (2026-05-27): paleta alineada a tokens globales del proyecto.
     --cyan  ahora coincide con --accent-tech global (#06B6D4).
     --violet ahora coincide con --accent-primary global (#2563EB).
     Nombres de variables conservados para evitar refactor de selectores. */
  --cyan: #06B6D4;
  --cyan-dark: #0891B2;
  --violet: #2563EB;
  --violet-dark: #1D4ED8;
  --border-dark: rgba(232, 238, 245, 0.12);
  --border-light: rgba(10, 14, 26, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-impact: 'Archivo', 'Arial Narrow', sans-serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}
.cc-v2-page * { margin: 0; padding: 0; box-sizing: border-box; }
html.cc-v2-page { scroll-behavior: smooth; }
body.cc-v2-page {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--ice);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  /* `clip` evita scroll horizontal SIN crear nuevo block formatting context,
     que rompía el position:sticky del .cine-sticky (hero 3 escenas).
     Fallback hidden para Safari <16 (no soporta clip). */
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* main wrapper de páginas v2: tampoco debe crear contexto que rompa sticky. */
.cc-v2-page__main { overflow: visible; }
.cc-v2-page ::selection { background: var(--cyan); color: var(--ink); }
.cc-v2-page .nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border-dark);
}
.cc-v2-page .nav-logo {
  display: flex; align-items: center;
  cursor: pointer;
}
.cc-v2-page .nav-logo img {
  height: 53px; width: auto; display: block;
  transition: filter 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
.cc-v2-page .nav-logo:hover img {
  animation: logoBreathe 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.45));
}
@keyframes logoBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}
.cc-v2-page .nav-links { display: flex; gap: 26px; font-size: 19.5px; color: var(--ice-muted); }
.cc-v2-page .nav-links a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.cc-v2-page .nav-links a:hover { color: var(--ice); }
.cc-v2-page .nav-cta { display: flex; gap: 10px; }
.cc-v2-page .btn-pill {
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 500;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.25s; font-family: inherit;
}
.cc-v2-page .btn-pill.ghost {
  background: transparent; color: var(--ice);
  border: 0.5px solid rgba(232, 238, 245, 0.3);
}
.cc-v2-page .btn-pill.ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.cc-v2-page .btn-pill.primary { background: var(--cyan); color: var(--ink); }
.cc-v2-page .btn-pill.primary:hover { background: #5BF0FF; transform: translateY(-1px); }
.cc-v2-page .btn-pill.dark { background: var(--ink); color: var(--ice); }
.cc-v2-page .btn-pill.dark:hover { background: #1a1f30; }
.cc-v2-page .btn-pill.violet { background: var(--violet); color: var(--ink); }
.cc-v2-page .btn-pill.violet:hover { background: #BFA8FC; transform: translateY(-1px); }
.cc-v2-page .btn-pill.lg { padding: 14px 26px; font-size: 14px; }
.cc-v2-page .btn-gradient {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  text-decoration: none;
  border: none; cursor: pointer;
  /* ADR-016: gradiente alineado a paleta oficial (cyan #06B6D4 → azul #2563EB). */
  background: linear-gradient(100deg, var(--cyan) 0%, #38BDF8 35%, var(--violet) 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.28),
              0 2px 12px rgba(37, 99, 235, 0.22);
  transition: background-position 0.5s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.cc-v2-page .btn-gradient:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.35),
              0 4px 18px rgba(37, 99, 235, 0.3);
}
.cc-v2-page .btn-gradient.lg {
  padding: 17px 34px;
  font-size: 16px;
}
.cc-v2-page .btn-gradient.xl {
  padding: 20px 44px;
  font-size: 17px;
}
.cc-v2-page .logo-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  pointer-events: none;
}
.cc-v2-page .logo-intro-img {
  height: auto;
  width: min(58vw, 58vh);
  max-width: 620px;
  display: block;
  will-change: transform, opacity;
}
.cc-v2-page .nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.cc-v2-page .nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ice);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
}
.cc-v2-page .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cc-v2-page .nav-burger.open span:nth-child(2) { opacity: 0; }
.cc-v2-page .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.cc-v2-page .mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 4px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-v2-page .mobile-menu.open { transform: translateY(0); }
.cc-v2-page .mobile-menu a {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ice);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border-dark);
  transition: color 0.2s, padding-left 0.2s;
}
.cc-v2-page .mobile-menu a:last-child { border-bottom: none; }
.cc-v2-page .mobile-menu a:hover, .cc-v2-page .mobile-menu a:active {
  color: var(--cyan);
  padding-left: 8px;
}
@media (max-width: 1080px) {
.cc-v2-page .nav-links { display: none; }
.cc-v2-page .nav-burger { display: flex; }
.cc-v2-page .nav { justify-content: space-between; }
.cc-v2-page .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 600px) {
.cc-v2-page .nav { padding: 12px 18px; }
.cc-v2-page .nav-logo img { height: 42px; }
.cc-v2-page .btn-gradient { padding: 10px 18px; font-size: 13px; }
.cc-v2-page .mobile-menu a { font-size: 22px; }
}
@media (max-width: 380px) {
.cc-v2-page .btn-gradient { padding: 9px 14px; font-size: 12px; }
.cc-v2-page .nav-logo img { height: 36px; }
}
.cc-v2-page .hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,238,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,238,245,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cc-v2-page .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 24px;
}
.cc-v2-page .eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.cc-v2-page .stat-num small { font-size: 0.55em; opacity: 0.7; }
.cc-v2-page .cine-hero {
  /* 500vh = 4 escenas × 100vh + 1 viewport de "pre-pin" para que ScrollTrigger
     reparta el progress 0→1 entre las 4 escenas. ADR-016 sesión g (4ª escena). */
  height: 500vh;
  position: relative;
  background: var(--bg-dark);
}
.cc-v2-page .cine-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cc-v2-page .cine-sticky .hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,238,245,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,238,245,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 25%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}
.cc-v2-page .cine-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212,0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235,0.07) 0%, transparent 45%);
  pointer-events: none;
}
.cc-v2-page .cine-progress {
  position: absolute;
  left: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex; flex-direction: column; gap: 14px;
}
.cc-v2-page .cine-dot {
  width: 3px; height: 44px;
  background: rgba(232,238,245,0.12);
  border-radius: 2px; overflow: hidden;
  position: relative;
}
.cc-v2-page .cine-dot-fill {
  position: absolute; left: 0; top: 0; right: 0;
  height: 0%;
  background: var(--cyan);
  transition: height 0.2s linear;
}
.cc-v2-page .cine-dot[data-dot="1"] .cine-dot-fill { background: var(--violet); }
.cc-v2-page .cine-dot[data-dot="2"] .cine-dot-fill { background: var(--cyan); }
.cc-v2-page .cine-dot[data-dot="3"] .cine-dot-fill { background: var(--violet); }
.cc-v2-page .scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  padding-top: 80px;       
  padding-bottom: 24px;
  box-sizing: border-box;
}
.cc-v2-page .scene.is-active { pointer-events: auto; }
/* Sesión h++ noche (2026-05-27): layout FULL-BLEED.
   La imagen cubre toda la pantalla, el texto flota encima. SVG decorativo
   se oculta cuando hay foto. */
.cc-v2-page .scene-inner {
  /* Sesión h++ Victor (13): texto a 50px del borde izquierdo de la pantalla,
     40px del derecho. Sin max-width centrado. Aplica a las 4 escenas. */
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 0 40px 0 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 600px) {
  .cc-v2-page .scene-inner { padding: 0 20px; }
}
.cc-v2-page .scene-copy {
  /* Sesión h++ Victor (8): unificación con Partners — sin transform,
     el texto queda centrado verticalmente por el flex del scene-inner. */
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
}
/* Sesión h++ Victor (29): heros 1 y 3 — texto sube 15% (translateY).
   Heros 2 y 4 — botones se acercan 20% al texto (margin-top -20%). */
.cc-v2-page .scene[data-scene="0"] .scene-copy,
.cc-v2-page .scene[data-scene="2"] .scene-copy {
  transform: translateY(-15%);
}
@media (max-width: 600px) {
  .cc-v2-page .scene[data-scene="0"] .scene-copy,
  .cc-v2-page .scene[data-scene="2"] .scene-copy {
    transform: none;
  }
}
.cc-v2-page .scene[data-scene="1"] .scene-ctas,
.cc-v2-page .scene[data-scene="3"] .scene-ctas {
  margin-top: 80px; /* 100 - 20% */
}
@media (max-width: 968px) {
  .cc-v2-page .scene[data-scene="1"] .scene-ctas,
  .cc-v2-page .scene[data-scene="3"] .scene-ctas {
    margin-top: 32px; /* 40 - 20% */
  }
}

/* Sesión h++ Victor (20→21): revertido bottom 30px. Causaba que el sub
   se viera como "hero intermedio" en la transición de scroll porque el .scene
   no llega tan abajo. Vuelve a bottom:0 igual a las otras escenas. */
/* Sesión h++ fix: la foto YA NO vive dentro de .scene-visual; ahora es
   hermano directo de .scene-inner. Esta regla queda obsoleta y se elimina. */
.cc-v2-page .scene-eyebrow {
  /* Sesión h++ Victor (8): unificación con hero de Partners. Mismo estilo
     que .p-eyebrow — línea decorativa 24px cyan + texto cyan uppercase mono.
     Sesión h++ Victor (14): tamaño reducido 30%. Original 11px. */
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 28px;
  text-shadow: 0 0 12px rgba(6, 182, 212, 0.55), 0 2px 6px rgba(6, 18, 42, 0.85);
}
.cc-v2-page .scene-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--cyan);
}
/* Sesión h++ Victor (8): unificación — eyebrow cyan en todas las escenas. */
.cc-v2-page .scene-title {
  /* Sesión h++ Victor (8): unificación con hero de Partners.
     font-family Archivo (var(--font-impact)), uppercase, weight 800.
     Sesión h++ Victor (14): tamaño reducido 30% (×0.70). Original 40/6.2vw/88. */
  font-family: var(--font-impact);
  font-size: clamp(28px, 4.34vw, 62px);
  /* Sesión h++ Victor (15): interlineado +30% (×1.3). 1.0 → 1.3. */
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 28px;
  text-shadow:
    0 2px 4px rgba(6, 18, 42, 0.85),
    0 12px 36px rgba(6, 18, 42, 0.55);
}
.cc-v2-page .scene-title em {
  /* Sesión h++ Victor (8): unificación con Partners — el <em> queda como el
     resto del título (sin tamaño reducido). Solo neutraliza el italic default. */
  font-style: normal;
  font-weight: 800;
  font-size: 1em;
  color: var(--ice);
  letter-spacing: inherit;
}
/* Sesión h++ Victor (8): unificación con Partners — .accent cyan para las 4 escenas. */
.cc-v2-page .scene-title .accent { color: var(--cyan); }
.cc-v2-page .scene-title .outline {
  /* Sesión h++ Victor (8): unificación con .p-hero h1 .outline de Partners —
     mismo Archivo (heredado), mismo size (heredado), mismo stroke 1.5px violet,
     transparent. Aplica a las escenas 2, 3, 4.
     Sesión h++ Victor (11): text-shadow none para que el interior quede
     realmente transparente y muestre la foto debajo. */
  -webkit-text-stroke: 1.5px var(--violet);
  text-stroke: 1.5px var(--violet);
  color: transparent;
  text-shadow: none;
}
/* Sesión h++ Victor (10): ERP de la escena 1 — solo contorno BLANCO,
   fill transparente, tamaño +60% del base.
   Sesión h++ Victor (11): text-shadow none — el shadow azul oscuro del
   .scene-title rellenaba el interior del outline tapando la foto. */
.cc-v2-page .scene[data-scene="0"] .scene-title .outline,
.cc-v2-page .scene-title .outline-white {
  -webkit-text-stroke: 1.5px var(--ice);
  text-stroke: 1.5px var(--ice);
  color: transparent;
  font-size: 1.6em;
  /* Sesión h++ Victor (15): +30% → 0.9 × 1.3 = 1.17 */
  line-height: 1.17;
  display: inline-block;
  vertical-align: baseline;
  text-shadow: none;
}
@supports not ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)) {
  .cc-v2-page .scene-title .outline { color: var(--cyan); }
  .cc-v2-page .scene[data-scene="0"] .scene-title .outline { color: var(--ice); }
}
/* Escena 2 (data-scene="1") ahora hereda cyan default. Sesión h++ Victor. */
.cc-v2-page .scene[data-scene="3"] .scene-title .outline {
  -webkit-text-stroke: 2.5px var(--violet);
  text-stroke: 2.5px var(--violet);
  color: var(--cyan);
}
.cc-v2-page .scene-title .ln {
  display: block;
  /* Sesión h++ Victor (15): +30% → 1.04 × 1.3 = 1.352 */
  line-height: 1.352;
}
.cc-v2-page .scene-title .wd {
  display: inline-block;
  line-height: 1.352;
  transform-origin: center bottom;
  will-change: transform, opacity;
}
/* Sesión h++ Victor (49→50): herencia explícita para que las letras splitteadas
   en .wd-ltr-word + .wd-ltr conserven contorno, fill transparente y tipografía.
   Sin esto, mobile pierde el stroke al separar la palabra en spans. */
.cc-v2-page .scene-title .wd.outline-white,
.cc-v2-page .scene-title .wd.outline-white .wd-ltr-word,
.cc-v2-page .scene-title .wd.outline-white .wd-ltr {
  -webkit-text-stroke: 1.5px var(--ice);
  text-stroke: 1.5px var(--ice);
  color: transparent;
  font-size: 1.6em;
  line-height: 1.17;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-shadow: none;
  vertical-align: baseline;
}
/* Reset font-size en los hijos para que el 1.6em no se multiplique cascada. */
.cc-v2-page .scene-title .wd.outline-white .wd-ltr-word,
.cc-v2-page .scene-title .wd.outline-white .wd-ltr {
  font-size: 1em;
}
/* Misma garantía para la escena 0 (cuyo selector usa .outline en lugar de .outline-white). */
.cc-v2-page .scene[data-scene="0"] .scene-title .outline .wd-ltr-word,
.cc-v2-page .scene[data-scene="0"] .scene-title .outline .wd-ltr {
  -webkit-text-stroke: inherit;
  text-stroke: inherit;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-shadow: inherit;
}
.cc-v2-page .scene-sub {
  /* Sesión h++ Victor (26): SOLUCIÓN DEFINITIVA — display: none por default.
     Solo se RENDERIZA cuando la escena padre tiene .is-active. Esto elimina
     completamente el efecto "hero intermedio" porque el sub no existe en el
     layout cuando la escena no está activa. */
  font-family: 'Inter', 'Geist', sans-serif;
  font-size: clamp(20px, 1.70vw, 24px);
  color: var(--cyan);
  max-width: none;
  line-height: 2.08;
  font-weight: 300;
  letter-spacing: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 40px;
  background: rgba(0, 0, 0, 0.85);
  text-shadow: none;
  z-index: 4;
  display: none;
}
.cc-v2-page .scene.is-active .scene-sub {
  display: block;
}
/* Sesión h++ Victor (27): hero 1 — foto sube 100px + sub forzado a block. */
.cc-v2-page .scene[data-scene="0"] > .scene-photo img {
  transform: translateY(-100px) scale(1.04);
}
@media (max-width: 968px) {
  .cc-v2-page .scene[data-scene="0"] > .scene-photo img {
    transform: translateY(-40px) scale(1.04);
  }
}
/* Defensive: garantiza que el sub del hero 1 se muestre incluso si .is-active
   no se aplicó por timing del JS. */
.cc-v2-page .scene[data-scene="0"] > .scene-sub {
  display: block !important;
}
/* Cuando hero 1 NO está activo (scrolleamos a hero 2), lo escondemos. */
.cc-v2-page .scene[data-scene="0"]:not(.is-active) > .scene-sub {
  display: none !important;
}
@media (max-width: 968px) {
  .cc-v2-page .scene-sub {
    position: static;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 12px 16px;
    font-size: 17px;
    background: rgba(0, 0, 0, 0.65);
  }
}
.cc-v2-page .scene-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  /* Sesión h++ Victor (28): -50px de la separación. 150 → 100 desktop. */
  margin-top: 100px;
}
@media (max-width: 968px) {
  .cc-v2-page .scene-ctas { margin-top: 40px; }
}
.cc-v2-page .scene-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  isolation: isolate;
}

/* ----------------------------------------------------------------
   Sesión h++ (2026-05-27) · Fotos magnific estilo revista en hero.
   .scene-photo envuelve un <picture> renderizado por ccc_render_hero_picture().
   Conviven con el SVG decorativo (.viz) que queda sobrepuesto con menos opacidad.
   ---------------------------------------------------------------- */
/* FULL-BLEED real (sesión h++ noche · fix): el <picture> es hermano directo
   de .scene-inner, no hijo de .scene-visual. Así cubre la escena entera
   sin que el max-width 1280px del inner la limite. */
.cc-v2-page .scene > .scene-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  pointer-events: none;
}
.cc-v2-page .scene > .scene-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Sesión h++ fix · Victor: "se ve opaca, sin la vida de las fotos originales".
     Subo brightness 0.55 → 0.92, saturate 0.92 → 1.05. */
  filter: brightness(0.92) contrast(1.06) saturate(1.05);
  transition: filter 0.9s ease, transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, filter;
}
.cc-v2-page .scene.is-active > .scene-photo img {
  filter: brightness(1.0) contrast(1.06) saturate(1.08);
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .cc-v2-page .scene > .scene-photo img { transition: none; transform: none; }
}
/* Sesión h++ Victor (9 → 12): gradient de opacidad horizontal aplicado a las
   4 escenas — lado izquierdo 30%, lado derecho 100%. Usa mask-image para
   fundir suavemente la imagen sin perder color. */
.cc-v2-page .scene > .scene-photo img {
  -webkit-mask-image: linear-gradient(to right,
                                      rgba(0,0,0,0.30) 0%,
                                      rgba(0,0,0,0.65) 45%,
                                      rgba(0,0,0,1) 100%);
          mask-image: linear-gradient(to right,
                                      rgba(0,0,0,0.30) 0%,
                                      rgba(0,0,0,0.65) 45%,
                                      rgba(0,0,0,1) 100%);
}

/* Overlay para legibilidad — más sutil (la legibilidad del texto la da
   text-shadow en .scene-title y .scene-sub). */
.cc-v2-page .scene > .scene-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
                    rgba(6, 18, 42, 0.55) 0%,
                    rgba(10, 14, 26, 0.30) 30%,
                    rgba(10, 14, 26, 0.12) 60%,
                    rgba(6, 18, 42, 0.25) 100%),
    linear-gradient(180deg,
                    rgba(10, 14, 26, 0.30) 0%,
                    transparent 20%,
                    transparent 80%,
                    rgba(10, 14, 26, 0.40) 100%);
  pointer-events: none;
}

/* SVG decorativo: se oculta cuando hay foto (full-bleed). Queda intacto
   en escenas SIN foto (fallback). */
.cc-v2-page .viz {
  width: 100%;
  max-width: 420px;
  height: auto;
  position: relative;
  z-index: 2;
}
/* SVG decorativo se oculta cuando la escena tiene foto full-bleed.
   Después del fix: .scene-photo es hermano de .scene-inner (no hijo de
   .scene-visual), así que el selector apunta a .scene. */
.cc-v2-page .scene:has(> .scene-photo) .viz {
  display: none;
}
@media (max-width: 1280px) {
/* Sesión h++ Victor (14): -30% sobre clamp(26,3.4vw,54) → clamp(18,2.38vw,38) */
.cc-v2-page .scene-title { font-size: clamp(18px, 2.38vw, 38px); }
.cc-v2-page .scene { padding-top: 72px; padding-bottom: 20px; }
}
@media (max-width: 968px) {
.cc-v2-page .cine-hero { height: 360vh; }
.cc-v2-page .scene-inner { grid-template-columns: 1fr; gap: 24px; padding: 0 20px; }
.cc-v2-page .scene-visual { order: -1; }
.cc-v2-page .viz { max-width: 220px; }
.cc-v2-page .cine-progress { left: 16px; }
/* Sesión h++ Victor (14): -30% sobre clamp(24,5.2vw,44) → clamp(17,3.64vw,31) */
.cc-v2-page .scene-title { font-size: clamp(17px, 3.64vw, 31px); }
/* .scene-sub mobile gestionado en la regla principal (position static + 14px). */
.cc-v2-page .scene { padding-top: 88px; padding-bottom: 18px; }
}
@media (max-width: 600px) {
/* Sesión h++ noche: en mobile mantengo la foto full-bleed visible.
   El visual SIN foto (escenas fallback) sí se oculta para que el texto respire. */
.cc-v2-page .scene-visual:not(:has(.scene-photo)) { display: none; }
/* Sesión h++ Victor (14): -30% sobre clamp(22,6.8vw,38) → clamp(15,4.76vw,27) */
.cc-v2-page .scene-title { font-size: clamp(15px, 4.76vw, 27px); }
.cc-v2-page .scene-eyebrow { margin-bottom: 10px; font-size: 7px; }
.cc-v2-page .scene { padding-top: 80px; }
}
.cc-v2-page .marquee {
  background: var(--bg-dark);
  border-bottom: 0.5px solid var(--border-dark);
  padding: 24px 0; overflow: hidden; position: relative;
}
.cc-v2-page .marquee-track {
  display: flex; gap: 50px; animation: scroll 50s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--ice-soft); width: max-content;
}
.cc-v2-page .marquee-track span { display: inline-block; }
.cc-v2-page .marquee-dot { color: var(--cyan); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.cc-v2-page .section { padding: 120px 40px; position: relative; }
.cc-v2-page .section-inner { max-width: 1280px; margin: 0 auto; }
.cc-v2-page .section.light { background: var(--bg-light); color: var(--ink); }
.cc-v2-page .section.dark { background: var(--bg-dark); color: var(--ice); }
.cc-v2-page .section.darker { background: #06090F; color: var(--ice); }
.cc-v2-page .light .eyebrow { color: var(--cyan-dark); }
.cc-v2-page .dark .eyebrow, .cc-v2-page .darker .eyebrow { color: var(--cyan); }
.cc-v2-page .section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 76px);
  line-height: 1; letter-spacing: -0.03em; font-weight: 300;
  margin-bottom: 32px; max-width: 900px;
}
.cc-v2-page .section-title em { font-style: italic; opacity: 0.55; font-weight: 300; }
.cc-v2-page .light .section-title em { color: var(--ink-muted); }
.cc-v2-page .dark .section-title em, .cc-v2-page .darker .section-title em { color: var(--ice-muted); }
/* Sesión h++ Victor (30): título de /para-quien/ — texto blanco → negro.
   Las palabras <em> (nube pública / infraestructura on-premise) conservan su cyan-dark. */
.cc-v2-page #para-quien .section-title { color: var(--ink); }
.cc-v2-page #para-quien .section-title em { color: var(--cyan-dark); opacity: 1; font-weight: 400; }
.cc-v2-page .section-title .c { color: var(--cyan-dark); }
.cc-v2-page .dark .section-title .c, .cc-v2-page .darker .section-title .c { color: var(--cyan); }
.cc-v2-page .section-title .v { color: var(--cyan-dark); }
.cc-v2-page .dark .section-title .v, .cc-v2-page .darker .section-title .v { color: var(--cyan); }
.cc-v2-page .section-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6; max-width: 660px;
  margin-bottom: 64px; font-weight: 300;
}
.cc-v2-page .light .section-lede { color: var(--ink-muted); }
.cc-v2-page .dark .section-lede, .cc-v2-page .darker .section-lede { color: var(--ice-muted); }
@media (max-width: 768px) {
.cc-v2-page .section { padding: 80px 20px; }
}
.cc-v2-page .cases-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border-light);
  border: 0.5px solid var(--border-light);
}
.cc-v2-page .case {
  background: var(--bg-light); padding: 40px 32px;
  transition: all 0.3s ease;
}
.cc-v2-page .case:hover { background: var(--bg-light-warm); }
.cc-v2-page .case-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--cyan-dark); letter-spacing: 0.1em; margin-bottom: 24px;
}
.cc-v2-page .case-title {
  font-family: var(--font-display); font-size: 26px;
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 400;
  margin-bottom: 16px; color: var(--ink);
}
.cc-v2-page .case-title em { font-style: italic; color: var(--cyan-dark); }
.cc-v2-page .case-desc { font-size: 14px; line-height: 1.6; color: var(--ink-muted); }
@media (max-width: 600px) {
.cc-v2-page .cases-grid { grid-template-columns: 1fr; }
}
.cc-v2-page .tiers {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-dark);
  border: 0.5px solid var(--border-dark);
}
.cc-v2-page .tier {
  background: var(--bg-dark); padding: 40px 28px;
  display: flex; flex-direction: column; position: relative;
  min-height: 480px;
}
.cc-v2-page .tier-12 { font-family: var(--font-mono); font-size: 10px; color: var(--ice-soft); letter-spacing: 0.15em; margin-bottom: 12px; }
.cc-v2-page .tier-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 14px;
}
.cc-v2-page .tier.t1 .tier-tag { color: var(--cyan); }
.cc-v2-page .tier.t2 .tier-tag { color: var(--ice-muted); }
.cc-v2-page .tier.t3 .tier-tag { color: var(--cyan); }
.cc-v2-page .tier.t4 .tier-tag { color: var(--cyan); }
.cc-v2-page .tier-name {
  font-family: var(--font-display); font-size: 24px;
  line-height: 1.1; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--ice);
}
.cc-v2-page .tier-name em { font-style: italic; color: var(--ice-muted); }
.cc-v2-page .tier-desc {
  font-size: 13px; line-height: 1.55;
  color: var(--ice-muted); margin-bottom: 24px; flex-grow: 1;
}
.cc-v2-page .tier-list { list-style: none; margin-bottom: 28px; padding: 0; }
.cc-v2-page .tier-list li {
  font-size: 12px; padding: 5px 0 5px 16px;
  position: relative; line-height: 1.5; color: var(--ice-muted);
}
.cc-v2-page .tier-list li::before {
  content: '—'; position: absolute; left: 0; color: var(--cyan);
}
.cc-v2-page .tier.t3 .tier-list li::before { color: var(--cyan); }
.cc-v2-page .tier-cta { margin-top: auto; }
@media (max-width: 968px) {
.cc-v2-page .tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
.cc-v2-page .tiers { grid-template-columns: 1fr; }
}
.cc-v2-page .category-block {
  border-top: 0.5px solid var(--border-dark);
  padding: 72px 0;
  display: grid; grid-template-columns: 320px 1fr; gap: 80px;
}
.cc-v2-page .category-block:last-child { border-bottom: 0.5px solid var(--border-dark); }
.cc-v2-page .category-head { position: sticky; top: 100px; align-self: start; }
.cc-v2-page .category-letter {
  font-family: var(--font-display); font-size: 88px;
  font-weight: 300; line-height: 0.9; color: var(--cyan); margin-bottom: 16px;
}
.cc-v2-page .category-letter em { font-style: italic; color: var(--cyan); }
.cc-v2-page .category-name {
  font-family: var(--font-display); font-size: 26px;
  line-height: 1.1; font-weight: 400; letter-spacing: -0.02em;
  margin-bottom: 14px; color: var(--ice);
}
.cc-v2-page .category-name em { font-style: italic; color: var(--ice-muted); }
.cc-v2-page .category-desc { font-size: 14px; color: var(--ice-muted); line-height: 1.6; }
.cc-v2-page .services-list { display: flex; flex-direction: column; }
.cc-v2-page .service-item {
  padding: 26px 0;
  border-bottom: 0.5px solid var(--border-dark);
}
.cc-v2-page .service-item:last-child { border-bottom: none; }
.cc-v2-page .service-title {
  font-family: var(--font-display); font-size: 21px;
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--ice); line-height: 1.2;
  margin-bottom: 6px;
}
.cc-v2-page .service-title em { font-style: italic; color: var(--cyan); }
.cc-v2-page .service-title.ia em { color: var(--cyan); }
.cc-v2-page .service-desc {
  font-size: 14px; color: var(--ice-muted);
  line-height: 1.55; max-width: 700px;
}
@media (max-width: 968px) {
.cc-v2-page .category-block { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
.cc-v2-page .category-head { position: static; }
.cc-v2-page .category-letter { font-size: 64px; }
}
.cc-v2-page .split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; margin-top: 32px;
}
.cc-v2-page .split-list { list-style: none; padding: 0; }
.cc-v2-page .split-list li {
  border-bottom: 0.5px solid var(--border-dark);
  padding: 22px 0; display: flex;
  justify-content: space-between; align-items: baseline; gap: 16px;
}
.cc-v2-page .split-list li:first-child { border-top: 0.5px solid var(--border-dark); }
.cc-v2-page .split-list .label {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 400; color: var(--ice); letter-spacing: -0.01em;
}
.cc-v2-page .split-list .tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--cyan);
  text-transform: uppercase; white-space: nowrap;
}
.cc-v2-page .split-list .tag.v { color: var(--cyan); }
.cc-v2-page .split-aside {
  padding: 32px;
  border: 0.5px solid var(--border-dark);
  background: var(--bg-dark-soft);
}
.cc-v2-page .split-aside h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; line-height: 1.2;
  margin-bottom: 16px; color: var(--ice);
  letter-spacing: -0.02em;
}
.cc-v2-page .split-aside h4 em { font-style: italic; color: var(--cyan); }
.cc-v2-page .split-aside p {
  font-size: 14px; color: var(--ice-muted);
  line-height: 1.6; margin-bottom: 12px;
}
@media (max-width: 768px) {
.cc-v2-page .split { grid-template-columns: 1fr; gap: 32px; }
}
.cc-v2-page .compliance-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; margin-top: 48px;
}
.cc-v2-page .compliance-chip {
  border: 0.5px solid var(--border-light); background: var(--bg-light);
  padding: 24px 20px; display: flex; flex-direction: column;
  justify-content: space-between; min-height: 130px;
  transition: all 0.3s;
}
.cc-v2-page .compliance-chip:hover {
  border-color: var(--cyan-dark); transform: translateY(-3px);
}
.cc-v2-page .compliance-chip-code {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--cyan-dark); letter-spacing: 0.1em; margin-bottom: 8px;
}
.cc-v2-page .compliance-chip-name {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.cc-v2-page .compliance-chip-name em {
  font-style: italic; color: var(--ink-muted);
  display: block; font-size: 12px; margin-top: 4px;
}
@media (max-width: 968px) {
.cc-v2-page .compliance-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
.cc-v2-page .compliance-grid { grid-template-columns: repeat(2, 1fr); }
}
.cc-v2-page .compliance-note {
  margin-top: 32px;
  padding: 18px 22px;
  border-left: 2px solid var(--cyan-dark);
  background: rgba(0, 153, 181, 0.04);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-muted);
  font-style: italic;
  max-width: 760px;
}
.cc-v2-page .process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-light);
  border: 0.5px solid var(--border-light); margin-top: 32px;
}
.cc-v2-page .process-step {
  background: var(--bg-light); padding: 32px 24px;
  position: relative;
}
.cc-v2-page .process-num {
  font-family: var(--font-display); font-size: 56px;
  font-weight: 300; line-height: 1; color: var(--cyan-dark);
  margin-bottom: 16px;
}
.cc-v2-page .process-num em { font-style: italic; }
.cc-v2-page .process-title {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.cc-v2-page .process-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }
@media (max-width: 968px) {
.cc-v2-page .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
.cc-v2-page .process-grid { grid-template-columns: 1fr; }
}
.cc-v2-page .cta-section {
  padding: 140px 40px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #060810 100%);
}
.cc-v2-page .cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(6, 182, 212,0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(37, 99, 235,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cc-v2-page .cta-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.cc-v2-page .cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95; letter-spacing: -0.035em;
  font-weight: 300; margin-bottom: 24px; text-align: center;
}
.cc-v2-page .cta-headline em { font-style: italic; color: var(--ice-muted); }
.cc-v2-page .cta-headline .c { color: var(--cyan); }
.cc-v2-page .cta-sub {
  font-size: 16px; color: var(--ice-muted);
  text-align: center; max-width: 620px; margin: 0 auto;
  line-height: 1.6;
}
.cc-v2-page .cta-unified {
  margin-top: 64px;
  background: var(--bg-dark);
  border: 0.5px solid var(--border-dark);
  border-top: 2px solid transparent;
  border-image: linear-gradient(100deg, var(--cyan) 0%, var(--violet) 100%) 1; /* ADR-016 */
  position: relative;
}
.cc-v2-page .cta-unified-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.cc-v2-page .cta-unified-main {
  padding: 52px 48px;
  border-right: 0.5px solid var(--border-dark);
}
.cc-v2-page .cta-unified-aside {
  padding: 52px 40px;
  display: flex; flex-direction: column;
  gap: 32px;
  background: rgba(37, 99, 235, 0.04);
}
.cc-v2-page .cta-aside-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.cc-v2-page .cta-card-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 20px; color: var(--cyan);
}
.cc-v2-page .cta-card-title {
  font-family: var(--font-display); font-size: 34px;
  font-weight: 400; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cc-v2-page .cta-card-title em { font-style: italic; color: var(--ice-muted); }
.cc-v2-page .cta-card-desc {
  font-size: 15px; color: var(--ice-muted);
  line-height: 1.65; margin-bottom: 36px;
}
.cc-v2-page .cta-unified-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.cc-v2-page .contact-line {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ice-soft); display: flex;
  align-items: baseline; gap: 12px; padding: 3px 0;
}
.cc-v2-page .contact-line .key { color: var(--ice-soft); min-width: 80px; }
.cc-v2-page .contact-line .val { color: var(--ice); }
.cc-v2-page .contact-line a { color: var(--cyan); text-decoration: none; }
.cc-v2-page .contact-line a:hover { text-decoration: underline; }
@media (max-width: 768px) {
.cc-v2-page .cta-section { padding: 90px 20px; }
.cc-v2-page .cta-unified-grid { grid-template-columns: 1fr; }
.cc-v2-page .cta-unified-main { border-right: none; border-bottom: 0.5px solid var(--border-dark); padding: 40px 28px; }
.cc-v2-page .cta-unified-aside { padding: 40px 28px; }
}
.cc-v2-page .footer {
  background: #04060B; padding: 80px 40px 40px;
  border-top: 0.5px solid var(--border-dark); color: var(--ice-muted);
}
.cc-v2-page .footer-inner { max-width: 1280px; margin: 0 auto; }
.cc-v2-page .footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 0.5px solid var(--border-dark);
}
.cc-v2-page .footer-brand {
  margin-bottom: 20px;
}
.cc-v2-page .footer-brand img {
  height: 56px; width: auto; display: block;
}
.cc-v2-page .footer-tag { font-size: 13px; line-height: 1.6; max-width: 320px; margin-bottom: 16px; }
.cc-v2-page .footer-legal-info {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ice-soft); line-height: 1.7;
}
.cc-v2-page .footer-col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ice-soft); margin-bottom: 16px; font-weight: 500;
}
.cc-v2-page .footer-col ul { list-style: none; padding: 0; }
.cc-v2-page .footer-col li { padding: 5px 0; font-size: 13px; }
.cc-v2-page .footer-col a {
  color: var(--ice-muted); text-decoration: none; transition: color 0.2s;
}
.cc-v2-page .footer-col a:hover { color: var(--cyan); }
.cc-v2-page .footer-bottom {
  padding-top: 32px; display: flex;
  justify-content: space-between; font-size: 11px;
  font-family: var(--font-mono); color: var(--ice-soft);
  letter-spacing: 0.05em; flex-wrap: wrap; gap: 16px;
}
.cc-v2-page .footer-legal { display: flex; gap: 24px; }
.cc-v2-page .footer-legal a { color: var(--ice-soft); text-decoration: none; }
.cc-v2-page .footer-legal a:hover { color: var(--cyan); }
.cc-v2-page .footer-social {
  display: flex; align-items: center; gap: 24px;
  padding: 32px 0;
  border-top: 0.5px solid var(--border-dark);
  flex-wrap: wrap;
}
.cc-v2-page .footer-social-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ice-soft);
}
.cc-v2-page .footer-social-icons {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.cc-v2-page .social-icon {
  display: block; width: 48px; height: 48px;
  border-radius: 50%;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}
.cc-v2-page .social-icon img {
  width: 100%; height: 100%; display: block;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.3s ease;
}
.cc-v2-page .social-icon:hover {
  box-shadow: 0 0 10px 2px rgba(6, 182, 212, 0.55),
              0 0 18px 4px rgba(6, 182, 212, 0.25);
}
.cc-v2-page .social-icon:hover img {
  transform: scale(1.14);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.75));
}
.cc-v2-page .social-icon:active {
  box-shadow: 0 0 14px 4px rgba(6, 182, 212, 0.85),
              0 0 26px 8px rgba(6, 182, 212, 0.45);
}
.cc-v2-page .social-icon:active img {
  transform: scale(1.18);
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 1));
}
@media (max-width: 768px) {
.cc-v2-page .footer { padding: 60px 20px 32px; }
.cc-v2-page .footer-top { grid-template-columns: 1fr; gap: 32px; }
.cc-v2-page .footer-social { justify-content: center; }
.cc-v2-page .social-icon { width: 44px; height: 44px; }
}
.cc-v2-page .reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-v2-page .reveal.visible { opacity: 1; transform: translateY(0); }
.cc-v2-page .reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-v2-page .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.cc-v2-page .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.20s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.30s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.40s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.45s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.50s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.55s; }
.cc-v2-page .reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.60s; }
.cc-v2-page .word {
  display: inline-block; opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.3, 1),
              transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.cc-v2-page .word.in { opacity: 1; transform: translateY(0); }
.cc-v2-page .comparativa { padding: 120px 32px 100px; background: #0A0E1A; position: relative; }
.cc-v2-page .comparativa-inner { max-width: 1280px; margin: 0 auto; }
.cc-v2-page .comparativa-head { text-align: center; margin-bottom: 56px; }
.cc-v2-page .comparativa-eyebrow {
  font-family: 'Geist Mono', monospace; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; opacity: 0.9;
}
.cc-v2-page .comparativa-title {
  font-family: 'Fraunces', serif; font-size: clamp(34px, 5vw, 54px); font-weight: 500;
  line-height: 1.08; color: var(--ice); letter-spacing: -0.02em; max-width: 920px;
  margin: 0 auto 18px;
}
.cc-v2-page .comparativa-title em { color: var(--cyan); font-style: italic; font-weight: 400; }
.cc-v2-page .comparativa-sub {
  font-size: 17px; line-height: 1.55; color: rgba(232,238,245,0.65); max-width: 720px;
  margin: 0 auto;
}
.cc-v2-page .resumen-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 72px; }
.cc-v2-page .resumen-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.10); border-radius: 18px; padding: 28px 26px;
  position: relative; overflow: hidden; transition: transform 0.4s ease, border-color 0.4s ease;
}
.cc-v2-page .resumen-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.cc-v2-page .resumen-card:hover { transform: translateY(-4px); border-color: rgba(6, 182, 212,0.30); }
.cc-v2-page .resumen-card-tag {
  font-family: 'Geist Mono', monospace; font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.cc-v2-page .resumen-card-title {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500;
  color: var(--ice); margin-bottom: 12px; line-height: 1.2;
}
.cc-v2-page .resumen-card-body {
  font-size: 14.5px; line-height: 1.6; color: rgba(232,238,245,0.72);
}
.cc-v2-page .comparativa-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 12px;
}
.cc-v2-page .btn-comparativa, .cc-v2-page .btn-pdf {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; font-family: 'Archivo', sans-serif;
  font-weight: 600; font-size: 14.5px; letter-spacing: 0.02em;
  text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cc-v2-page .btn-comparativa {
  background: linear-gradient(135deg, var(--cyan), var(--violet)); color: #0A0E1A;
}
.cc-v2-page .btn-comparativa:hover {
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(6, 182, 212,0.35);
}
.cc-v2-page .btn-pdf {
  background: transparent; color: var(--ice); border: 1.5px solid rgba(232,238,245,0.25);
}
.cc-v2-page .btn-pdf:hover {
  background: rgba(255,255,255,0.05); border-color: var(--cyan); color: var(--cyan);
  transform: translateY(-2px);
}
@media (max-width: 980px) {
.cc-v2-page .resumen-cards { grid-template-columns: 1fr; gap: 16px; }
.cc-v2-page .tabla-resumida th, .cc-v2-page .tabla-resumida td { padding: 12px 14px; font-size: 13px; }
.cc-v2-page .tabla-resumida td:first-child { width: auto; }
}
@media (max-width: 720px) {
.cc-v2-page .comparativa { padding: 80px 16px 60px; }
.cc-v2-page .tabla-resumida-wrap { border-radius: 12px; }
.cc-v2-page .tabla-resumida thead { display: none; }
.cc-v2-page .tabla-resumida tbody tr { display: block; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cc-v2-page .tabla-resumida td { display: block; padding: 4px 0; }
.cc-v2-page .tabla-resumida td:first-child { font-size: 13px; color: var(--cyan); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Geist Mono', monospace; }
.cc-v2-page .tabla-resumida td.col-chevron { display: none; }
.cc-v2-page .tabla-resumida td:nth-child(2)::before { content: 'Pública: '; color: var(--cyan); font-weight: 600; }
.cc-v2-page .tabla-resumida td:nth-child(3)::before { content: 'Privada: '; color: var(--cyan); font-weight: 600; }
}
@media (max-width: 720px) {
.cc-v2-page .tabla-resumida tbody tr.tr-detalle td { padding: 0 !important; }
.cc-v2-page .detalle-grid { padding: 12px 14px 16px; }
.cc-v2-page .detalle-card { padding: 14px 16px; }
}
.cc-v2-page .numeros {
  background: var(--bg-dark);
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.cc-v2-page .numeros::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(6, 182, 212,0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(37, 99, 235,0.05) 0%, transparent 45%);
  pointer-events: none;
}
.cc-v2-page .numeros-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cc-v2-page .numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cc-v2-page .num-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 16px;
}
.cc-v2-page .num-orb {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.cc-v2-page .num-orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(6, 182, 212, 0.35);
  box-shadow:
    inset 0 0 30px rgba(6, 182, 212, 0.15),
    0 0 18px 2px rgba(6, 182, 212, 0.25);
  animation: ringPulse 2.4s ease-in-out infinite;
  z-index: 0;
}
.cc-v2-page .num-orb-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, transparent 60%);
  filter: blur(8px);
  animation: glowPulse 2.4s ease-in-out infinite;
  z-index: 0;
}
@keyframes ringPulse {
  0%, 100% {
    box-shadow:
      inset 0 0 30px rgba(6, 182, 212, 0.15),
      0 0 18px 2px rgba(6, 182, 212, 0.25);
    border-color: rgba(6, 182, 212, 0.35);
  }
  50% {
    box-shadow:
      inset 0 0 50px rgba(6, 182, 212, 0.30),
      0 0 38px 6px rgba(6, 182, 212, 0.55),
      0 0 70px 14px rgba(6, 182, 212, 0.20);
    border-color: rgba(6, 182, 212, 0.70);
  }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.08); }
}
.cc-v2-page .num-card:nth-child(2) .num-orb-ring { animation-delay: 0.4s; }
.cc-v2-page .num-card:nth-child(2) .num-orb-glow { animation-delay: 0.4s; }
.cc-v2-page .num-card:nth-child(3) .num-orb-ring { animation-delay: 0.8s; }
.cc-v2-page .num-card:nth-child(3) .num-orb-glow { animation-delay: 0.8s; }
.cc-v2-page .num-value {
  position: relative;
  z-index: 2;
  font-family: var(--font-impact);
  /* -5% para que el "99.98%" quede dentro del círculo orb sin desbordar. */
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 800;
  color: var(--ice);
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(6, 182, 212, 0.25);
}
.cc-v2-page .num-count {
  display: inline-block;
}
.cc-v2-page .num-label {
  font-family: var(--font-impact);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--cyan);
  max-width: 240px;
}
@media (max-width: 900px) {
.cc-v2-page .numeros { padding: 70px 20px; }
.cc-v2-page .numeros-grid { grid-template-columns: 1fr; gap: 60px; }
.cc-v2-page .num-orb { width: 220px; height: 220px; margin-bottom: 22px; }
.cc-v2-page .num-value { font-size: clamp(44px, 13.3vw, 61px); }
.cc-v2-page .num-label { font-size: 16px; }
}
.cc-v2-page .section.apoyo {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cc-v2-page .section.apoyo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(6, 182, 212,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(37, 99, 235,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cc-v2-page .section.apoyo > .section-inner { position: relative; z-index: 1; }
.cc-v2-page .section.apoyo .eyebrow { color: var(--cyan); }
.cc-v2-page .section.apoyo .section-title { color: var(--ice); }
.cc-v2-page .section.apoyo .section-title em { color: var(--cyan); font-style: italic; }
.cc-v2-page .section.apoyo .section-lede { color: var(--ice-muted); }

/* Sesión h++ Victor (38): cuando la sección Apoyo se renderiza dentro de
   /para-quien/, aplica foto arquitecturaIA.png con efecto parallax. */
.cc-v2-page-v2-para-quien .section.apoyo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cc-v2-page-v2-para-quien .section.apoyo::before {
  content: '';
  position: absolute;
  inset: -10% 0;
  background-image: var(--apoyo-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax simple para desktop */
  opacity: 0.45;
  z-index: -2;
  will-change: transform;
}
.cc-v2-page-v2-para-quien .section.apoyo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10,14,26,0.55) 0%, var(--bg-dark) 75%),
    linear-gradient(180deg, var(--bg-dark) 0%, transparent 18%, transparent 82%, var(--bg-dark) 100%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 968px) {
  /* Mobile: background-attachment fixed se ignora en Safari iOS y rompe scroll.
     Usar scroll normal con la foto más visible. */
  .cc-v2-page-v2-para-quien .section.apoyo::before {
    background-attachment: scroll;
  }
}
.cc-v2-page .apoyo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.cc-v2-page .apoyo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.cc-v2-page .apoyo-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cc-v2-page .apoyo-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(6, 182, 212,0.25);
  transform: translateY(-4px);
}
.cc-v2-page .apoyo-card:hover::before { opacity: 1; }
.cc-v2-page .apoyo-card:hover .apoyo-icon { color: var(--cyan); transform: scale(1.05); }
.cc-v2-page .apoyo-icon {
  width: 48px; height: 48px;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: color 0.4s ease, transform 0.4s ease;
}
.cc-v2-page .apoyo-icon svg { width: 100%; height: 100%; }
.cc-v2-page .apoyo-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.cc-v2-page .apoyo-title {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ice);
  margin-bottom: 14px;
}
.cc-v2-page .apoyo-title em {
  font-style: italic;
  color: var(--cyan);
}
.cc-v2-page .apoyo-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ice-muted);
}
.cc-v2-page .apoyo-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 1080px) {
.cc-v2-page .apoyo-grid { max-width: 100%; }
}
@media (max-width: 600px) {
.cc-v2-page .apoyo-grid { grid-template-columns: 1fr; gap: 16px; }
.cc-v2-page .apoyo-card { padding: 24px 20px; }
.cc-v2-page .apoyo-icon { width: 40px; height: 40px; margin-bottom: 16px; }
.cc-v2-page .apoyo-title { font-size: 19px; }
}

/* ============================================================
   404 v2 — sesión 2026-05-27
   Sustituye la 404 heredada del padre Creati (HOME · PAGES · …).
   Usa header-v2/footer-v2 + tono ColCloud BRAND.md §4.
   ============================================================ */
.cc-v2-page .ccc-404 {
  min-height: calc(100vh - 200px);
  padding: 160px 40px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.cc-v2-page .ccc-404::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(37,99,235,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.cc-v2-page .ccc-404-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cc-v2-page .ccc-404-code {
  font-family: var(--font-impact);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 2px var(--cyan);
  text-stroke: 2px var(--cyan);
  color: transparent;
  text-shadow: 0 0 60px rgba(6,182,212,0.18);
  margin-bottom: 24px;
}
@supports not ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)) {
  .cc-v2-page .ccc-404-code { color: var(--cyan); }
}
.cc-v2-page .ccc-404-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 400;
  color: var(--ice);
  margin-bottom: 22px;
}
.cc-v2-page .ccc-404-title em {
  font-style: italic;
  color: var(--cyan);
}
.cc-v2-page .ccc-404-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--ice-muted);
  max-width: 580px;
  margin-bottom: 36px;
}
.cc-v2-page .ccc-404-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.cc-v2-page .ccc-404-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  padding-top: 32px;
  border-top: 0.5px solid var(--border-dark);
  width: 100%;
  max-width: 640px;
}
.cc-v2-page .ccc-404-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
.cc-v2-page .ccc-404-links a:hover { color: var(--cyan); }
@media (prefers-reduced-motion: reduce) {
  .cc-v2-page .ccc-404-links a { transition: none; }
}
@media (max-width: 640px) {
  .cc-v2-page .ccc-404 { padding: 120px 20px 80px; }
  .cc-v2-page .ccc-404-code { margin-bottom: 16px; }
  .cc-v2-page .ccc-404-ctas { flex-direction: column; align-items: stretch; }
}

/* ===========================================================================
   500 — Error interno del servidor (ADR-019, sesión i 2026-06-06).
   Clona el layout de .ccc-404. Reversible: borrar este bloque.
   Nota: depende de que el <body> reciba la clase .cc-v2-page cuando se
   enrute la 500 (ver BLOCKER-021 / cabecera de 500.php).
   =========================================================================== */
.cc-v2-page .ccc-500 {
  min-height: calc(100vh - 200px);
  padding: 160px 40px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.cc-v2-page .ccc-500::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(37,99,235,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.cc-v2-page .ccc-500-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cc-v2-page .ccc-500-code {
  font-family: var(--font-impact);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 2px var(--cyan);
  text-stroke: 2px var(--cyan);
  color: transparent;
  text-shadow: 0 0 60px rgba(6,182,212,0.18);
  margin-bottom: 24px;
}
@supports not ((-webkit-text-stroke: 1px black) or (text-stroke: 1px black)) {
  .cc-v2-page .ccc-500-code { color: var(--cyan); }
}
.cc-v2-page .ccc-500-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 400;
  color: var(--ice);
  margin-bottom: 22px;
}
.cc-v2-page .ccc-500-title em {
  font-style: italic;
  color: var(--cyan);
}
.cc-v2-page .ccc-500-sub {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--ice-muted);
  max-width: 580px;
  margin-bottom: 36px;
}
.cc-v2-page .ccc-500-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.cc-v2-page .ccc-500-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  padding-top: 32px;
  border-top: 0.5px solid var(--border-dark);
  width: 100%;
  max-width: 640px;
}
.cc-v2-page .ccc-500-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}
.cc-v2-page .ccc-500-links a:hover { color: var(--cyan); }
@media (prefers-reduced-motion: reduce) {
  .cc-v2-page .ccc-500-links a { transition: none; }
}
@media (max-width: 640px) {
  .cc-v2-page .ccc-500 { padding: 120px 20px 80px; }
  .cc-v2-page .ccc-500-code { margin-bottom: 16px; }
  .cc-v2-page .ccc-500-ctas { flex-direction: column; align-items: stretch; }
}
