:root {
  --istv2-bg-0: #000000;
  --istv2-bg-1: #030b17;
  --istv2-bg-2: #07162b;
  --istv2-bg-3: #0b1f3d;

  --istv2-blue: #009dff;
  --istv2-blue-2: #00b7ff;
  --istv2-blue-3: #2f7dff;
  --istv2-cyan-soft: #9eefff;

  --istv2-text: #f3fbff;
  --istv2-text-soft: rgba(223, 242, 250, 0.72);
  --istv2-border: rgba(0, 157, 255, 0.26);
  --istv2-glow: rgba(0, 157, 255, 0.16);

  /* extras útiles */
  --istv2-panel: rgba(3, 14, 30, 0.76);
  --istv2-panel-2: rgba(5, 18, 38, 0.88);
  --istv2-panel-soft: rgba(2, 10, 22, 0.58);
  --istv2-white-soft: rgba(243, 251, 255, 0.92);
}
/* =========================================
   HERO nosotros PAGE IST V2
========================================= */

.nosotros-page-hero {
  position: relative;
  width: 100%;
  min-height: 800px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 1.6rem;
  overflow: hidden;
  isolation: isolate;

  background: #000;
}

/* Fondo con la configuración que te gustó */
.nosotros-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;

  background-image:
    linear-gradient(
      to right,
      rgb(0, 0, 0) 0%,
      rgba(0, 0, 0, 0.705) 20%,
      rgba(0, 5, 15, 0) 60%,
      rgba(0, 0, 0, 0.212) 100%
    ),
    url("nosotros-hero5.png");

  opacity: 1;
}

/* Fade inferior para conectar con la siguiente sección */
.nosotros-page-hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;

  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.38) 48%,
    #000000 100%
  );

  pointer-events: none;
}

/* Malla muy sutil */
.nosotros-page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.018) 1px, transparent 1px);

  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
  opacity: 0.6;
}

/* Glows internos, no pegados al borde */
.nosotros-page-hero-orb {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
}

.nosotros-page-hero-orb-a {
  width: 390px;
  height: 390px;
  left: -180px;
  top: 30%;
  background: rgba(0, 74, 255, 0.22);
}

.nosotros-page-hero-orb-b {
  width: 420px;
  height: 420px;
  right: -190px;
  top: 34%;
  background: rgba(0, 183, 255, 0.14);
}

.nosotros-page-hero-container {
  position: relative;
  z-index: 3;
}

.nosotros-page-hero-row {
    margin-top: 0rem;
}

/* =========================================
   CONTENIDO IZQUIERDO
========================================= */

.nosotros-page-hero-content {
  color: #c0dde4;
  text-align: left;
}

.nosotros-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.65rem 1.15rem;
  border-radius: 999px;

  color: #dff8ff;
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.12), transparent 68%),
    rgba(0, 12, 28, 0.68);

  border: 1px solid rgba(0, 183, 255, 0.58);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.08),
    0 0 20px rgba(0, 183, 255, 0.16);

  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.nosotros-page-hero-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.6));
}

.nosotros-page-hero-title {
  font-family: 'Geist', sans-serif;

  font-size: clamp(2.65rem, 4vw, 62px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;

  text-align: left;
  text-wrap: balance;

  max-width: 720px;
  margin: 1.35rem 0 1rem;

  background: linear-gradient(to right, #ffffff 30%, #b8eeff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-shadow:
    0 0 18px rgba(0, 183, 255, 0.10),
    0 0 44px rgba(0, 110, 255, 0.12);
}

.nosotros-page-hero-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #e0f7fa;
  max-width: 650px;
  margin: 0 0 2.2rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.nosotros-page-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nosotros-page-btn {
  min-width: 180px;
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;

  padding: 0.85rem 1.45rem;
  border-radius: 999px;

  font-weight: 750;
  text-decoration: none !important;
  line-height: 1;

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.nosotros-page-btn iconify-icon {
  font-size: 1.15rem;
}

.nosotros-page-btn-primary {
  color: #ffffff;
  border: 1px solid rgba(0, 183, 255, 0.88);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.20), transparent 65%),
    rgba(0, 10, 24, 0.86);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.10),
    0 0 22px rgba(0, 183, 255, 0.26);
}

.nosotros-page-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(160, 238, 255, 1);

  box-shadow:
    inset 0 0 18px rgba(0, 183, 255, 0.16),
    0 0 32px rgba(0, 183, 255, 0.42);
}

.nosotros-page-btn-primary iconify-icon:last-child {
  transition: transform 0.25s ease;
}

.nosotros-page-btn-primary:hover iconify-icon:last-child {
  transform: translateX(3px);
}

.nosotros-page-btn-whatsapp {
  color: #fff;
  border: 1px solid rgba(37, 211, 102, 0.56);
  background: rgba(37, 211, 102, 0.10);

  box-shadow:
    inset 0 0 14px rgba(37, 211, 102, 0.07),
    0 0 22px rgba(37, 211, 102, 0.14);
}

.nosotros-page-btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.9);
  background: rgba(37, 211, 102, 0.16);

  box-shadow:
    inset 0 0 18px rgba(37, 211, 102, 0.10),
    0 0 34px rgba(37, 211, 102, 0.24);
}

.nosotros-page-hero-pills {
  margin-top: 1.55rem;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;

  color: rgba(235, 249, 255, 0.70);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nosotros-page-hero-pills i {
  width: 1px;
  height: 16px;
  display: block;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 183, 255, 0.86),
    transparent
  );

  box-shadow: 0 0 10px rgba(0, 183, 255, 0.42);
}

/* =========================================
   VISUAL DERECHA / ORBITA DE LOGOS
========================================= */

.nosotros-page-hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}

.nosotros-page-project-orbit {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1 / 1;
}

.nosotros-page-orbit-ring,
.nosotros-page-orbit-ring-2 {
  position: absolute;
  inset: 12%;
  border-radius: 50%;

  border: 1px solid rgba(0, 183, 255, 0.20);

  box-shadow:
    inset 0 0 34px rgba(0, 183, 255, 0.055),
    0 0 34px rgba(0, 183, 255, 0.08);
}

.nosotros-page-orbit-ring::before,
.nosotros-page-orbit-ring::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: inherit;
  border: 1px solid rgba(0, 183, 255, 0.11);
}

.nosotros-page-orbit-ring::after {
  inset: 29%;
  opacity: 0.72;
}

.nosotros-page-orbit-ring-2 {
  inset: 24%;
  opacity: 0.85;
  border-style: dashed;
  animation: nosotrosPageOrbitSpin 26s linear infinite;
}

@keyframes nosotrosPageOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nosotros-page-orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);

  border-radius: 50%;

  display: grid;
  place-items: center;

  background:
    radial-gradient(circle at 50% 35%, rgba(0, 183, 255, 0.18), transparent 66%),
    rgba(0, 10, 24, 0.76);

  border: 1px solid rgba(0, 183, 255, 0.36);

  box-shadow:
    inset 0 0 22px rgba(0, 183, 255, 0.09),
    0 0 34px rgba(0, 183, 255, 0.14);
}

.nosotros-page-orbit-center iconify-icon {
  font-size: 1.45rem;
  color: #00b7ff;
  filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.52));
}

.nosotros-page-orbit-center span {
  margin-top: -1rem;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 249, 255, 0.68);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .nosotros-page-hero {
    min-height: auto;
    padding-top: 6.2rem;
    padding-bottom: 5rem;
  }

  .nosotros-page-hero-bg {
    background-position: center top;

    background-image:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.32) 42%,
        rgba(0, 0, 0, 0.85) 100%
      ),
      url("nosotros-hero.png");
  }

  .nosotros-page-hero-row {
    min-height: auto;
    gap: 2.4rem;
  }

  .nosotros-page-hero-content {
    text-align: center;
  }

  .nosotros-page-hero-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-page-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-page-hero-actions,
  .nosotros-page-hero-pills {
    justify-content: center;
  }

  .nosotros-page-hero-visual {
    min-height: 540px;
  }

  .nosotros-page-project-orbit {
    width: min(100%, 500px);
  }

  .nosotros-page-node-tooltip {
    display: none;
  }
}

@media (max-width: 640px) {
  .nosotros-page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nosotros-page-hero-title {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .nosotros-page-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nosotros-page-btn {
    width: 100%;
  }

  .nosotros-page-hero-pills {
    font-size: 0.75rem;
    gap: 0.55rem;
  }

  .nosotros-page-hero-pills i {
    display: none;
  }

  .nosotros-page-hero-visual {
    min-height: 430px;
  }

  .nosotros-page-project-orbit {
    width: min(100%, 390px);
  }

  .nosotros-page-node-lg {
    width: 72px;
    height: 72px;
  }

  .nosotros-page-node-sm {
    width: 54px;
    height: 54px;
  }

  .nosotros-page-orbit-center {
    width: 82px;
    height: 82px;
  }

  .nosotros-page-orbit-center span {
    display: none;
  }
}

/* =========================================
   HERO nosotros PAGE
========================================= */

.nosotros-page-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 860px;
  padding-top: 5rem;
  padding-bottom: 4rem;
  background: #000;
}

.nosotros-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 18%,
      rgba(0, 4, 14, 0.36) 48%,
      rgba(0, 0, 0, 0.14) 72%,
      rgba(0, 0, 0, 0.58) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.04) 65%,
      rgba(0, 0, 0, 0.92) 100%
    ),
    url("nosotros-hero5.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}

.nosotros-page-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 183, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.16), rgba(0,0,0,0));
  opacity: 0.45;
}

.nosotros-page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
}

.nosotros-page-hero-orb-a {
  width: 340px;
  height: 340px;
  background: rgba(0, 183, 255, 0.14);
  top: 12%;
  left: 8%;
}

.nosotros-page-hero-orb-b {
  width: 380px;
  height: 380px;
  background: rgba(0, 90, 255, 0.12);
  right: 10%;
  bottom: 8%;
}

.nosotros-page-hero-container {
  position: relative;
  z-index: 3;
}

.nosotros-page-hero-row {
  min-height: 520px;
  align-items: center;
}

.nosotros-page-hero-content {
  color: #c0dde4;
  padding-top: 1rem;
}

/* =========================================
   BADGE NUEVA
========================================= */

.nosotros-page-hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;

  color: rgba(223, 248, 255, 0.92);
  background: rgba(0, 10, 24, 0.42);
  border: 1px solid rgba(0, 183, 255, 0.22);

  box-shadow:
    inset 0 0 10px rgba(0, 183, 255, 0.04),
    0 0 18px rgba(0, 183, 255, 0.08);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nosotros-page-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d5ff;
  box-shadow: 0 0 10px rgba(0, 213, 255, 0.75);
  flex: 0 0 7px;
}

.nosotros-page-hero-badge iconify-icon {
  font-size: 0.92rem;
  color: #00bfff;
  opacity: 0.9;
}

/* =========================================
   TÍTULO Y TEXTO
========================================= */

.nosotros-page-hero-title {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
  margin: 0 0 1rem 0;

  background: linear-gradient(to right, #ffffff 30%, #b8eeff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nosotros-page-hero-text {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #e0f7fa;
  max-width: 650px;
  margin: 0 0 2.4rem 0;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* =========================================
   BOTONES
========================================= */

.nosotros-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.nosotros-page-btn {
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none !important;
  transition: 0.28s ease;
}

.nosotros-page-btn-primary {
  color: #ffffff;
  border: 1px solid rgba(0, 183, 255, 0.88);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.20), transparent 65%),
    rgba(0, 10, 24, 0.86);
  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.1),
    0 0 22px rgba(0, 183, 255, 0.26);
}

.nosotros-page-btn-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(160, 238, 255, 1);
  box-shadow:
    inset 0 0 18px rgba(0, 183, 255, 0.16),
    0 0 32px rgba(0, 183, 255, 0.42);
}

.nosotros-page-btn-primary iconify-icon {
  font-size: 1.15rem;
}

.nosotros-page-btn-primary iconify-icon:last-child {
  transition: transform 0.25s ease;
}

.nosotros-page-btn-primary:hover iconify-icon:last-child {
  transform: translateX(3px);
}

.nosotros-page-btn-whatsapp {
  color: #fff;
  border: 1px solid rgba(37, 211, 102, 0.56);
  background: rgba(37, 211, 102, 0.10);
  box-shadow:
    inset 0 0 14px rgba(37, 211, 102, 0.07),
    0 0 22px rgba(37, 211, 102, 0.14);
}

.nosotros-page-btn-whatsapp:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.9);
  background: rgba(37, 211, 102, 0.16);
  box-shadow:
    inset 0 0 18px rgba(37, 211, 102, 0.10),
    0 0 34px rgba(37, 211, 102, 0.24);
}

/* =========================================
   PILLS
========================================= */

.nosotros-page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}

.nosotros-page-hero-pills span {
  color: #d4f6ff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nosotros-page-hero-pills i {
  width: 1px;
  height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(0,183,255,0.75), transparent);
  display: block;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
  .nosotros-page-hero {
    min-height: auto;
    padding-top: 6.2rem;
    padding-bottom: 3.8rem;
  }

  .nosotros-page-hero-content {
    text-align: center;
    padding-top: 1.5rem;
  }

  .nosotros-page-hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-page-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-page-hero-actions {
    justify-content: center;
  }

  .nosotros-page-hero-pills {
    justify-content: center;
  }

  .nosotros-page-hero-logos-wrap {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .nosotros-page-hero-title {
    font-size: clamp(2.3rem, 12vw, 3.5rem);
  }

  .nosotros-page-btn {
    width: 100%;
  }

}


/* =========================================
   LOGO IST DERECHO + ANIMACIÓN SCROLL
   Se agrega sobre el hero existente
========================================= */

.nosotros-page-hero {
  min-height: max(1700px, 350vh);
}

.nosotros-page-hero-container {
  position: relative;
  z-index: 3;
  min-height: 720px;

  --nos-logo-keep-y: 0px;
  --nos-logo-x: 24vw;
  --nos-logo-y: 0vh;
  --nos-logo-scale: 1;

  --nos-reveal-opacity: 0;
  --nos-reveal-y: 24px;

  /* mueve el grid/brillo final completo hacia arriba */
  --nos-final-scene-y: -28vh;
}

.nosotros-page-hero-row {
  position: relative;
  z-index: 8;
}

.nosotros-page-hero-content {
  position: relative;
  z-index: 9;
}

/* Capa visual */
.nosotros-page-logo-stage {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Logo IST */
.nosotros-page-logo-hero-wrap {
  position: absolute;
  left: 50%;
  top: 35%;

  width: clamp(240px, 25vw, 380px);
  aspect-ratio: 1 / 1;

  display: grid;
  place-items: center;

  transform:
    translate(
      calc(-50% + var(--nos-logo-x)),
      calc(-50% + var(--nos-logo-keep-y) + var(--nos-logo-y))
    )
    scale(var(--nos-logo-scale));

  will-change: transform;
}

.nosotros-page-logo-hero-glow {
  position: absolute;
  inset: -24%;

  border-radius: 50%;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.30) 0%, rgba(0, 183, 255, 0.12) 34%, transparent 68%);

  filter: blur(24px);
  opacity: 0.92;

  animation: nosotrosLogoPulse 4.8s ease-in-out infinite;
}

.nosotros-page-logo-hero-glow::before {
  content: "";
  position: absolute;
  inset: 24%;
  border-radius: inherit;

  border: 1px solid rgba(0, 183, 255, 0.28);

  box-shadow:
    inset 0 0 28px rgba(0, 183, 255, 0.10),
    0 0 34px rgba(0, 183, 255, 0.18);
}

.nosotros-page-logo-hero-img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;

  filter:
    drop-shadow(0 0 12px rgba(0, 183, 255, 0.72))
    drop-shadow(0 0 34px rgba(0, 110, 255, 0.36))
    drop-shadow(0 0 70px rgba(0, 183, 255, 0.14));
}

@keyframes nosotrosLogoPulse {
  0%, 100% {
    opacity: 0.82;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

/* Texto superior que aparece */
.nosotros-page-scroll-title {
  position: absolute;
  left: 50%;
  top: 2vh;

  width: min(92vw, 900px);

  transform:
    translateX(-50%)
    translateY(calc(var(--nos-logo-keep-y) + var(--nos-reveal-y)));

  opacity: var(--nos-reveal-opacity);

  text-align: center;

  font-family: 'Geist', sans-serif;
  font-size: clamp(1.75rem, 3vw, 3.8rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #d8f7ff 48%, #83b1bd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 28px rgba(0, 183, 255, 0.14),
    0 0 54px rgba(0, 110, 255, 0.12);

  will-change: opacity, transform;
}

/* Frase izquierda nostálgica */
.nosotros-page-scroll-past {
  position: absolute;
  left: 7%;
  top: 43vh;

  max-width: 290px;

  transform: translateY(calc(var(--nos-logo-keep-y) + var(--nos-reveal-y)));
  opacity: calc(var(--nos-reveal-opacity) * 0.78);

  color: rgba(220, 238, 245, 0.46);
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  line-height: 1.4;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;

  text-shadow: 0 0 18px rgba(0, 183, 255, 0.08);

  will-change: opacity, transform;
}

/* Frase derecha actual */
.nosotros-page-scroll-now {
  position: absolute;
  right: 7%;
  top: 43vh;

  max-width: 320px;

  transform: translateY(calc(var(--nos-logo-keep-y) + var(--nos-reveal-y)));
  opacity: var(--nos-reveal-opacity);

  color: rgba(245, 253, 255, 0.94);
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-align: right;

  text-shadow:
    0 0 18px rgba(0, 183, 255, 0.18),
    0 0 42px rgba(0, 110, 255, 0.12);

  will-change: opacity, transform;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nosotros-page-hero {
    min-height: auto;
  }

  .nosotros-page-hero-container {
    min-height: auto;

    --nos-logo-keep-y: 0px !important;
    --nos-logo-x: 0vw !important;
    --nos-logo-y: 0vh !important;
    --nos-logo-scale: 1 !important;
    --nos-reveal-opacity: 1 !important;
    --nos-reveal-y: 0px !important;
  }

  .nosotros-page-logo-stage {
    position: relative;
    inset: auto;

    min-height: 470px;
    margin-top: 2.5rem;

    display: grid;
    place-items: center;
  }

  .nosotros-page-logo-hero-wrap {
    position: absolute;
    left: 50%;
    top: 52%;

    width: min(68vw, 330px);

    transform: translate(-50%, -50%) scale(1) !important;
  }

  .nosotros-page-scroll-title {
    position: absolute;
    left: 50%;
    top: 0;

    transform: translateX(-50%) !important;

    width: min(92vw, 680px);
    font-size: clamp(1.45rem, 5vw, 2.3rem);
  }

  .nosotros-page-scroll-past,
  .nosotros-page-scroll-now {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;

    width: min(92vw, 420px);
    max-width: 420px;

    transform: translateX(-50%) !important;
    text-align: center;
  }

  .nosotros-page-scroll-past {
    bottom: 3.4rem;
  }

  .nosotros-page-scroll-now {
    bottom: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .nosotros-page-logo-stage {
    min-height: 410px;
  }

  .nosotros-page-logo-hero-wrap {
    width: min(72vw, 280px);
  }

  .nosotros-page-scroll-title {
    font-size: clamp(1.25rem, 7vw, 1.9rem);
  }

  .nosotros-page-scroll-past,
  .nosotros-page-scroll-now {
    font-size: 0.95rem;
  }
}

/* =========================================
   NOSOTROS HERO - ESCENA FINAL PREMIUM
   Agregar al final del CSS
========================================= */

.nosotros-page-hero-container {
  --nos-final-scene-opacity: 0;
}

/* =========================================
   ESCENA FINAL - GRID TECNOLÓGICO PREMIUM
   Sigue al logo durante el scroll
========================================= */

.nosotros-page-logo-stage::before {
  content: "";
  position: absolute;

  left: 50%;
  top: 0;

  width: 100vw;
  height: 120vh;

  z-index: 0;
  pointer-events: none;

  opacity: var(--nos-final-scene-opacity);

  transform: translate3d(
  -50%,
  calc(var(--nos-logo-keep-y) + var(--nos-final-scene-y)),
  0
);

  background:
    /* Fade superior e inferior para conectar con negro */
    linear-gradient(
      180deg,
      #000000 0%,
      rgba(0, 0, 0, 0.92) 8%,
      rgba(0, 0, 0, 0.42) 22%,
      rgba(0, 0, 0, 0.08) 38%,
      rgba(0, 0, 0, 0.06) 62%,
      rgba(0, 0, 0, 0.42) 82%,
      #000000 100%
    ),

    /* Glow central detrás del logo */
    radial-gradient(
      circle at 50% 46%,
      rgba(0, 183, 255, 0.18) 0%,
      rgba(0, 110, 255, 0.10) 28%,
      transparent 54%
    ),

    /* Bruma inferior azul */
    radial-gradient(
      ellipse at 50% 72%,
      rgba(0, 183, 255, 0.10) 0%,
      rgba(0, 90, 255, 0.055) 34%,
      transparent 66%
    ),

    /* Grid principal */
    linear-gradient(
      rgba(0, 183, 255, 0.052) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(0, 183, 255, 0.052) 1px,
      transparent 1px
    ),

    /* Nodos sutiles */
    radial-gradient(
      circle,
      rgba(0, 183, 255, 0.16) 1px,
      transparent 1.7px
    );

  background-size:
    auto,
    auto,
    auto,
    54px 54px,
    54px 54px,
    54px 54px;

  background-position:
    center,
    center,
    center,
    center,
    center,
    center;

  mask-image: radial-gradient(
    ellipse at 50% 52%,
    black 0%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.42) 68%,
    transparent 92%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at 50% 52%,
    black 0%,
    rgba(0, 0, 0, 0.88) 42%,
    rgba(0, 0, 0, 0.42) 68%,
    transparent 92%
  );

  will-change: opacity, transform;
}



/* Asegura que el contenido quede arriba del grid */
.nosotros-page-scroll-title,
.nosotros-page-scroll-past,
.nosotros-page-scroll-now,
.nosotros-page-logo-hero-wrap {
  z-index: 3;
}

/* Movimiento más estable para el logo */
.nosotros-page-logo-hero-wrap {
  transform:
    translate3d(
      calc(-50% + var(--nos-logo-x)),
      calc(-50% + var(--nos-logo-keep-y) + var(--nos-logo-y)),
      0
    )
    scale(var(--nos-logo-scale));

  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Glow un poco más premium, no exagerado */
.nosotros-page-logo-hero-glow {
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.30) 0%, rgba(0, 183, 255, 0.13) 34%, transparent 67%),
    radial-gradient(circle at center, rgba(0, 110, 255, 0.15) 0%, transparent 52%);
}

/* Título final más fino */
.nosotros-page-scroll-title {
  text-shadow:
    0 0 18px rgba(0, 183, 255, 0.14),
    0 0 42px rgba(0, 110, 255, 0.10);
}

/* Rayita premium debajo del título */
.nosotros-page-scroll-title::after {
  content: "";
  display: block;
  width: min(320px, 44vw);
  height: 1px;
  margin: 0.8rem auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 183, 255, 0.62),
    transparent
  );

  box-shadow: 0 0 16px rgba(0, 183, 255, 0.26);
}

/* Chips laterales */
.nosotros-page-scroll-past,
.nosotros-page-scroll-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: none;

  padding: 0.72rem 1rem;
  border-radius: 999px;

  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);

  white-space: nowrap;
}

/* Chip izquierdo: pasado / más nostálgico */
.nosotros-page-scroll-past {
  color: rgba(225, 240, 246, 0.58);
  font-style: italic;
  font-weight: 700;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.055), transparent 70%),
    rgba(0, 10, 24, 0.38);

  border: 1px solid rgba(180, 230, 255, 0.10);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.035),
    0 0 22px rgba(0, 183, 255, 0.045);
}

/* Chip derecho: frase principal */
.nosotros-page-scroll-now {
  color: rgba(248, 253, 255, 0.96);
  font-weight: 700;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.13), transparent 70%),
    rgba(0, 12, 28, 0.70);

  border: 1px solid rgba(0, 183, 255, 0.34);

  box-shadow:
    inset 0 0 16px rgba(0, 183, 255, 0.07),
    0 0 24px rgba(0, 183, 255, 0.14);
}

/* Puntito decorativo en chip actual */
.nosotros-page-scroll-now::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 50%;

  background: #00d5ff;
  box-shadow:
    0 0 10px rgba(0, 213, 255, 0.84),
    0 0 20px rgba(0, 183, 255, 0.34);
}

/* Responsive: mantener limpio */
@media (max-width: 991.98px) {
  .nosotros-page-logo-stage::before,
  .nosotros-page-logo-stage::after {
    display: none;
  }

  .nosotros-page-scroll-past,
  .nosotros-page-scroll-now {
    white-space: normal;
  }
}

/* =========================================
   SEGUNDO CAPÍTULO IST V2
========================================= */

.nosotros-chapter-v2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(6rem, 9vw, 8rem) 1rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 183, 255, 0.075), transparent 32%),
    linear-gradient(180deg, #000 0%, #020711 48%, #000 100%);

  color: #ffffff;
}

/* Conexión negra arriba y abajo */
.nosotros-chapter-v2::before,
.nosotros-chapter-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 4;
  pointer-events: none;
}

.nosotros-chapter-v2::before {
  top: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 100%);
}

.nosotros-chapter-v2::after {
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 100%);
}

.nosotros-chapter-v2-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.034) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 183, 255, 0.11) 1px, transparent 1.5px);

  background-size: 56px 56px, 56px 56px, 56px 56px;

  mask-image: radial-gradient(
    circle at 50% 48%,
    black 0%,
    rgba(0, 0, 0, 0.72) 42%,
    transparent 84%
  );

  opacity: 0.7;
}

.nosotros-chapter-v2-orb {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
}

.nosotros-chapter-v2-orb-a {
  width: 420px;
  height: 420px;
  left: -170px;
  top: 28%;
  background: rgba(0, 74, 255, 0.18);
}

.nosotros-chapter-v2-orb-b {
  width: 460px;
  height: 460px;
  right: -210px;
  top: 38%;
  background: rgba(0, 183, 255, 0.12);
}

.nosotros-chapter-v2-container {
  position: relative;
  z-index: 5;
}

.nosotros-chapter-v2-header {
  max-width: 840px;
  margin: 0 auto clamp(3rem, 5vw, 4.4rem);
  text-align: center;
}

.nosotros-chapter-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.62rem 1.1rem;
  border-radius: 999px;

  color: rgba(223, 248, 255, 0.92);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.10), transparent 70%),
    rgba(0, 10, 24, 0.58);

  border: 1px solid rgba(0, 183, 255, 0.28);

  box-shadow:
    inset 0 0 12px rgba(0, 183, 255, 0.045),
    0 0 18px rgba(0, 183, 255, 0.08);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nosotros-chapter-v2-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #00d5ff;
  box-shadow:
    0 0 10px rgba(0, 213, 255, 0.85),
    0 0 20px rgba(0, 183, 255, 0.32);
}

.nosotros-chapter-v2-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.5));
}

.nosotros-chapter-v2-title {
  margin: 1.15rem auto 0;

  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #e6fbff 48%, #8acae7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 26px rgba(0, 183, 255, 0.12),
    0 0 56px rgba(0, 110, 255, 0.10);
}

.nosotros-chapter-v2-text {
  max-width: 760px;
  margin: 1.25rem auto 0;

  color: rgba(224, 247, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
}

/* =========================================
   VIDEO AREA
========================================= */

.nosotros-chapter-v2-video-area {
  position: relative;
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.nosotros-chapter-v2-video-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  width: min(100%, 920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;

  border-radius: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(0, 183, 255, 0.28);

  background:
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.10), transparent 42%),
    linear-gradient(145deg, rgba(2, 18, 36, 0.72), rgba(0, 7, 16, 0.94));

  box-shadow:
    inset 0 0 34px rgba(0, 183, 255, 0.055),
    0 28px 70px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(0, 183, 255, 0.12);
}

.nosotros-chapter-v2-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.035) 1px, transparent 1px);

  background-size: 38px 38px;

  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  opacity: 0.72;
}

.nosotros-chapter-v2-video-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  z-index: 2;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 245, 255, 0.75),
    transparent
  );

  box-shadow: 0 0 18px rgba(0, 183, 255, 0.38);
}

.nosotros-chapter-v2-video-glow {
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.14), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(0, 90, 255, 0.13), transparent 45%);

  filter: blur(30px);
}

.nosotros-chapter-v2-video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 2rem;
}

.nosotros-chapter-v2-play {
  width: clamp(76px, 9vw, 104px);
  height: clamp(76px, 9vw, 104px);
  margin-bottom: 1rem;

  display: grid;
  place-items: center;

  border-radius: 50%;
  border: 1px solid rgba(0, 183, 255, 0.46);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.18), transparent 68%),
    rgba(0, 12, 28, 0.72);

  box-shadow:
    inset 0 0 24px rgba(0, 183, 255, 0.08),
    0 0 30px rgba(0, 183, 255, 0.20);
}

.nosotros-chapter-v2-play iconify-icon {
  margin-left: 0.25rem;
  color: #eafcff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.58));
}

.nosotros-chapter-v2-video-placeholder span {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.nosotros-chapter-v2-video-placeholder p {
  margin: 0.5rem 0 0;
  color: rgba(220, 238, 245, 0.70);
  font-size: clamp(0.92rem, 1.3vw, 1rem);
}

/* Video real */
.nosotros-chapter-v2-video {
  position: relative;
  z-index: 4;

  width: 100%;
  height: 100%;
  display: block;

  border: 0;
  object-fit: cover;
}

/* =========================================
   CHIPS FLOTANTES
========================================= */

.nosotros-chapter-v2-chip {
  position: absolute;
  z-index: 8;

  display: inline-flex;
  align-items: center;
  gap: 0.52rem;

  min-height: 40px;
  padding: 0.62rem 0.95rem;

  border-radius: 999px;
  border: 1px solid rgba(0, 183, 255, 0.30);

  color: rgba(235, 249, 255, 0.92);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.10), transparent 70%),
    rgba(0, 10, 24, 0.78);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.055),
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(0, 183, 255, 0.10);

  backdrop-filter: blur(12px) saturate(145%);
  -webkit-backdrop-filter: blur(12px) saturate(145%);

  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;

  animation: nosotrosChapterFloatA 5.8s ease-in-out infinite;
}

.nosotros-chapter-v2-chip iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.54));
}

/* Posiciones desktop */
.chapter-chip-rustdesk {
  left: -4%;
  top: 22%;
}

.chapter-chip-anydesk {
  right: 0%;
  top: 28%;
  animation-name: nosotrosChapterFloatB;
}

.chapter-chip-windows {
  left: 11%;
  top: -2%;
  animation-delay: -0.8s;
}

.chapter-chip-mac {
  right: 14%;
  top: 1%;
  animation-name: nosotrosChapterFloatB;
  animation-delay: -1.1s;
}

.chapter-chip-tech {
  left: -5%;
  bottom: 26%;
  animation-delay: -1.6s;
}

.chapter-chip-trust {
  right: -4%;
  bottom: 28%;
  animation-name: nosotrosChapterFloatB;
  animation-delay: -1.8s;
}

.chapter-chip-solutions {
  left: 16%;
  bottom: -2%;
  animation-delay: -2.2s;
}

.chapter-chip-transform {
  right: 3%;
  bottom: 0%;
  animation-name: nosotrosChapterFloatB;
  animation-delay: -2.5s;
}

.chapter-chip-innovate {
  left: 60%;
  top: -2%;
  transform: translateX(-50%);
  animation-delay: -1.4s;
}

/* Colores específicos */
.chapter-chip-anydesk iconify-icon {
  color: #ff4d4d;
  filter: drop-shadow(0 0 8px rgba(255, 77, 77, 0.50));
}

.chapter-chip-windows iconify-icon {
  color: #69d9ff;
}

.chapter-chip-mac iconify-icon {
  color: #f1f7ff;
}

.chapter-chip-trust iconify-icon {
  color: #00ff99;
  filter: drop-shadow(0 0 8px rgba(0, 255, 153, 0.42));
}

.chapter-chip-transform iconify-icon,
.chapter-chip-innovate iconify-icon {
  color: #9eefff;
}

/* Animación */
@keyframes nosotrosChapterFloatA {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes nosotrosChapterFloatB {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 8px;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
  .nosotros-chapter-v2 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .nosotros-chapter-v2-video-area {
    padding: 0;
  }

  .nosotros-chapter-v2-video-card {
    margin-top: 1.6rem;
  }

  .nosotros-chapter-v2-chip {
    position: relative;
    inset: auto !important;
    transform: none !important;
    animation: none;

    justify-content: center;
  }

  .nosotros-chapter-v2-video-area {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .nosotros-chapter-v2-video-card {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 767.98px) {
  .nosotros-chapter-v2-video-area {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nosotros-chapter-v2-chip {
    font-size: 0.78rem;
    padding: 0.58rem 0.78rem;
  }
}

@media (max-width: 480px) {
  .nosotros-chapter-v2-video-area {
    grid-template-columns: 1fr;
  }

  .nosotros-chapter-v2-video-card {
    aspect-ratio: 16 / 10;
  }
}

/* =========================================
   CORE / MANIFIESTO IST V2
========================================= */

.nosotros-core-v2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(6rem, 8vw, 8.5rem) 1rem;

  background:
    linear-gradient(180deg, #000000 0%, #020711 34%, #030914 58%, #000000 100%);

  color: #ffffff;
}

/* Fade superior/inferior para continuidad */
.nosotros-core-v2::before,
.nosotros-core-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  height: 160px;
  z-index: 6;
  pointer-events: none;
}

.nosotros-core-v2::before {
  top: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.90) 36%,
    transparent 100%
  );
}

.nosotros-core-v2::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    #000000 0%,
    rgba(0, 0, 0, 0.90) 36%,
    transparent 100%
  );
}

/* Grid sutil, sin tocar agresivamente bordes */
.nosotros-core-v2-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 183, 255, 0.085) 1px, transparent 1.6px);

  background-size:
    58px 58px,
    58px 58px,
    58px 58px;

  mask-image: radial-gradient(
    ellipse at 50% 50%,
    black 0%,
    rgba(0, 0, 0, 0.82) 36%,
    rgba(0, 0, 0, 0.40) 65%,
    transparent 88%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at 50% 50%,
    black 0%,
    rgba(0, 0, 0, 0.82) 36%,
    rgba(0, 0, 0, 0.40) 65%,
    transparent 88%
  );

  opacity: 0.7;
}

/* Glow central controlado */
.nosotros-core-v2-bg-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 1;

  width: min(980px, 86vw);
  height: min(680px, 62vw);

  transform: translate(-50%, -50%);

  pointer-events: none;
  border-radius: 999px;

  background:
    radial-gradient(circle at 36% 46%, rgba(0, 183, 255, 0.13), transparent 46%),
    radial-gradient(circle at 68% 50%, rgba(0, 90, 255, 0.12), transparent 52%);

  filter: blur(36px);
  opacity: 0.86;
}

/* Contenido */
.nosotros-core-v2-container {
  position: relative;
  z-index: 8;
}

.nosotros-core-v2-header {
  max-width: 860px;
  margin: 0 auto clamp(3rem, 5vw, 4.2rem);
  text-align: center;
}

.nosotros-core-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.62rem 1.1rem;
  border-radius: 999px;

  color: rgba(223, 248, 255, 0.94);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.11), transparent 68%),
    rgba(0, 10, 24, 0.58);

  border: 1px solid rgba(0, 183, 255, 0.30);

  box-shadow:
    inset 0 0 12px rgba(0, 183, 255, 0.05),
    0 0 20px rgba(0, 183, 255, 0.10);

  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nosotros-core-v2-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 999px;
  background: #00d5ff;

  box-shadow:
    0 0 10px rgba(0, 213, 255, 0.86),
    0 0 22px rgba(0, 183, 255, 0.36);
}

.nosotros-core-v2-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-core-v2-title {
  max-width: 820px;
  margin: 1.25rem auto 0;

  font-family: 'Geist', sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #e6fbff 45%, #86e8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 22px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(0, 110, 255, 0.10);
}

.nosotros-core-v2-lead {
  max-width: 720px;
  margin: 1.25rem auto 0;

  color: rgba(224, 247, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

/* =========================================
   LAYOUT PRINCIPAL
========================================= */

.nosotros-core-v2-layout {
  width: min(100%, 1200px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}

/* =========================================
   IMAGEN MANIFESTO
========================================= */

.nosotros-core-v2-manifesto-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.nosotros-core-v2-manifesto-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  width: fit-content;
  max-width: 100%;

  border-radius: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(0, 183, 255, 0.26);

  background:
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.10), transparent 48%),
    rgba(0, 10, 24, 0.58);

  box-shadow:
    inset 0 0 28px rgba(0, 183, 255, 0.045),
    0 26px 78px rgba(0, 0, 0, 0.46),
    0 0 54px rgba(0, 183, 255, 0.12);

  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.nosotros-core-v2-manifesto-card::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  z-index: 3;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 245, 255, 0.72),
    transparent
  );

  box-shadow: 0 0 18px rgba(0, 183, 255, 0.34);
}

.nosotros-core-v2-manifesto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 20%, transparent 80%, rgba(0,183,255,0.035)),
    radial-gradient(circle at 45% 0%, rgba(255,255,255,0.06), transparent 26%);

  opacity: 0.45;
}

.nosotros-core-v2-manifesto-light {
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 34% 24%, rgba(0, 183, 255, 0.16), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(0, 90, 255, 0.18), transparent 48%);

  filter: blur(30px);
  opacity: 0.75;
}

.nosotros-core-v2-manifesto-img {
  position: relative;
  z-index: 1;

  display: block;

  width: auto;
  height: min(120vh, 860px);
  max-width: 100%;

  object-fit: contain;
}

/* =========================================
   CONTENIDO LATERAL
========================================= */

.nosotros-core-v2-content {
  position: relative;
}

.nosotros-core-v2-side {
  display: grid;
  gap: 1rem;
}

.nosotros-core-v2-mini-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;

  padding: 1.25rem;
  border-radius: 24px;

  background:
    radial-gradient(circle at 20% 0%, rgba(0, 183, 255, 0.10), transparent 52%),
    rgba(0, 10, 24, 0.68);

  border: 1px solid rgba(0, 183, 255, 0.18);

  box-shadow:
    inset 0 0 20px rgba(0, 183, 255, 0.035),
    0 18px 38px rgba(0, 0, 0, 0.28);

  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.nosotros-core-v2-mini-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 183, 255, 0.42),
    transparent
  );

  opacity: 0.65;
}

.nosotros-core-v2-mini-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 16px;
  border: 1px solid rgba(0, 183, 255, 0.30);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.17), transparent 68%),
    rgba(0, 12, 28, 0.72);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.06),
    0 0 20px rgba(0, 183, 255, 0.10);
}

.nosotros-core-v2-mini-icon iconify-icon {
  color: #00b7ff;
  font-size: 1.22rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.58));
}

.nosotros-core-v2-mini-card h3 {
  margin: 0 0 0.48rem;

  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.nosotros-core-v2-mini-card p {
  margin: 0;

  color: rgba(220, 238, 245, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
}

/* Caminos */
.nosotros-core-v2-paths {
  margin: clamp(1.5rem, 3vw, 2.2rem) auto 0;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
}

.nosotros-core-v2-path {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(0, 183, 255, 0.20);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.09), transparent 68%),
    rgba(0, 10, 24, 0.58);

  box-shadow:
    inset 0 0 16px rgba(0, 183, 255, 0.04),
    0 0 28px rgba(0, 183, 255, 0.07);

  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
}

.nosotros-core-v2-path span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  color: rgba(236, 250, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nosotros-core-v2-path iconify-icon {
  color: #00b7ff;
  font-size: 1.06rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.48));
}

.nosotros-core-v2-path-line {
  width: clamp(34px, 5vw, 64px);
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 183, 255, 0.70),
    transparent
  );

  box-shadow: 0 0 16px rgba(0, 183, 255, 0.28);
}

/* Quote final */
.nosotros-core-v2-quote {
  margin: clamp(1.5rem, 3vw, 2.2rem) auto 0;

  padding: clamp(1.15rem, 2vw, 1.55rem);
  border-radius: 26px;

  text-align: left;

  background:
    linear-gradient(90deg, rgba(0, 183, 255, 0.05), transparent),
    rgba(0, 10, 24, 0.46);

  border: 1px solid rgba(0, 183, 255, 0.18);

  box-shadow:
    inset 0 0 22px rgba(0, 183, 255, 0.035),
    0 0 34px rgba(0, 183, 255, 0.07);
}

.nosotros-core-v2-quote span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: rgba(158, 239, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.nosotros-core-v2-quote span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00d5ff;
  box-shadow: 0 0 12px rgba(0, 213, 255, 0.78);
}

.nosotros-core-v2-quote strong {
  display: block;

  color: #ffffff;
  font-size: clamp(1.1rem, 1.75vw, 1.45rem);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -0.045em;

  background: linear-gradient(90deg, #ffffff, #9eefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
   REVEAL JS
========================================= */

.nosotros-core-v2-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.nosotros-core-v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nosotros-core-v2-mini-card:nth-child(2) {
  transition-delay: 0.08s;
}

.nosotros-core-v2-mini-card:nth-child(3) {
  transition-delay: 0.16s;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {
  .nosotros-core-v2-layout {
    grid-template-columns: minmax(360px, 0.92fr) minmax(320px, 0.78fr);
  }

  .nosotros-core-v2-manifesto-img {
    height: min(84vh, 760px);
  }
}

@media (max-width: 991.98px) {
  .nosotros-core-v2 {
    padding-top: 5.4rem;
    padding-bottom: 5.6rem;
  }

  .nosotros-core-v2-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .nosotros-core-v2-manifesto-wrap {
    order: 1;
  }

  .nosotros-core-v2-content {
    order: 2;
  }

  .nosotros-core-v2-manifesto-card {
    width: min(100%, 680px);
  }

  .nosotros-core-v2-manifesto-img {
    width: 100%;
    height: auto;
  }

  .nosotros-core-v2-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nosotros-core-v2-mini-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nosotros-core-v2-mini-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .nosotros-core-v2-quote {
    text-align: center;
  }

  .nosotros-core-v2-quote span {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .nosotros-core-v2 {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .nosotros-core-v2-header {
    margin-bottom: 2.4rem;
  }

  .nosotros-core-v2-title {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .nosotros-core-v2-lead {
    font-size: 0.98rem;
  }

  .nosotros-core-v2-manifesto-card {
    border-radius: 24px;
  }

  .nosotros-core-v2-side {
    grid-template-columns: 1fr;
  }

  .nosotros-core-v2-paths {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .nosotros-core-v2-path-line {
    width: 1px;
    height: 36px;
    margin: 0 auto;

    background: linear-gradient(
      180deg,
      transparent,
      rgba(0, 183, 255, 0.70),
      transparent
    );
  }
}

@media (max-width: 480px) {
  .nosotros-core-v2 {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .nosotros-core-v2-manifesto-card {
    border-radius: 20px;
  }

  .nosotros-core-v2-mini-card,
  .nosotros-core-v2-quote {
    border-radius: 22px;
  }
}

/* =========================================
   MISIÓN Y VISIÓN IST V2
========================================= */

.nosotros-mv-v2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(6rem, 9vw, 9rem) 1rem;

  background:
    linear-gradient(180deg, #000000 0%, #020711 38%, #030914 62%, #000000 100%);

  color: #ffffff;
}

/* Continuidad negra superior/inferior */
.nosotros-mv-v2::before,
.nosotros-mv-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 6;
  pointer-events: none;
}

.nosotros-mv-v2::before {
  top: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.9) 38%,
    transparent 100%
  );
}

.nosotros-mv-v2::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    #000000 0%,
    rgba(0, 0, 0, 0.9) 38%,
    transparent 100%
  );
}

/* Grid controlado */
.nosotros-mv-v2-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 183, 255, 0.09) 1px, transparent 1.6px);

  background-size:
    58px 58px,
    58px 58px,
    58px 58px;

  mask-image: radial-gradient(
    ellipse at 50% 52%,
    black 0%,
    rgba(0, 0, 0, 0.82) 38%,
    rgba(0, 0, 0, 0.40) 66%,
    transparent 88%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at 50% 52%,
    black 0%,
    rgba(0, 0, 0, 0.82) 38%,
    rgba(0, 0, 0, 0.40) 66%,
    transparent 88%
  );

  opacity: 0.7;
}

/* Glow central sin tocar bordes */
.nosotros-mv-v2-glow {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 1;

  width: min(980px, 86vw);
  height: min(620px, 58vw);

  transform: translate(-50%, -50%);
  pointer-events: none;

  border-radius: 999px;

  background:
    radial-gradient(circle at 32% 48%, rgba(0, 183, 255, 0.13), transparent 46%),
    radial-gradient(circle at 68% 48%, rgba(0, 90, 255, 0.13), transparent 48%),
    radial-gradient(circle at 50% 65%, rgba(0, 213, 255, 0.08), transparent 54%);

  filter: blur(38px);
  opacity: 0.86;
}

.nosotros-mv-v2-container {
  position: relative;
  z-index: 8;
}

/* Header */
.nosotros-mv-v2-header {
  max-width: 850px;
  margin: 0 auto clamp(3.2rem, 5vw, 4.6rem);
  text-align: center;
}

.nosotros-mv-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.62rem 1.1rem;
  border-radius: 999px;

  color: rgba(223, 248, 255, 0.94);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.11), transparent 68%),
    rgba(0, 10, 24, 0.58);

  border: 1px solid rgba(0, 183, 255, 0.30);

  box-shadow:
    inset 0 0 12px rgba(0, 183, 255, 0.05),
    0 0 20px rgba(0, 183, 255, 0.10);

  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nosotros-mv-v2-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: #00d5ff;

  box-shadow:
    0 0 10px rgba(0, 213, 255, 0.86),
    0 0 22px rgba(0, 183, 255, 0.36);
}

.nosotros-mv-v2-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-mv-v2-title {
  max-width: 850px;
  margin: 1.25rem auto 0;

  font-family: 'Geist', sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #e6fbff 45%, #86e8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 22px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(0, 110, 255, 0.10);
}

.nosotros-mv-v2-lead {
  max-width: 720px;
  margin: 1.2rem auto 0;

  color: rgba(224, 247, 255, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

/* Layout */
.nosotros-mv-v2-layout {
  width: min(100%, 1180px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* Cards */
.nosotros-mv-v2-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 420px;
  padding: clamp(1.4rem, 3vw, 2.3rem);

  border-radius: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(0, 183, 255, 0.22);

  background:
    radial-gradient(circle at 20% 0%, rgba(0, 183, 255, 0.11), transparent 48%),
    linear-gradient(145deg, rgba(4, 22, 42, 0.66), rgba(0, 7, 16, 0.88));

  box-shadow:
    inset 0 0 34px rgba(0, 183, 255, 0.045),
    0 28px 72px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(0, 183, 255, 0.08);

  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.nosotros-mv-v2-card::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  z-index: 3;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 245, 255, 0.70),
    transparent
  );

  box-shadow: 0 0 18px rgba(0, 183, 255, 0.34);
}

.nosotros-mv-v2-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 22%, transparent 78%, rgba(0,183,255,0.035)),
    radial-gradient(circle at 50% 100%, rgba(0, 183, 255, 0.08), transparent 48%);

  opacity: 0.9;
}

.nosotros-mv-v2-card-vision {
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 183, 255, 0.11), transparent 48%),
    linear-gradient(145deg, rgba(3, 18, 36, 0.70), rgba(0, 7, 16, 0.90));
}

.nosotros-mv-v2-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.nosotros-mv-v2-card-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 18px;
  border: 1px solid rgba(0, 183, 255, 0.34);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.18), transparent 68%),
    rgba(0, 12, 28, 0.76);

  box-shadow:
    inset 0 0 16px rgba(0, 183, 255, 0.07),
    0 0 24px rgba(0, 183, 255, 0.12);
}

.nosotros-mv-v2-card-icon iconify-icon {
  color: #00b7ff;
  font-size: 1.35rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.58));
}

.nosotros-mv-v2-card-top > span {
  color: rgba(158, 239, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

.nosotros-mv-v2-card h3 {
  margin: 0 0 1rem;

  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;

  background: linear-gradient(180deg, #ffffff, #bfefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nosotros-mv-v2-card p {
  margin: 0;

  color: rgba(225, 242, 248, 0.76);
  font-size: clamp(1rem, 1.18vw, 1.08rem);
  line-height: 1.78;
  letter-spacing: -0.01em;
}

/* Tags */
.nosotros-mv-v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;

  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.nosotros-mv-v2-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;
  padding: 0.52rem 0.78rem;

  border-radius: 999px;
  border: 1px solid rgba(0, 183, 255, 0.20);

  color: rgba(235, 249, 255, 0.82);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.08), transparent 70%),
    rgba(0, 10, 24, 0.58);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Eje central */
.nosotros-mv-v2-axis {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  align-items: center;

  padding: 0 0.25rem;
}

.nosotros-mv-v2-axis-line {
  width: 1px;
  height: 100%;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 183, 255, 0.55),
    transparent
  );

  box-shadow: 0 0 18px rgba(0, 183, 255, 0.24);
}

.nosotros-mv-v2-axis-core {
  width: 62px;
  height: 62px;
  margin: 0.85rem 0;

  display: grid;
  place-items: center;

  border-radius: 999px;
  border: 1px solid rgba(0, 183, 255, 0.38);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.18), transparent 68%),
    rgba(0, 12, 28, 0.84);

  box-shadow:
    inset 0 0 20px rgba(0, 183, 255, 0.08),
    0 0 28px rgba(0, 183, 255, 0.18);
}

.nosotros-mv-v2-axis-core iconify-icon {
  color: #eafcff;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.65));
}

/* Footer */
.nosotros-mv-v2-footer {
  width: min(100%, 840px);
  margin: clamp(2.6rem, 5vw, 4.2rem) auto 0;

  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 28px;

  text-align: center;

  border: 1px solid rgba(0, 157, 255, 0.28);

  background:
    linear-gradient(
      180deg,
      rgba(3, 15, 32, 0.86),
      rgba(0, 2, 5, 0.849)
    );

  box-shadow:
    inset 0 0 38px rgba(0, 157, 255, 0.045),
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(0, 157, 255, 0.09);
}

.nosotros-mv-v2-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  color: rgba(158, 239, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.nosotros-mv-v2-footer span::before,
.nosotros-mv-v2-footer span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00d5ff;
  box-shadow: 0 0 12px rgba(0, 213, 255, 0.78);
}

.nosotros-mv-v2-footer strong {
  display: block;

  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.24;
  font-weight: 850;
  letter-spacing: -0.045em;

  background: linear-gradient(90deg, #ffffff, #9eefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reveal */
.nosotros-mv-v2-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.82s ease,
    transform 0.82s ease;
}

.nosotros-mv-v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nosotros-mv-v2-card-vision {
  transition-delay: 0.1s;
}

.nosotros-mv-v2-axis {
  transition-delay: 0.05s;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
  .nosotros-mv-v2 {
    padding-top: 5.4rem;
    padding-bottom: 5.6rem;
  }

  .nosotros-mv-v2-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .nosotros-mv-v2-card {
    min-height: auto;
  }

  .nosotros-mv-v2-axis {
    grid-template-rows: auto;
    grid-template-columns: 1fr auto 1fr;
    padding: 0.25rem 0;
  }

  .nosotros-mv-v2-axis-line {
    width: 100%;
    height: 1px;

    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 183, 255, 0.55),
      transparent
    );
  }

  .nosotros-mv-v2-axis-core {
    margin: 0 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .nosotros-mv-v2 {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .nosotros-mv-v2-title {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .nosotros-mv-v2-lead {
    font-size: 0.98rem;
  }

  .nosotros-mv-v2-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .nosotros-mv-v2-card-top {
    align-items: flex-start;
  }

  .nosotros-mv-v2-card-top > span {
    font-size: 0.7rem;
  }

  .nosotros-mv-v2-card h3 {
    font-size: 2rem;
  }

  .nosotros-mv-v2-card p {
    font-size: 0.96rem;
  }

  .nosotros-mv-v2-tags span {
    font-size: 0.72rem;
  }

  .nosotros-mv-v2-axis-core {
    width: 54px;
    height: 54px;
  }
}

/* =========================================
   MISIÓN / VISIÓN - IMAGEN DE FONDO EN CARD
========================================= */

.nosotros-mv-v2-card {
  background:
    linear-gradient(145deg, rgba(2, 12, 26, 0.185), rgba(0, 4, 12, 0.11));
}

/* Capa de imagen */
.nosotros-mv-v2-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  display: block;
  pointer-events: none;

  background-image: var(--mv-card-image);
  background-size: cover;
  background-position: 70% 60%;
  background-repeat: no-repeat;

  opacity: 0.42;
  filter: saturate(115%) contrast(108%);
  transform: scale(1.02);
}

/* Oscurecido premium para legibilidad */
.nosotros-mv-v2-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 7, 18, 0.253) 42%,
      rgba(0, 0, 0, 0.329) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.39) 0%,
      rgba(0, 8, 22, 0.56) 46%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    radial-gradient(
      circle at 50% 18%,
      rgba(0, 68, 255, 0.16),
      transparent 48%
    );
}

/* Para que texto, iconos y tags queden arriba */
.nosotros-mv-v2-card-top,
.nosotros-mv-v2-card h3,
.nosotros-mv-v2-card p,
.nosotros-mv-v2-tags {
  position: relative;
  z-index: 2;
}

/* Velo extra sutil sobre toda la card */
.nosotros-mv-v2-card::after {
  z-index: 1;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.035),
      transparent 24%,
      transparent 76%,
      rgba(0, 183, 255, 0.04)
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(0, 183, 255, 0.08),
      transparent 52%
    );
}

/* Línea superior sigue encima */
.nosotros-mv-v2-card::before {
  z-index: 4;
}

/* Hover premium opcional */
.nosotros-mv-v2-card:hover .nosotros-mv-v2-card-bg {
  opacity: 0.50;
  transform: scale(1.055);
  transition:
    opacity 0.45s ease,
    transform 0.75s ease;
}

.nosotros-mv-v2-card-bg {
  transition:
    opacity 0.45s ease,
    transform 0.75s ease;
}


/* =========================================
   PARALLAX VISUAL FILOSOFÍA IST V2
========================================= */

.nosotros-philo-image-v2 {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: clamp(720px, 105vh, 1080px);

  background: #000;
}

/* Imagen principal */
.nosotros-philo-image-v2-bg {
  position: absolute;
  inset: -10vh 0;
  z-index: 1;

  background-image: url("filosofia-bg.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;

  transform: translate3d(0, var(--philo-img-y, 0px), 0) scale(1.06);
  will-change: transform;

  filter:
    saturate(112%)
    contrast(106%);

  opacity: 0.96;
}

/* Fades para continuidad premium */
.nosotros-philo-image-v2::before,
.nosotros-philo-image-v2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;

  height: 190px;
  z-index: 5;
  pointer-events: none;
}

.nosotros-philo-image-v2::before {
  top: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.295) 30%,
    rgba(0, 0, 0, 0.068) 68%,
    transparent 100%
  );
}

.nosotros-philo-image-v2::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    #000000 0%,
    rgba(0, 0, 0, 0.219) 30%,
    rgba(0, 0, 0, 0.082) 68%,
    transparent 100%
  );
}


/* Grid sutil encima, casi imperceptible */
.nosotros-philo-image-v2-grid {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.018) 1px, transparent 1px);

  background-size: 64px 64px;

  mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    rgba(0, 0, 0, 0.58) 52%,
    transparent 88%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    rgba(0, 0, 0, 0.58) 52%,
    transparent 88%
  );

  opacity: 0.42;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nosotros-philo-image-v2 {
    min-height: 78vh;
  }

  .nosotros-philo-image-v2-bg {
    inset: -6vh 0;
    background-position: center center;
    transform: translate3d(0, var(--philo-img-y, 0px), 0) scale(1.08);
  }
}

@media (max-width: 575.98px) {
  .nosotros-philo-image-v2 {
    min-height: 68vh;
  }

  .nosotros-philo-image-v2-bg {
    background-position: center center;
  }

  .nosotros-philo-image-v2::before,
  .nosotros-philo-image-v2::after {
    height: 130px;
  }
}

/* =========================================
   FILOSOFÍA IST V3
========================================= */

.nosotros-filosofia-v3 {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(5.2rem, 8vw, 7.5rem) 1rem;

  background:
    linear-gradient(180deg, #000000 0%, #020711 42%, #000000 100%);

  color: #ffffff;
}

/* Continuidad negra arriba/abajo */
.nosotros-filosofia-v3::before,
.nosotros-filosofia-v3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 6;
  pointer-events: none;
}

.nosotros-filosofia-v3::before {
  top: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.9) 38%,
    transparent 100%
  );
}

.nosotros-filosofia-v3::after {
  bottom: 0;
  background: linear-gradient(
    0deg,
    #000000 0%,
    rgba(0, 0, 0, 0.9) 38%,
    transparent 100%
  );
}

/* Grid sutil */
.nosotros-filosofia-v3-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle, rgba(0, 183, 255, 0.08) 1px, transparent 1.6px);

  background-size:
    58px 58px,
    58px 58px,
    58px 58px;

  mask-image: radial-gradient(
    ellipse at 50% 48%,
    black 0%,
    rgba(0, 0, 0, 0.78) 38%,
    rgba(0, 0, 0, 0.36) 66%,
    transparent 88%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at 50% 48%,
    black 0%,
    rgba(0, 0, 0, 0.78) 38%,
    rgba(0, 0, 0, 0.36) 66%,
    transparent 88%
  );

  opacity: 0.7;
}

/* Glow central controlado */
.nosotros-filosofia-v3-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;

  width: min(940px, 84vw);
  height: min(540px, 54vw);

  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 999px;

  background:
    radial-gradient(circle at 50% 42%, rgba(0, 183, 255, 0.13), transparent 48%),
    radial-gradient(circle at 50% 62%, rgba(0, 90, 255, 0.10), transparent 54%);

  filter: blur(38px);
  opacity: 0.82;
}

.nosotros-filosofia-v3-container {
  position: relative;
  z-index: 8;
}

/* Header */
.nosotros-filosofia-v3-header {
  max-width: 860px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.nosotros-filosofia-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.62rem 1.1rem;
  border-radius: 999px;

  color: rgba(232, 247, 255, 0.95);
  background:
    radial-gradient(circle at center, rgba(0, 157, 255, 0.12), transparent 68%),
    rgba(1, 10, 24, 0.62);

  border: 1px solid rgba(0, 157, 255, 0.30);

  box-shadow:
    inset 0 0 12px rgba(0, 157, 255, 0.04),
    0 0 18px rgba(0, 157, 255, 0.08);

  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nosotros-filosofia-v3-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 999px;
   background: #00b7ff;
  box-shadow:
    0 0 10px rgba(0, 183, 255, 0.82),
    0 0 20px rgba(0, 157, 255, 0.28);
}

.nosotros-filosofia-v3-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-filosofia-v3-title {
  margin: 1.2rem auto 0;

  font-family: 'Geist', sans-serif;
  font-size: clamp(2.7rem, 4.3vw, 5.4rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.07em;
  text-wrap: balance;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #dff7ff 45%,
    #79dcff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 22px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(0, 110, 255, 0.10);
}

.nosotros-filosofia-v3-lead {
  max-width: 720px;
  margin: 1.15rem auto 0;

  color: rgba(224, 247, 255, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

/* Panel principal */
.nosotros-filosofia-v3-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  width: min(100%, 1120px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(0, 1.1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: center;

  padding: clamp(1.35rem, 3vw, 2.4rem);

  border-radius: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(0, 157, 255, 0.28);

  background:
    linear-gradient(
      145deg,
      rgba(3, 15, 32, 0.86),
      rgba(2, 8, 18, 0.94)
    );

  box-shadow:
    inset 0 0 38px rgba(0, 157, 255, 0.045),
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(0, 157, 255, 0.09);

  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
}

/* Imagen del panel */
.nosotros-filosofia-v3-panel.has-panel-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;

  background-image: var(--filosofia-panel-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.24;
  transform: scale(1.04);
}

/* Overlay oscuro/IST V2 */
.nosotros-filosofia-v3-panel.has-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.959) 0%,
      rgba(2, 12, 28, 0.295) 28%,
      rgba(2, 18, 40, 0.123) 58%,
      rgba(0, 6, 16, 0.774) 100%
    
    );
}

/* Línea superior glow */
.nosotros-filosofia-v3-panel .nosotros-filosofia-v3-panel-topline {
  display: none;
}

.nosotros-filosofia-v3-panel.has-panel-bg .nosotros-filosofia-v3-divider {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(40, 170, 255, 0.42),
    transparent
  );
  box-shadow: 0 0 18px rgba(0, 140, 255, 0.14);
}

.nosotros-filosofia-v3-panel-main {
  position: relative;
  z-index: 2;
}

.nosotros-filosofia-v3-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: rgba(158, 239, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.nosotros-filosofia-v3-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00d5ff;
  box-shadow: 0 0 12px rgba(0, 213, 255, 0.78);
}

.nosotros-filosofia-v3-panel-main h3 {
  margin: 0 0 1rem;

  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.02;
  font-weight: 750;
  letter-spacing: -0.06em;

  background: linear-gradient(180deg, #ffffff, #c8f4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nosotros-filosofia-v3-panel-main p {
  margin: 0;

  color: rgba(225, 242, 248, 0.75);
  font-size: clamp(0.98rem, 1.16vw, 1.05rem);
  line-height: 1.76;
  letter-spacing: -0.01em;
}

/* Separador */
.nosotros-filosofia-v3-divider {
  width: 1px;
  align-self: stretch;

  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 183, 255, 0.42),
    transparent
  );

  box-shadow: 0 0 18px rgba(0, 183, 255, 0.20);
}

/* Dos enfoques dentro de un mismo panel */
.nosotros-filosofia-v3-duo {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 1rem;
}

.nosotros-filosofia-v3-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;

  padding: 1rem;
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(1, 7, 15, 0.911),
      rgba(2, 22, 49, 0.92)
    );

  border: 1px solid rgba(0, 157, 255, 0.20);

  box-shadow:
    inset 0 0 18px rgba(0, 157, 255, 0.035),
    0 0 20px rgba(0, 157, 255, 0.05);
}

.nosotros-filosofia-v3-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 16px;
   border: 1px solid rgba(0, 157, 255, 0.30);

  background:
    radial-gradient(circle at center, rgba(0, 157, 255, 0.16), transparent 68%),
    rgba(2, 12, 28, 0.88);

  box-shadow:
    inset 0 0 14px rgba(0, 157, 255, 0.06),
    0 0 18px rgba(0, 157, 255, 0.10);
}

.nosotros-filosofia-v3-icon iconify-icon {
  color: #00b7ff;
  filter: drop-shadow(0 0 8px rgba(0, 157, 255, 0.52));
  font-size: 1.16rem;
}

.nosotros-filosofia-v3-item h4 {
  margin: 0 0 0.45rem;

  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.nosotros-filosofia-v3-item p {
  margin: 0;

  color: rgba(220, 238, 245, 0.68);
  font-size: 0.9rem;
  line-height: 1.62;
}

/* Cierre */
.nosotros-filosofia-v3-closing {
  width: min(100%, 820px);
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;

  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: 28px;

  text-align: center;

  background:
    linear-gradient(90deg, transparent, rgba(0, 183, 255, 0.06), transparent),
    rgba(0, 10, 24, 0.42);

  border: 1px solid rgba(0, 183, 255, 0.18);

  box-shadow:
    inset 0 0 22px rgba(0, 183, 255, 0.035),
    0 0 34px rgba(0, 183, 255, 0.07);
}

.nosotros-filosofia-v3-closing span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;

  color: rgba(158, 239, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.nosotros-filosofia-v3-closing span::before,
.nosotros-filosofia-v3-closing span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00d5ff;
  box-shadow: 0 0 12px rgba(0, 213, 255, 0.78);
}

.nosotros-filosofia-v3-closing strong {
  display: block;

  color: #ffffff;
  font-size: clamp(1.14rem, 2vw, 1.68rem);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: -0.045em;

  background: linear-gradient(90deg, #ffffff, #9eefff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reveal */
.nosotros-filosofia-v3-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.78s ease,
    transform 0.78s ease;
}

.nosotros-filosofia-v3-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
  .nosotros-filosofia-v3 {
    padding-top: 5rem;
    padding-bottom: 5.4rem;
  }

  .nosotros-filosofia-v3-panel {
    grid-template-columns: 1fr;
  }

  .nosotros-filosofia-v3-divider {
    width: 100%;
    height: 1px;

    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 183, 255, 0.42),
      transparent
    );
  }
}

@media (max-width: 575.98px) {
  .nosotros-filosofia-v3 {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .nosotros-filosofia-v3-title {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .nosotros-filosofia-v3-panel,
  .nosotros-filosofia-v3-closing {
    border-radius: 24px;
  }

  .nosotros-filosofia-v3-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nosotros-filosofia-v3-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================================
   EVOLUCIÓN IST | V1 -> V2
========================================= */

.nosotros-evolucion-ist {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 7.5rem) 0;
  background:
    linear-gradient(180deg, #000 0%, #020913 14%, #03111e 48%, #020b15 84%, #000 100%);
  isolation: isolate;
}

/* Grid y glows */
.nosotros-evolucion-ist-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(0, 183, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.95) 14%, rgba(0,0,0,.95) 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.95) 14%, rgba(0,0,0,.95) 86%, transparent 100%);
}

.nosotros-evolucion-ist-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.28;
}

.nosotros-evolucion-ist-glow-v1 {
  width: 420px;
  height: 420px;
  left: -80px;
  top: 120px;
  background: radial-gradient(circle, rgba(75, 213, 255, 0.40) 0%, rgba(0, 191, 255, 0.16) 42%, transparent 74%);
}

.nosotros-evolucion-ist-glow-v2 {
  width: 480px;
  height: 480px;
  right: -80px;
  bottom: 100px;
  background: radial-gradient(circle, rgba(0, 132, 255, 0.42) 0%, rgba(0, 183, 255, 0.18) 40%, transparent 76%);
}

.nosotros-evolucion-ist-container {
  position: relative;
  z-index: 2;
}

/* Header */
.nosotros-evolucion-ist-header {
  max-width: 880px;
  margin: 0 auto clamp(2.6rem, 4vw, 3.6rem);
  text-align: center;
}

.nosotros-evolucion-ist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 183, 255, 0.26);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.12), transparent 68%),
    rgba(0, 11, 24, 0.72);
  color: rgba(230, 248, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.06),
    0 0 18px rgba(0, 183, 255, 0.08);
}

.nosotros-evolucion-ist-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.75);
}

.nosotros-evolucion-ist-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-evolucion-ist-title {
  margin: 1.15rem 0 1rem;
  color: #f4fbff;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #dff7ff 45%,
    #79dcff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 22px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(0, 110, 255, 0.10);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.nosotros-evolucion-ist-lead {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(220, 238, 245, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

/* Stage */
.nosotros-evolucion-ist-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
  gap: clamp(1.2rem, 2vw, 2rem);
  align-items: stretch;
}

/* Panels */
.nosotros-evolucion-ist-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 2.2vw, 2rem);
  border-radius: 32px;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 22px 42px rgba(0,0,0,0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  text-align: center;
}

.nosotros-evolucion-ist-panel::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  opacity: 0.7;
}

.nosotros-evolucion-ist-panel.is-v1 {
  background:
    linear-gradient(180deg, rgba(83, 219, 255, 0.06), transparent 44%),
    radial-gradient(circle at 18% 18%, rgba(83, 219, 255, 0.15), transparent 36%),
    linear-gradient(135deg, rgba(6, 43, 60, 0.60), rgba(3, 18, 32, 0.90));
  border-color: rgba(101, 220, 255, 0.22);
}

.nosotros-evolucion-ist-panel.is-v2 {
  background:
    linear-gradient(180deg, rgba(0, 153, 255, 0.06), transparent 44%),
    radial-gradient(circle at 82% 20%, rgba(0, 89, 255, 0.16), transparent 34%),
    linear-gradient(155deg, rgba(0, 4, 15, 0.973), rgba(5, 26, 54, 0.62));
  border-color: rgba(0, 183, 255, 0.22);
}

.nosotros-evolucion-ist-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(225, 244, 250, 0.78);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nosotros-evolucion-ist-panel h3 {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.05;
  font-weight: 700;
  text-align: center;
  margin-top: 2rem;
  letter-spacing: -0.04em;
}

.nosotros-evolucion-ist-panel p {
  margin: 0;
  color: rgba(220, 238, 245, 0.72);
  font-size: 1rem;
  line-height: 1.76;
}

/* Logo V1 */
.nosotros-evolucion-ist-logo-wrap {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo V1 */
.nosotros-evolucion-ist-logo-wrap img{
  width: 150px;
  height: auto;
}

.nosotros-evolucion-ist-logo-v1 {
  width: min(100%, 320px);
  height: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(104, 224, 255, 0.32))
    drop-shadow(0 0 30px rgba(130, 230, 255, 0.16));
}

.glow-v2{

  filter:
    drop-shadow(0 0 16px rgba(0, 174, 255, 0.705))
    drop-shadow(0 0 30px rgba(76, 109, 255, 0.555));
}

/* Marca V2 */
.nosotros-evolucion-ist-v2-mark {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nosotros-evolucion-ist-v2-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 183, 255, 0.26);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.16), transparent 66%),
    rgba(0, 12, 28, 0.8);
  color: #dff8ff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 18px rgba(0, 183, 255, 0.08),
    0 0 22px rgba(0, 183, 255, 0.10);
}

/* Chips */
.nosotros-evolucion-ist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
  justify-content: center;
}

.nosotros-evolucion-ist-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.is-v1-chips span {
  color: #e9fbff;
  border: 1px solid rgba(96, 224, 255, 0.26);
  background:
    radial-gradient(circle at center, rgba(96, 224, 255, 0.12), transparent 68%),
    rgba(4, 22, 36, 0.72);
  box-shadow:
    inset 0 0 12px rgba(96, 224, 255, 0.05),
    0 0 18px rgba(96, 224, 255, 0.08);
}

.is-v2-chips span {
  color: #ebf9ff;
  border: 1px solid rgba(0, 183, 255, 0.24);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.12), transparent 68%),
    rgba(3, 16, 34, 0.74);
  box-shadow:
    inset 0 0 12px rgba(0, 183, 255, 0.05),
    0 0 18px rgba(0, 183, 255, 0.08);
}

/* Bridge */
.nosotros-evolucion-ist-bridge {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nosotros-evolucion-ist-bridge-line {
  position: absolute;
  width: 2px;
  top: 12%;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(83, 219, 255, 0.05),
    rgba(83, 219, 255, 0.55) 28%,
    rgba(0, 183, 255, 0.75) 55%,
    rgba(0, 183, 255, 0.10) 100%
  );
  box-shadow:
    0 0 18px rgba(83, 219, 255, 0.18),
    0 0 30px rgba(0, 183, 255, 0.18);
}

.nosotros-evolucion-ist-bridge-core {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at center, rgba(0,183,255,0.22), transparent 68%),
    rgba(2, 12, 26, 0.92);
  border: 1px solid rgba(0, 183, 255, 0.26);
  box-shadow:
    inset 0 0 18px rgba(0, 183, 255, 0.08),
    0 0 24px rgba(0, 183, 255, 0.12);
}

.nosotros-evolucion-ist-bridge-core span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #67e0ff, #00b7ff);
  box-shadow:
    0 0 14px rgba(103, 224, 255, 0.85),
    0 0 24px rgba(0, 183, 255, 0.45);
}

.nosotros-evolucion-ist-bridge-arrow {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  color: #9eefff;
  font-size: 1.25rem;
  opacity: 0.88;
  filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.42));
}

/* Closing */
.nosotros-evolucion-ist-closing {
  max-width: 940px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 1.45rem 1.55rem;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(to right, rgba(2, 34, 53, 0.733), rgba(0, 28, 36, 0.945), rgba(1, 15, 44, 0.945), rgb(2, 12, 24));
  border: 1px solid rgba(0, 183, 255, 0.18);
  box-shadow:
    inset 0 0 20px rgba(0, 183, 255, 0.035),
    0 0 26px rgba(0, 183, 255, 0.06);
}

.nosotros-evolucion-ist-closing p {
  margin: 0;
  color: rgba(228, 243, 250, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.nosotros-evolucion-ist-closing strong {
  color: #ffffff;
  font-weight: 800;
}

/* Reveal */
.nosotros-evolucion-ist-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.nosotros-evolucion-ist-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .nosotros-evolucion-ist-stage {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .nosotros-evolucion-ist-bridge {
    min-height: 90px;
  }

  .nosotros-evolucion-ist-bridge-line {
    width: auto;
    height: 2px;
    left: 12%;
    right: 12%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      rgba(83, 219, 255, 0.08),
      rgba(83, 219, 255, 0.55) 28%,
      rgba(0, 183, 255, 0.76) 55%,
      rgba(0, 183, 255, 0.12) 100%
    );
  }

  .nosotros-evolucion-ist-bridge-arrow {
    bottom: auto;
    top: 50%;
    left: auto;
    right: 10%;
    transform: translateY(-50%);
  }

  .nosotros-evolucion-ist-logo-wrap,
  .nosotros-evolucion-ist-v2-mark {
    justify-content: center;
  }

  .nosotros-evolucion-ist-panel {
    text-align: center;
  }

  .nosotros-evolucion-ist-chips {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .nosotros-evolucion-ist {
    padding: 4.6rem 0;
  }

  .nosotros-evolucion-ist-panel {
    padding: 1.3rem 1.1rem;
    border-radius: 24px;
  }

  .nosotros-evolucion-ist-title {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .nosotros-evolucion-ist-lead,
  .nosotros-evolucion-ist-panel p,
  .nosotros-evolucion-ist-closing p {
    font-size: 0.96rem;
  }

  .nosotros-evolucion-ist-chips span {
    width: 100%;
  }
}

/* =========================================
   ALCANCE IST V2
========================================= */

.nosotros-alcance-ist {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 7.5rem) 0 clamp(6rem, 9vw, 8rem);
  background: #000;
  isolation: isolate;
}

.nosotros-alcance-ist.has-bg-image .nosotros-alcance-ist-bg {
  opacity: 1;
}

.nosotros-alcance-ist-bg,
.nosotros-alcance-ist-grid,
.nosotros-alcance-ist-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nosotros-alcance-ist-bg {
  z-index: 0;
  opacity: 0;
  background-image: var(--alcance-bg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(1.05);
}

.nosotros-alcance-ist-overlay {
  z-index: 1;
  background:
    linear-gradient(to bottom, #000 0%, rgba(0,0,0,0.22) 12%, rgba(0,0,0,0.16) 84%, #000 100%),
    linear-gradient(to right, rgba(0, 3, 10, 0.86) 0%, rgba(0, 8, 22, 0.58) 30%, rgba(0, 13, 30, 0.42) 70%, rgba(0, 4, 12, 0.84) 100%);
}

.nosotros-alcance-ist-grid {
  z-index: 2;
  opacity: 0.20;
  background-image:
    linear-gradient(rgba(0, 157, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 157, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.95) 16%, rgba(0,0,0,0.95) 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.95) 16%, rgba(0,0,0,0.95) 84%, transparent 100%);
}

.nosotros-alcance-ist::before,
.nosotros-alcance-ist::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(1100px, 86vw);
  height: 160px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  filter: blur(38px);
  opacity: 0.38;
}

.nosotros-alcance-ist::before {
  top: 10%;
  background: radial-gradient(circle at center, rgba(0, 183, 255, 0.22), transparent 70%);
}

.nosotros-alcance-ist::after {
  bottom: 12%;
  background: radial-gradient(circle at center, rgba(47, 125, 255, 0.16), transparent 72%);
}

.nosotros-alcance-ist-container {
  position: relative;
  z-index: 4;
}

.nosotros-alcance-ist-header {
  max-width: 860px;
  margin: 0 auto clamp(3rem, 5vw, 4.25rem);
  text-align: center;
}

.nosotros-alcance-ist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.72rem 1.18rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;

  color: #eaf9ff;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  border: 1px solid rgba(0, 157, 255, 0.28);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.13), transparent 68%),
    rgba(3, 11, 23, 0.72);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.05),
    0 0 24px rgba(0, 157, 255, 0.10);

  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.nosotros-alcance-ist-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00c8ff;
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.8);
}

.nosotros-alcance-ist-badge iconify-icon {
  font-size: 1rem;
  color: #00b7ff;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-alcance-ist-title {
  margin: 0 0 1rem;
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #dff6ff 48%, #98eaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nosotros-alcance-ist-text {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(223, 242, 250, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

/* Escenario */
.nosotros-alcance-ist-stage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.nosotros-alcance-ist-point {
  position: relative;
}

.nosotros-alcance-ist-point-head {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.nosotros-alcance-ist-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;

  border: 1px solid rgba(0, 183, 255, 0.28);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.18), transparent 68%),
    rgba(3, 11, 23, 0.78);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.06),
    0 0 22px rgba(0, 157, 255, 0.10);
}

.nosotros-alcance-ist-icon iconify-icon {
  color: #00b7ff;
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.58));
}

.nosotros-alcance-ist-point h3 {
  margin: 0 0 0.4rem;
  color: #f3fbff;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nosotros-alcance-ist-point p {
  margin: 0;
  color: rgba(223, 242, 250, 0.74);
  font-size: 0.99rem;
  line-height: 1.68;
}

/* Visual PNG + círculo base */
.nosotros-alcance-ist-visual-wrap {
  position: relative;
  min-height: clamp(290px, 32vw, 430px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 1rem;
}

.nosotros-alcance-ist-ground-ring {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(86%, 360px);
  aspect-ratio: 1 / 0.26;
  border-radius: 50%;

  background:
    radial-gradient(ellipse at center, rgba(0, 183, 255, 0.20) 0%, rgba(0, 183, 255, 0.08) 34%, rgba(0, 183, 255, 0.02) 55%, transparent 72%);

  box-shadow:
    0 0 30px rgba(0, 157, 255, 0.16),
    inset 0 0 30px rgba(0, 183, 255, 0.08);
  filter: blur(0.2px);
}

.nosotros-alcance-ist-ground-ring::before,
.nosotros-alcance-ist-ground-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0, 183, 255, 0.38);
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.18);
}

.nosotros-alcance-ist-ground-ring::after {
  inset: 12% 10%;
  border-color: rgba(158, 239, 255, 0.24);
}

.nosotros-alcance-ist-visual {
  position: relative;
  z-index: 2;
  margin-bottom: 7rem;
  width: min(100%, 420px);
  max-height: 410px;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 0 16px rgba(0, 183, 255, 0.18))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
}

/* Reveal */
.nosotros-alcance-ist-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

.nosotros-alcance-ist-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nosotros-alcance-ist-point-left {
  transition-delay: 0.06s;
}

.nosotros-alcance-ist-point-right {
  transition-delay: 0.12s;
}

/* Responsive */
@media (max-width: 991.98px) {
  .nosotros-alcance-ist-stage {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .nosotros-alcance-ist-point-head {
    max-width: 100%;
  }

  .nosotros-alcance-ist-visual-wrap {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .nosotros-alcance-ist {
    padding: 4.75rem 0 5rem;
  }

  .nosotros-alcance-ist-point-head {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.9rem;
  }

  .nosotros-alcance-ist-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .nosotros-alcance-ist-visual-wrap {
    min-height: 250px;
  }

  .nosotros-alcance-ist-visual {
    width: min(100%, 320px);
    max-height: 300px;
  }

  .nosotros-alcance-ist-ground-ring {
    width: min(92%, 280px);
    bottom: 6px;
  }
}

/* =========================================
   CTA FINAL IST V2
========================================= */

.nosotros-cta-v2 {
  position: relative;
  overflow: hidden;

  padding: clamp(4rem, 7vw, 6rem) 1rem;

  background: #000;
  color: #fff;
}

/* Card principal */
.nosotros-cta-v2-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  width: min(100%, 1120px);
  margin: 0 auto;

  min-height: clamp(330px, 36vw, 430px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(2rem, 5vw, 4rem);

  border-radius: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(0, 157, 255, 0.28);

  background:
    linear-gradient(145deg, rgba(3, 14, 30, 0.86), rgba(0, 5, 14, 0.94));

  box-shadow:
    inset 0 0 42px rgba(0, 157, 255, 0.055),
    0 28px 80px rgba(0, 0, 0, 0.46),
    0 0 54px rgba(0, 157, 255, 0.12);
}

/* Background de la card */
.nosotros-cta-v2-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.34;
  filter: saturate(115%) contrast(108%);
  transform: scale(1.04);
}

/* Overlay para legibilidad */
.nosotros-cta-v2-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(circle at 50% 35%, rgba(0, 102, 255, 0.18), transparent 38%),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.185) 0%,
      rgba(2, 12, 28, 0.66) 42%,
      rgba(0, 0, 0, 0.068) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.25) 46%,
      rgba(0, 0, 0, 0.82) 100%
    );
}

/* Línea premium superior */
.nosotros-cta-v2-card::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 0;
  height: 1px;
  z-index: 2;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(158, 239, 255, 0.75),
    rgba(0, 183, 255, 0.62),
    transparent
  );

  box-shadow: 0 0 20px rgba(0, 183, 255, 0.34);
}

/* Grid sutil dentro de la card */
.nosotros-cta-v2-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 183, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.026) 1px, transparent 1px);

  background-size: 52px 52px;

  mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    rgba(0, 0, 0, 0.62) 54%,
    transparent 88%
  );

  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    rgba(0, 0, 0, 0.62) 54%,
    transparent 88%
  );

  opacity: 0.75;
}

/* Contenido */
.nosotros-cta-v2-content {
  position: relative;
  z-index: 3;

  max-width: 760px;
  margin: 0 auto;

  text-align: center;
}

.nosotros-cta-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;

  padding: 0.62rem 1.1rem;
  border-radius: 999px;

  color: rgba(243, 251, 255, 0.95);
  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.12), transparent 68%),
    rgba(3, 11, 23, 0.72);

  border: 1px solid rgba(0, 157, 255, 0.30);

  box-shadow:
    inset 0 0 12px rgba(0, 157, 255, 0.05),
    0 0 20px rgba(0, 157, 255, 0.10);

  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nosotros-cta-v2-badge-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 999px;
  background: #00b7ff;

  box-shadow:
    0 0 10px rgba(0, 183, 255, 0.86),
    0 0 22px rgba(0, 157, 255, 0.36);
}

.nosotros-cta-v2-badge iconify-icon {
  color: #00b7ff;
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-cta-v2-title {
  margin: 1.1rem auto 0;

  font-family: 'Geist', sans-serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: -0.065em;
  text-wrap: balance;

  background: linear-gradient(180deg, #ffffff 0%, #e6fbff 45%, #9eefff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 22px rgba(0, 183, 255, 0.12),
    0 0 54px rgba(0, 110, 255, 0.10);
}

.nosotros-cta-v2-text {
  max-width: 620px;
  margin: 1rem auto 0;

  color: rgba(223, 242, 250, 0.76);
  font-size: clamp(0.98rem, 1.45vw, 1.1rem);
  line-height: 1.7;
}

/* Acciones */
.nosotros-cta-v2-actions {
  margin-top: 1.7rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nosotros-cta-v2-btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;

  padding: 0.9rem 1.45rem;
  border-radius: 999px;

  color: #ffffff;
  text-decoration: none !important;

  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: -0.01em;

  border: 1px solid rgba(37, 211, 102, 0.62);

  background:
    radial-gradient(circle at center, rgba(37, 211, 102, 0.20), transparent 68%),
    rgba(37, 211, 102, 0.13);

  box-shadow:
    inset 0 0 16px rgba(37, 211, 102, 0.07),
    0 0 28px rgba(37, 211, 102, 0.16);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.nosotros-cta-v2-btn iconify-icon {
  font-size: 1.15rem;
}

.nosotros-cta-v2-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  border-color: rgba(37, 211, 102, 0.92);
  background: rgba(37, 211, 102, 0.18);

  box-shadow:
    inset 0 0 18px rgba(37, 211, 102, 0.10),
    0 0 34px rgba(37, 211, 102, 0.25);
}

/* Redes */
.nosotros-cta-v2-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.nosotros-cta-v2-social {
  width: 44px;
  height: 44px;

  display: inline-grid;
  place-items: center;

  border-radius: 999px;

  color: #eafcff;
  text-decoration: none !important;

  border: 1px solid rgba(0, 183, 255, 0.26);

  background:
    radial-gradient(circle at center, rgba(0, 183, 255, 0.13), transparent 68%),
    rgba(3, 11, 23, 0.76);

  box-shadow:
    inset 0 0 14px rgba(0, 183, 255, 0.05),
    0 0 20px rgba(0, 157, 255, 0.10);

  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nosotros-cta-v2-social iconify-icon {
  font-size: 1.05rem;
  color: #00b7ff;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.55));
}

.nosotros-cta-v2-social:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 183, 255, 0.42);

  box-shadow:
    inset 0 0 16px rgba(0, 183, 255, 0.07),
    0 0 28px rgba(0, 183, 255, 0.16);
}

/* Responsive */
@media (max-width: 767.98px) {
  .nosotros-cta-v2 {
    padding: 3.5rem 0.85rem;
  }

  .nosotros-cta-v2-card {
    min-height: 360px;
    padding: 2rem 1.15rem;
    border-radius: 28px;
  }

  .nosotros-cta-v2-actions {
    flex-direction: column;
  }

  .nosotros-cta-v2-btn {
    width: 100%;
  }
}

