/* =========================================================
   GEOPLOT WEB — STYLE.CSS
   Estilos generales para escritorio
   ========================================================= */


/* =========================================================
   01. VARIABLES GLOBALES
   Cambia aquí colores, ancho máximo y altura del header.
   ========================================================= */

:root {
  --color-black: #050505;
  --color-dark: #020712;
  --color-white: #ffffff;

  --color-orange: #ff7a00;
  --color-orange-hover: #ff9138;

  --color-blue: #165fc7;
  --color-light-blue: #3db4dc;
  --color-cyan: #13bce5;
  --color-border: #159de6;

  --header-height: 106px;
  --page-max-width: 1440px;

  --border-radius-small: 10px;
  --border-radius-medium: 14px;
}


/* =========================================================
   02. REINICIO Y ESTILOS GENERALES
   Afecta toda la página.
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background-color: var(--color-black);
  color: var(--color-white);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

main {
  width: 100%;
}

main section {
  scroll-margin-top: var(--header-height);
}


/* =========================================================
   03. HEADER GENERAL
   Controla el fondo, altura y borde inferior.
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  min-height: var(--header-height);

  background-color: var(--color-black);
  border-bottom: 2px solid var(--color-border);
}

.header-container {
  width: min(94%, var(--page-max-width));
  min-height: var(--header-height);
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 32px;
}


/* =========================================================
   04. MARCA GEOPLOT
   Logo, nombre y subtítulo I + D + i Territorial.
   ========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--color-white);
  text-decoration: none;

  flex-shrink: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;

  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2px;
}

.brand-tagline {
  margin-top: 7px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   05. NAVEGACIÓN PRINCIPAL
   Inicio, Nosotros, Investigación, Tecnología, etc.
   ========================================================= */

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  flex: 1;
}

.main-navigation a {
  color: var(--color-white);
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  color: var(--color-orange);
}

.main-navigation a:hover {
  transform: translateY(-1px);
}


/* =========================================================
   06. SELECTOR DE IDIOMA ES | EN
   ========================================================= */

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 8px 10px;

  border: 1px solid var(--color-white);
  border-radius: var(--border-radius-small);

  background-color: #416aab;

  flex-shrink: 0;
}

.language-selector button {
  padding: 0;

  border: 0;
  background: transparent;

  color: #dce6f8;

  cursor: pointer;

  font-size: 13px;
  font-weight: 500;
}

.language-selector button:hover,
.language-selector button:focus-visible,
.language-selector .language-active {
  color: var(--color-white);
  font-weight: 800;
}


/* =========================================================
   07. BOTÓN DEL MENÚ MÓVIL
   Se activa desde responsive.css.
   ========================================================= */

.mobile-menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--color-white);
  border-radius: 8px;

  background: transparent;

  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-button span {
  display: block;

  width: 22px;
  height: 2px;
  margin: 5px auto;

  background-color: var(--color-white);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   08. HERO — ESTRUCTURA GENERAL
   Controla la altura y el ancho completo del Hero.
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;

  width: 100%;

  height: calc(100vh - var(--header-height));
  min-height: 700px;
  max-height: 1050px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background-color: var(--color-dark);

  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
}


/* =========================================================
   09. HERO — IMÁGENES DE FONDO
   Carrusel de imágenes WebP.
   ========================================================= */

.hero-backgrounds {
  position: absolute;
  inset: 0;

  z-index: -3;
}

.hero-background {
  position: absolute;
  inset: 0;

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

  opacity: 0;

  transform: scale(1.015);

  transition:
    opacity 1.2s ease,
    transform 8s ease;
}

.hero-background-active {
  opacity: 1;
  transform: scale(1);
}


/* =========================================================
   10. HERO — CAPA OSCURA
   Permite leer el texto sobre la imagen.
   ========================================================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.48) 31%,
      rgba(0, 0, 0, 0.16) 59%,
      rgba(0, 0, 0, 0.03) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.03) 65%,
      rgba(0, 0, 0, 0.3) 100%
    );
}


/* =========================================================
   11. HERO — CONTENEDOR Y POSICIÓN
   Controla dónde queda el bloque izquierdo.
   ========================================================= */

.hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 42px 0 28px;

  display: flex;
  align-items: center;
}

.hero-content {
  width: min(760px, 54%);

  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* =========================================================
   12. HERO — TÍTULO BASE
   Se usa como respaldo general.
   Los ajustes precisos por idioma están en la sección 18.
   ========================================================= */

.hero-title {
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 760px;

  color: var(--color-white);

  font-size: clamp(2.35rem, 3.05vw, 3.75rem);
  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.035em;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title strong {
  color: var(--color-orange);
  font-weight: 900;
}


/* =========================================================
   13. HERO — DESCRIPCIÓN
   Texto bajo el título.
   ========================================================= */

.hero-description {
  max-width: 650px;

  margin-top: clamp(30px, 4vh, 52px);

  color: rgba(255, 255, 255, 0.94);

  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.42;
}


/* =========================================================
   14. HERO — BOTONES
   Botón naranja y botón transparente.
   ========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);

  color: var(--color-white);
  text-decoration: none;

  font-size: 0.94rem;
  font-weight: 700;

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);

  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.25);
}

.button-secondary {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: var(--color-white);

  backdrop-filter: blur(5px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-arrow {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}


/* =========================================================
   15. HERO — CAPACIDADES
   SIG, Modelación, IA, Software y Validación.
   ========================================================= */

.hero-capabilities {
  width: fit-content;
  max-width: 100%;

  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));

  margin-top: 38px;
  padding: 12px 0;

  background-color: rgba(0, 0, 0, 0.58);

  backdrop-filter: blur(5px);
}

.capability {
  min-width: 100px;
  padding: 0 14px;

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

  color: var(--color-white);
  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.capability:last-child {
  border-right: 0;
}

.capability-icon {
  min-height: 42px;

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

  color: var(--color-cyan);

  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.capability p {
  margin-top: 8px;

  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
}


/* =========================================================
   16. HERO — CONTROLES DEL CARRUSEL
   Puntos pequeños de cambio de imagen.
   ========================================================= */

.hero-slider-controls {
  position: absolute;

  right: 30px;
  bottom: 24px;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;

  background-color: rgba(255, 255, 255, 0.3);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.hero-slider-dot-active {
  width: 34px;

  background-color: var(--color-orange);
  border-color: var(--color-orange);
}


/* =========================================================
   17. SECCIONES POSTERIORES TEMPORALES
   Evita que las secciones vacías generen espacios enormes.
   ========================================================= */

#investigacion,
#tecnologia,
#transferencia,
#campus,
#contacto {
  min-height: 0;
}


/* =========================================================
   18. HERO — COMPOSICIÓN TIPOGRÁFICA POR IDIOMA
   Controla las tres líneas del título en escritorio.
   No se aplica en tablet ni celular.
   ========================================================= */

@media (min-width: 1200px) {

  /* -------------------------------------------------------
     18.1 VERSIÓN EN ESPAÑOL
     Línea 1: Ciencia y tecnología geoespacial
     Línea 2: para comprender, analizar y
     Línea 3: gestionar el territorio
     ------------------------------------------------------- */

  html[lang="es"] .hero-content {
    width: 66%;
    max-width: 980px;
  }

  html[lang="es"] .hero-title {
    width: 100%;
    max-width: 980px;

    font-size: clamp(2.15rem, 2.65vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  html[lang="es"] .hero-title > span,
  html[lang="es"] .hero-title > strong {
    white-space: nowrap;
  }

  html[lang="es"] .hero-description {
    max-width: 650px;
  }


  /* -------------------------------------------------------
     18.2 ENGLISH VERSION
     Line 1: Geospatial science and technology
     Line 2: to understand, analyze and
     Line 3: manage the territory
     ------------------------------------------------------- */

  html[lang="en"] .hero-content {
    width: 68%;
    max-width: 1000px;
  }

  html[lang="en"] .hero-title {
    width: 100%;
    max-width: 1000px;

    font-size: clamp(2.1rem, 2.5vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  html[lang="en"] .hero-title > span,
  html[lang="en"] .hero-title > strong {
    white-space: nowrap;
  }

  html[lang="en"] .hero-description {
    max-width: 720px;
  }
}


/* =========================================================
   19. ACCESIBILIDAD
   Reduce animaciones cuando el usuario lo solicita.
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-background,
  .button,
  .hero-slider-dot,
  .main-navigation a,
  .mobile-menu-button span {
    transition: none;
  }
}
/* =========================================================
   20. INVESTIGACIÓN — ADELANTO EN PÁGINA DE INICIO
   ========================================================= */

.research-preview {
  width: 100%;
  padding: 72px 0 96px;

  background-color: #1a0000;
  color: var(--color-white);
}

.research-container {
  width: min(88%, 1120px);
  margin: 0 auto;
}


/* =========================================================
   20.1 TÍTULO E INTRODUCCIÓN
   ========================================================= */

.research-title {
  margin-bottom: 42px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.research-intro {
  width: 100%;

  margin-bottom: 52px;
  padding: 25px 36px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.7);
}

.research-intro p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 1rem;
  line-height: 1.5;
}


/* =========================================================
   20.2 GEOPLOT LAB
   ========================================================= */

.research-lab-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 2.6fr)
    minmax(250px, 1fr);

  gap: 34px;
  align-items: stretch;

  margin-bottom: 78px;
}

.research-lab-visual {
  position: relative;

  min-height: 360px;
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: #050505;
}

.research-lab-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.research-lab-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.67) 38%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.research-lab-brand {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 42px 36px;
}

.research-lab-logo {
  width: 78px;
  height: 78px;

  object-fit: contain;
}

.research-lab-brand h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;

  color: var(--color-white);

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.research-lab-brand strong {
  color: var(--color-orange);
  font-weight: 800;
}

.research-lab-button {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
}


/* =========================================================
   20.3 TARJETAS DE TEXTO
   ========================================================= */

.research-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 30px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.78);
}

.research-text-card h3 {
  margin-bottom: 14px;

  color: var(--color-white);

  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.research-text-card p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 0.98rem;
  line-height: 1.48;
}


/* =========================================================
   20.4 CASO DE ESTUDIO
   ========================================================= */

.research-case-layout {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.85fr)
    minmax(0, 1.35fr);

  gap: 58px;
  align-items: center;
}

.research-video-card {
  width: min(100%, 420px);
  margin: 0 auto;
}

.research-video-wrapper {
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: #000000;
}

.research-video-wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

.research-case-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.research-case-card {
  width: 100%;
}

.research-case-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--color-orange);

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-case-button {
  min-width: 300px;
}
/* =========================================================
   21. TECNOLOGÍA — PRODUCTOS GEOPLOT
   ========================================================= */

.technology-preview {
  width: 100%;
  padding: 74px 0 96px;

  background-color: #190000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
}

.technology-container {
  width: min(88%, 1180px);
  margin: 0 auto;
}


/* =========================================================
   21.1 TÍTULO E INTRODUCCIÓN
   ========================================================= */

.technology-title {
  margin-bottom: 42px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.technology-intro {
  width: 100%;

  margin-bottom: 52px;
  padding: 25px 36px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.72);
}

.technology-intro p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 1rem;
  line-height: 1.5;
}


/* =========================================================
   21.2 CUADRÍCULA DE PRODUCTOS
   ========================================================= */

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 46px 72px;
}


/* =========================================================
   21.3 TARJETAS
   ========================================================= */

.technology-card {
  min-height: 290px;
  padding: 24px;

  display: flex;
  flex-direction: column;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(12, 0, 0, 0.84);

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

.technology-card:hover {
  transform: translateY(-4px);

  border-color: var(--color-orange);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 122, 0, 0.12);
}


/* =========================================================
   21.4 IDENTIDAD VISUAL DE LOS PRODUCTOS
   Ícono pequeño + nombre al lado + colores por marca
   ========================================================= */

.technology-card-header {
  min-height: auto;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
}

.technology-product-brand {
  width: 100%;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 14px;
}

.technology-product-icon {
  display: block;

  width: 54px;
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  max-height: 54px;

  flex: 0 0 54px;

  object-fit: contain;
  object-position: center;
}

.technology-product-name {
  margin: 0;

  display: flex;
  align-items: flex-start;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: clamp(2rem, 2.25vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;

  white-space: nowrap;
}

.technology-product-name span {
  display: inline-block;
}

.technology-product-name sup {
  position: relative;
  top: -0.18em;

  margin-left: 4px;

  color: #ffffff;

  font-size: 0.34em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

/* Colores de nombres */

.product-name-white {
  color: #ffffff;
}

.product-name-orange {
  color: #ff7a00;
}

.product-name-blue {
  color: #4f8fd8;
}

.product-name-light-blue {
  color: #34aee8;
}

/* =========================================================
   21.5 CUERPO DE TARJETA
   ========================================================= */

.technology-card-body {
  flex: 1;

  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(135px, 0.75fr);

  gap: 18px;
  align-items: end;
}

.technology-card-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.technology-card-copy p {
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.96);

  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}


/* =========================================================
   21.6 IMÁGENES DE PRODUCTOS
   ========================================================= */

.technology-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;

  align-self: end;

  object-fit: cover;
  object-position: center;

  border-radius: 4px;
}


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

.technology-button {
  min-width: 225px;
  min-height: 40px;

  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border: 2px solid var(--color-orange);
  border-radius: 12px;

  background-color: rgba(0, 0, 0, 0.2);
  color: var(--color-white);

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 700;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.technology-button:hover,
.technology-button:focus-visible {
  transform: translateY(-2px);

  background-color: var(--color-orange);
}
/* =========================================================
   22. TRANSFERENCIA TECNOLÓGICA
   ========================================================= */

.transfer-preview {
  width: 100%;
  padding: 74px 0 96px;

  background-color: #000000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.transfer-container {
  width: min(88%, 1180px);
  margin: 0 auto;
}


/* =========================================================
   22.1 TÍTULO
   ========================================================= */

.transfer-title {
  margin-bottom: 52px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}


/* =========================================================
   22.2 TEXTO Y BOTÓN
   ========================================================= */

.transfer-main {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(190px, 0.28fr);

  gap: 44px;
  align-items: center;

  margin-bottom: 32px;
}

.transfer-description {
  padding: 30px 38px;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: rgba(20, 20, 22, 0.78);
}

.transfer-description p {
  color: rgba(255, 255, 255, 0.96);

  font-size: clamp(1rem, 1.12vw, 1.2rem);
  font-weight: 400;
  line-height: 1.45;
}

.transfer-button {
  min-width: 205px;
  min-height: 58px;

  justify-self: center;

  padding: 0 28px;

  font-size: 1.1rem;
  font-weight: 800;
}


/* =========================================================
   22.3 IMAGEN DE RECURSOS
   ========================================================= */

.transfer-resources-image-wrapper {
  width: min(100%, 1040px);
  margin: 0 auto;

  overflow: hidden;

  background-color: #000000;
}

.transfer-resources-image {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
  object-position: center;
}
/* =========================================================
   23. GEOPLOT CAMPUS
   ========================================================= */

.campus-preview {
  width: 100%;
  padding: 72px 0 88px;

  background-color: #000000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.campus-container {
  width: min(88%, 1120px);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 2.5fr)
    minmax(250px, 1fr);

  gap: 34px;
  align-items: stretch;
}


/* =========================================================
   23.1 TARJETA VISUAL PRINCIPAL
   ========================================================= */

.campus-visual-card {
  position: relative;

  min-height: 360px;
  overflow: hidden;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: #050505;
}

.campus-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.campus-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 30%,
      rgba(0, 0, 0, 0.38) 56%,
      rgba(0, 0, 0, 0.08) 100%
    );
}


/* =========================================================
   23.2 IDENTIDAD GEOPLOT CAMPUS
   ========================================================= */

.campus-brand {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 38px 36px;
}

.campus-logo {
  width: 92px;
  height: 92px;

  flex: 0 0 92px;

  object-fit: contain;
  object-position: center;
}

.campus-brand-copy {
  min-width: 0;
}

.campus-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.campus-name-white {
  color: #ffffff;
}

.campus-name-orange {
  color: var(--color-orange);
}

.campus-platform {
  margin-top: 12px;

  color: #ffffff;

  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
}


/* =========================================================
   23.3 BOTÓN
   ========================================================= */

.campus-button {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;

  min-width: 205px;
  min-height: 58px;

  font-size: 1.05rem;
  font-weight: 800;
}


/* =========================================================
   23.4 TARJETA DE DESCRIPCIÓN
   ========================================================= */

.campus-description-card {
  display: flex;
  align-items: center;

  padding: 34px;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: #050505;
}

.campus-description-card p {
  color: rgba(255, 255, 255, 0.96);

  font-size: clamp(1rem, 1.12vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
}
/* =========================================================
   24. FOOTER GEOPLOT
   ========================================================= */

.site-footer {
  width: 100%;

  background-color: #090000;
  color: #ffffff;

  border-top: 2px solid rgba(255, 255, 255, 0.92);
}


/* =========================================================
   24.1 NAVEGACIÓN PRINCIPAL DEL FOOTER
   ========================================================= */

.footer-main {
  padding: 38px 0 34px;

  background-color: #090000;
}

.footer-main-container {
  width: min(94%, 1440px);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(190px, 1.3fr)
    minmax(120px, 0.85fr)
    minmax(150px, 1.15fr)
    minmax(120px, 0.85fr)
    minmax(150px, 1fr)
    minmax(110px, 0.75fr)
    minmax(145px, 0.95fr);

  gap: 28px;
  align-items: start;
}


/* =========================================================
   24.2 MARCA GEOPLOT
   ========================================================= */

.footer-brand {
  min-width: 0;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  text-decoration: none;
}

.footer-logo {
  width: 64px;
  height: 64px;

  flex: 0 0 64px;

  object-fit: contain;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand-tagline {
  margin-top: 7px;

  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   24.3 COLUMNAS DEL FOOTER
   ========================================================= */

.footer-column {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 3px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-contact h2 {
  color: var(--color-orange);
}

.footer-column a,
.footer-column p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.77rem;
  font-weight: 400;
  line-height: 1.3;

  text-decoration: none;
}

.footer-column a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-orange);

  transform: translateX(2px);
}


/* =========================================================
   24.4 MENSAJE Y REDES SOCIALES
   ========================================================= */

.footer-social {
  padding: 34px 0 30px;

  background-color: #000000;

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.footer-social-container {
  width: min(92%, 1050px);
  margin: 0 auto;

  text-align: center;
}

.footer-message {
  color: rgba(255, 255, 255, 0.94);

  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
}

.footer-social-links {
  width: fit-content;
  max-width: 100%;

  margin: 28px auto 0;
  padding: 12px 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  background-color: #000000;
}

.footer-social-links a {
  width: 46px;
  height: 46px;

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

  border-radius: 8px;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  transform: translateY(-4px);

  background-color: rgba(0, 0, 0, 0.08);
}

.footer-social-links img {
  width: 38px;
  height: 38px;

  object-fit: contain;
}


/* =========================================================
   24.5 INFORMACIÓN LEGAL
   ========================================================= */

.footer-legal {
  padding: 32px 0 36px;

  background-color: #090000;
}

.footer-legal-container {
  width: min(92%, 1100px);
  margin: 0 auto;

  text-align: center;
}

.footer-legal-container p {
  color: rgba(255, 255, 255, 0.9);

  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-legal-links {
  margin-top: 13px;

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

.footer-legal-links a {
  padding: 0 8px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.77rem;
  line-height: 1.3;

  text-decoration: none;

  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-legal-links a:last-child {
  border-right: 0;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--color-orange);
}
/* GitHub: convertir icono negro en blanco */
.footer-icon-github {
  filter: invert(1);
}
/* =========================================================
   PÁGINA NOSOTROS
   ========================================================= */

/* Evita que los enlaces internos queden ocultos bajo el header */
#quienes-somos,
#filosofia,
#equipo {
  scroll-margin-top: 110px;
}


/* =========================================================
   ESTRUCTURA GENERAL DE PÁGINAS INTERIORES
   ========================================================= */

.internal-page {
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.internal-container,
.internal-hero-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


/* =========================================================
   HERO NOSOTROS
   ========================================================= */

.internal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 590px;
  padding: 185px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 32%,
      rgba(0, 108, 255, 0.23),
      transparent 35%
    ),
    radial-gradient(
      circle at 72% 78%,
      rgba(0, 190, 255, 0.09),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #030303 0%,
      #07111f 58%,
      #030303 100%
    );
}

.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    #000 55%,
    rgba(0, 0, 0, 0.2)
  );
}

.internal-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.018),
    0 0 0 180px rgba(255, 255, 255, 0.012);
}

.internal-hero-container {
  position: relative;
  z-index: 1;
}

.internal-eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #58aaff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.internal-title {
  max-width: 990px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.internal-description {
  max-width: 790px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}


/* =========================================================
   NAVEGACIÓN INTERNA
   ========================================================= */

.about-section-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.about-section-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.about-section-navigation a:hover {
  border-color: rgba(88, 170, 255, 0.55);
  background: rgba(88, 170, 255, 0.1);
  transform: translateY(-2px);
}


/* =========================================================
   SECCIONES GENERALES
   ========================================================= */

.about-section {
  padding: 112px 0;
  background: #050505;
}

.about-section-alternate {
  background: #0a0d12;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 82px;
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 130px;
}

.about-heading h2,
.about-section-header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-content {
  display: grid;
  gap: 26px;
}

.about-content p,
.about-section-header > p:last-child,
.about-capability p,
.about-principle-card p,
.about-team-copy p,
.about-work-model-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.82;
}

.about-section-header {
  max-width: 800px;
  margin-bottom: 58px;
}

.about-section-header > p:last-child {
  margin-top: 24px;
}


/* =========================================================
   CAPACIDADES
   ========================================================= */

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 80px;
}

.about-capability {
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    );
}

.about-capability-number,
.about-principle-number {
  display: block;
  margin-bottom: 58px;
  color: #58aaff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-capability h3,
.about-principle-card h3,
.about-work-model-item h3 {
  margin: 0 0 17px;
  font-size: 1.32rem;
  line-height: 1.25;
}


/* =========================================================
   FILOSOFÍA
   ========================================================= */

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-principle-card {
  min-height: 335px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.about-principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 170, 255, 0.32);
  background: rgba(88, 170, 255, 0.045);
}


/* =========================================================
   EQUIPO
   ========================================================= */

.about-team-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 72px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(39, 131, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(14, 33, 58, 0.8),
      rgba(7, 10, 15, 0.96)
    );
}

.about-team-copy h3 {
  max-width: 660px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-team-copy .button {
  margin-top: 34px;
}

.about-team-disciplines {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-team-disciplines span {
  padding: 12px 17px;
  border: 1px solid rgba(88, 170, 255, 0.28);
  border-radius: 999px;
  background: rgba(88, 170, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}


/* =========================================================
   MODELO DE TRABAJO
   ========================================================= */

.about-work-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.about-work-model-item {
  padding: 30px 4px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.about-cta {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(0, 118, 255, 0.15),
      transparent 34%
    ),
    #080a0e;
}

.about-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}


/* =========================================================
   NAVEGACIÓN ACTIVA
   ========================================================= */

.main-navigation a.navigation-active {
  color: #ffffff;
}

.main-navigation a.navigation-active::after {
  transform: scaleX(1);
}


/* =========================================================
   ERROR DE COMPONENTES
   ========================================================= */

.component-error {
  margin: 0;
  padding: 18px 24px;
  background: #3a1010;
  color: #ffffff;
  text-align: center;
}
/* =========================================================
   PÁGINA SOLUCIONES
   ========================================================= */

#gestion-riesgo,
#inteligencia-territorial,
#geociencias-marinas,
#geofisica-subsuelo,
#infraestructura-territorio,
#software-geoespacial {
  scroll-margin-top: 110px;
}


/* =========================================================
   ESTRUCTURA GENERAL
   ========================================================= */

.solutions-page {
  background: #050505;
  color: #ffffff;
}

.solution-section {
  padding: 110px 0;
  background: #050505;
}

.solution-section-alternate {
  background: #0a0d12;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
}


/* =========================================================
   COLUMNA IZQUIERDA
   ========================================================= */

.solution-heading {
  position: sticky;
  top: 130px;
}

.solution-number {
  display: block;
  margin-bottom: 18px;
  color: #58aaff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-heading h2 {
  max-width: 390px;
  margin: 0;

  font-size: clamp(1.9rem, 2.8vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* =========================================================
   COLUMNA DERECHA
   ========================================================= */

.solution-content {
  display: grid;
  gap: 48px;
}

.solution-description {
  display: grid;
  gap: 24px;
}

.solution-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.82;
}


/* =========================================================
   APLICACIONES
   ========================================================= */

.solution-applications {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    );
}

.solution-applications h3 {
  margin: 0 0 24px;
  font-size: 1.3rem;
}

.solution-applications ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-applications li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.solution-applications li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58aaff;
}


/* =========================================================
   TECNOLOGÍAS ASOCIADAS
   Botones naranjos con logos de productos
   ========================================================= */

.solution-technologies {
  padding-top: 10px;
}

.solution-technologies-label {
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.56);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Contenedor de botones */

.solution-technology-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}


/* Botón principal */

.solution-technology-button {
  min-width: 240px;
  min-height: 68px;

  padding: 11px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border: 2px solid var(--color-orange);
  border-radius: 16px;

  background-color: var(--color-orange);
  color: #ffffff;

  text-decoration: none;

  font-size: 0.98rem;
  font-weight: 800;

  box-shadow:
    0 8px 22px rgba(255, 122, 0, 0.16);

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


/* Logo y nombre juntos */

.solution-technology-identity {
  min-width: 0;

  display: inline-flex;
  align-items: center;
  gap: 13px;
}


/* Logo del producto */

.solution-technology-logo {
  width: 42px;
  height: 42px;
  min-width: 42px;

  flex: 0 0 42px;

  object-fit: contain;
  object-position: center;
}


/* Nombre del producto */

.solution-technology-identity > span {
  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;

  white-space: nowrap;
}


/* Círculo de la flecha */

.solution-technology-arrow {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

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

  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;

  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;

  transition:
    transform 0.22s ease,
    background-color 0.22s ease;
}


/* Efecto al pasar el mouse */

.solution-technology-button:hover,
.solution-technology-button:focus-visible {
  transform: translateY(-5px) scale(1.07);

  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);

  box-shadow:
    0 18px 38px rgba(255, 122, 0, 0.32);
}


/* Movimiento de flecha */

.solution-technology-button:hover .solution-technology-arrow,
.solution-technology-button:focus-visible .solution-technology-arrow {
  transform: translateX(4px);

  background-color: rgba(0, 0, 0, 0.3);
}


/* Accesibilidad del teclado */

.solution-technology-button:focus-visible {
  outline: 3px solid rgba(255, 174, 92, 0.72);
  outline-offset: 4px;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.solutions-cta {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 12% 45%,
      rgba(0, 118, 255, 0.16),
      transparent 34%
    ),
    #080a0e;
}

.solutions-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.solutions-cta-copy {
  max-width: 820px;
}

.solutions-cta-copy {
  max-width: 900px;
}

.solutions-cta-copy h2 {
  margin: 0;

  font-size: clamp(1rem, 1vw, 1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.solutions-cta-copy p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}
/* =========================================================
   PÁGINA TECNOLOGÍA
   ========================================================= */

.technology-page {
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.technology-page-introduction {
  padding: 92px 0 72px;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(255, 122, 0, 0.12),
      transparent 32%
    ),
    #050505;
}

.technology-page-title {
  max-width: 900px;
  margin: 0;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.technology-page-description {
  max-width: 780px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1.08rem;
  line-height: 1.72;
}


/* =========================================================
   GRUPOS DE TECNOLOGÍAS
   ========================================================= */

.technology-group {
  padding: 100px 0;
  background: #050505;
}

.technology-group-alternate {
  background: #0b0505;
}

.technology-group-header {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  align-items: start;

  margin-bottom: 48px;
}

.technology-group-number {
  display: block;

  color: #58aaff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.technology-group-header h2 {
  margin: 0;

  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.technology-group-header > div > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1.03rem;
  line-height: 1.7;
}


/* =========================================================
   LISTADO
   ========================================================= */

.technology-list {
  display: grid;
  gap: 42px;
}


/* =========================================================
   TARJETA PRINCIPAL
   ========================================================= */

.technology-list-card {
  padding: 34px;

  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 0, 0, 0.92),
      rgba(8, 0, 0, 0.98)
    );

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

.technology-list-card:hover {
  transform: translateY(-5px);

  border-color: var(--color-orange);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 122, 0, 0.12);
}


/* =========================================================
   IDENTIDAD DEL PRODUCTO
   ========================================================= */

.technology-list-brand {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 34px;
}

.technology-list-logo {
  width: 72px;
  height: 72px;
  min-width: 72px;

  flex: 0 0 72px;

  object-fit: contain;
  object-position: center;
}

.technology-list-name {
  display: flex;
  align-items: flex-start;

  margin: 0;

  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;

  white-space: nowrap;
}

.technology-list-name span {
  display: inline-block;
}

.technology-list-name sup {
  position: relative;
  top: -0.15em;

  margin-left: 6px;

  color: #ffffff;

  font-size: 0.3em;
  font-weight: 900;
  line-height: 1;
}


/* Colores de productos */

.technology-name-white {
  color: #ffffff;
}

.technology-name-orange {
  color: #ff7a00;
}

.technology-name-blue {
  color: #4f8fd8;
}

.technology-name-light-blue {
  color: #34aee8;
}


/* =========================================================
   CUERPO DE LA TARJETA
   ========================================================= */

.technology-list-body {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  gap: 44px;
  align-items: center;
}

.technology-list-content {
  min-width: 0;
}

.technology-list-summary {
  max-width: 700px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 750;
  line-height: 1.42;
}

.technology-list-detail {
  max-width: 720px;
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   ETIQUETAS DE APLICACIONES
   ========================================================= */

.technology-list-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.technology-list-applications span {
  padding: 10px 14px;

  border: 1px solid rgba(88, 170, 255, 0.28);
  border-radius: 999px;

  background: rgba(88, 170, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);

  font-size: 0.82rem;
  font-weight: 600;
}


/* =========================================================
   IMAGEN DEL PRODUCTO
   ========================================================= */

.technology-list-visual {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;
}

.technology-list-visual img {
  width: 100%;
  max-width: 360px;
  max-height: 260px;

  object-fit: contain;
  object-position: center;

  border-radius: 10px;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.technology-page-button {
  width: min(100%, 330px);
  min-height: 56px;

  margin-top: 30px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border: 2px solid var(--color-orange);
  border-radius: 14px;

  background: transparent;
  color: #ffffff;

  text-decoration: none;

  font-size: 0.98rem;
  font-weight: 800;

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

.technology-page-button:hover,
.technology-page-button:focus-visible {
  transform: translateY(-3px);

  background-color: var(--color-orange);

  box-shadow:
    0 14px 30px rgba(255, 122, 0, 0.24);
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.technology-page-cta {
  padding: 90px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(255, 122, 0, 0.13),
      transparent 34%
    ),
    #080808;
}

.technology-page-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.technology-page-cta-container > div:first-child {
  max-width: 790px;
}

.technology-page-cta h2 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.technology-page-cta p:last-child {
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1.04rem;
  line-height: 1.7;
}

.technology-page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;

  flex-shrink: 0;
}
/* =========================================================
   NOSOTROS — MISMO ANCHO Y TAMAÑO QUE TECNOLOGÍA
   ========================================================= */

/* =========================================================
   GEOPLOT WEB — STYLE.CSS
   Estilos generales para escritorio
   ========================================================= */


/* =========================================================
   01. VARIABLES GLOBALES
   Cambia aquí colores, ancho máximo y altura del header.
   ========================================================= */

:root {
  --color-black: #050505;
  --color-dark: #020712;
  --color-white: #ffffff;

  --color-orange: #ff7a00;
  --color-orange-hover: #ff9138;

  --color-blue: #165fc7;
  --color-light-blue: #3db4dc;
  --color-cyan: #13bce5;
  --color-border: #159de6;

  --header-height: 106px;
  --page-max-width: 1440px;

  --border-radius-small: 10px;
  --border-radius-medium: 14px;
}


/* =========================================================
   02. REINICIO Y ESTILOS GENERALES
   Afecta toda la página.
   ========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;

  background-color: var(--color-black);
  color: var(--color-white);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

main {
  width: 100%;
}

main section {
  scroll-margin-top: var(--header-height);
}


/* =========================================================
   03. HEADER GENERAL
   Controla el fondo, altura y borde inferior.
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  min-height: var(--header-height);

  background-color: var(--color-black);
  border-bottom: 2px solid var(--color-border);
}

.header-container {
  width: min(94%, var(--page-max-width));
  min-height: var(--header-height);
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 32px;
}


/* =========================================================
   04. MARCA GEOPLOT
   Logo, nombre y subtítulo I + D + i Territorial.
   ========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--color-white);
  text-decoration: none;

  flex-shrink: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;

  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-name {
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2px;
}

.brand-tagline {
  margin-top: 7px;

  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   05. NAVEGACIÓN PRINCIPAL
   Inicio, Nosotros, Investigación, Tecnología, etc.
   ========================================================= */

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  flex: 1;
}

.main-navigation a {
  color: var(--color-white);
  text-decoration: none;

  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
  color: var(--color-orange);
}

.main-navigation a:hover {
  transform: translateY(-1px);
}


/* =========================================================
   06. SELECTOR DE IDIOMA ES | EN
   ========================================================= */

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;

  padding: 8px 10px;

  border: 1px solid var(--color-white);
  border-radius: var(--border-radius-small);

  background-color: #416aab;

  flex-shrink: 0;
}

.language-selector button {
  padding: 0;

  border: 0;
  background: transparent;

  color: #dce6f8;

  cursor: pointer;

  font-size: 13px;
  font-weight: 500;
}

.language-selector button:hover,
.language-selector button:focus-visible,
.language-selector .language-active {
  color: var(--color-white);
  font-weight: 800;
}


/* =========================================================
   07. BOTÓN DEL MENÚ MÓVIL
   Se activa desde responsive.css.
   ========================================================= */

.mobile-menu-button {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--color-white);
  border-radius: 8px;

  background: transparent;

  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-button span {
  display: block;

  width: 22px;
  height: 2px;
  margin: 5px auto;

  background-color: var(--color-white);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   08. HERO — ESTRUCTURA GENERAL
   Controla la altura y el ancho completo del Hero.
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;

  width: 100%;

  height: calc(100vh - var(--header-height));
  min-height: 700px;
  max-height: 1050px;

  overflow: hidden;

  display: flex;
  align-items: center;

  background-color: var(--color-dark);

  border-bottom: 3px solid rgba(255, 255, 255, 0.9);
}


/* =========================================================
   09. HERO — IMÁGENES DE FONDO
   Carrusel de imágenes WebP.
   ========================================================= */

.hero-backgrounds {
  position: absolute;
  inset: 0;

  z-index: -3;
}

.hero-background {
  position: absolute;
  inset: 0;

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

  opacity: 0;

  transform: scale(1.015);

  transition:
    opacity 1.2s ease,
    transform 8s ease;
}

.hero-background-active {
  opacity: 1;
  transform: scale(1);
}


/* =========================================================
   10. HERO — CAPA OSCURA
   Permite leer el texto sobre la imagen.
   ========================================================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.48) 31%,
      rgba(0, 0, 0, 0.16) 59%,
      rgba(0, 0, 0, 0.03) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.03) 65%,
      rgba(0, 0, 0, 0.3) 100%
    );
}


/* =========================================================
   11. HERO — CONTENEDOR Y POSICIÓN
   Controla dónde queda el bloque izquierdo.
   ========================================================= */

.hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 42px 0 28px;

  display: flex;
  align-items: center;
}

.hero-content {
  width: min(760px, 54%);

  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* =========================================================
   12. HERO — TÍTULO BASE
   Se usa como respaldo general.
   Los ajustes precisos por idioma están en la sección 18.
   ========================================================= */

.hero-title {
  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 760px;

  color: var(--color-white);

  font-size: clamp(2.35rem, 3.05vw, 3.75rem);
  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.035em;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title strong {
  color: var(--color-orange);
  font-weight: 900;
}


/* =========================================================
   13. HERO — DESCRIPCIÓN
   Texto bajo el título.
   ========================================================= */

.hero-description {
  max-width: 650px;

  margin-top: clamp(30px, 4vh, 52px);

  color: rgba(255, 255, 255, 0.94);

  font-size: clamp(1rem, 1.08vw, 1.22rem);
  font-weight: 400;
  line-height: 1.42;
}


/* =========================================================
   14. HERO — BOTONES
   Botón naranja y botón transparente.
   ========================================================= */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);

  color: var(--color-white);
  text-decoration: none;

  font-size: 0.94rem;
  font-weight: 700;

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

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);

  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.25);
}

.button-secondary {
  background-color: rgba(0, 0, 0, 0.38);
  border-color: var(--color-white);

  backdrop-filter: blur(5px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
}

.button-arrow {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}


/* =========================================================
   15. HERO — CAPACIDADES
   SIG, Modelación, IA, Software y Validación.
   ========================================================= */

.hero-capabilities {
  width: fit-content;
  max-width: 100%;

  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));

  margin-top: 38px;
  padding: 12px 0;

  background-color: rgba(0, 0, 0, 0.58);

  backdrop-filter: blur(5px);
}

.capability {
  min-width: 100px;
  padding: 0 14px;

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

  color: var(--color-white);
  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.capability:last-child {
  border-right: 0;
}

.capability-icon {
  min-height: 42px;

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

  color: var(--color-cyan);

  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.capability p {
  margin-top: 8px;

  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
}


/* =========================================================
   16. HERO — CONTROLES DEL CARRUSEL
   Puntos pequeños de cambio de imagen.
   ========================================================= */

.hero-slider-controls {
  position: absolute;

  right: 30px;
  bottom: 24px;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider-dot {
  width: 11px;
  height: 11px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;

  background-color: rgba(255, 255, 255, 0.3);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.hero-slider-dot-active {
  width: 34px;

  background-color: var(--color-orange);
  border-color: var(--color-orange);
}


/* =========================================================
   17. SECCIONES POSTERIORES TEMPORALES
   Evita que las secciones vacías generen espacios enormes.
   ========================================================= */

#investigacion,
#tecnologia,
#transferencia,
#campus,
#contacto {
  min-height: 0;
}


/* =========================================================
   18. HERO — COMPOSICIÓN TIPOGRÁFICA POR IDIOMA
   Controla las tres líneas del título en escritorio.
   No se aplica en tablet ni celular.
   ========================================================= */

@media (min-width: 1200px) {

  /* -------------------------------------------------------
     18.1 VERSIÓN EN ESPAÑOL
     Línea 1: Ciencia y tecnología geoespacial
     Línea 2: para comprender, analizar y
     Línea 3: gestionar el territorio
     ------------------------------------------------------- */

  html[lang="es"] .hero-content {
    width: 66%;
    max-width: 980px;
  }

  html[lang="es"] .hero-title {
    width: 100%;
    max-width: 980px;

    font-size: clamp(2.15rem, 2.65vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  html[lang="es"] .hero-title > span,
  html[lang="es"] .hero-title > strong {
    white-space: nowrap;
  }

  html[lang="es"] .hero-description {
    max-width: 650px;
  }


  /* -------------------------------------------------------
     18.2 ENGLISH VERSION
     Line 1: Geospatial science and technology
     Line 2: to understand, analyze and
     Line 3: manage the territory
     ------------------------------------------------------- */

  html[lang="en"] .hero-content {
    width: 68%;
    max-width: 1000px;
  }

  html[lang="en"] .hero-title {
    width: 100%;
    max-width: 1000px;

    font-size: clamp(2.1rem, 2.5vw, 3.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  html[lang="en"] .hero-title > span,
  html[lang="en"] .hero-title > strong {
    white-space: nowrap;
  }

  html[lang="en"] .hero-description {
    max-width: 720px;
  }
}


/* =========================================================
   19. ACCESIBILIDAD
   Reduce animaciones cuando el usuario lo solicita.
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-background,
  .button,
  .hero-slider-dot,
  .main-navigation a,
  .mobile-menu-button span {
    transition: none;
  }
}
/* =========================================================
   20. INVESTIGACIÓN — ADELANTO EN PÁGINA DE INICIO
   ========================================================= */

.research-preview {
  width: 100%;
  padding: 72px 0 96px;

  background-color: #1a0000;
  color: var(--color-white);
}

.research-container {
  width: min(88%, 1120px);
  margin: 0 auto;
}


/* =========================================================
   20.1 TÍTULO E INTRODUCCIÓN
   ========================================================= */

.research-title {
  margin-bottom: 42px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.research-intro {
  width: 100%;

  margin-bottom: 52px;
  padding: 25px 36px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.7);
}

.research-intro p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 1rem;
  line-height: 1.5;
}


/* =========================================================
   20.2 GEOPLOT LAB
   ========================================================= */

.research-lab-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 2.6fr)
    minmax(250px, 1fr);

  gap: 34px;
  align-items: stretch;

  margin-bottom: 78px;
}

.research-lab-visual {
  position: relative;

  min-height: 360px;
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: #050505;
}

.research-lab-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.research-lab-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.67) 38%,
      rgba(0, 0, 0, 0.12) 100%
    );
}

.research-lab-brand {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 42px 36px;
}

.research-lab-logo {
  width: 78px;
  height: 78px;

  object-fit: contain;
}

.research-lab-brand h3 {
  display: flex;
  align-items: baseline;
  gap: 8px;

  color: var(--color-white);

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.research-lab-brand strong {
  color: var(--color-orange);
  font-weight: 800;
}

.research-lab-button {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;
}


/* =========================================================
   20.3 TARJETAS DE TEXTO
   ========================================================= */

.research-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 30px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.78);
}

.research-text-card h3 {
  margin-bottom: 14px;

  color: var(--color-white);

  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.research-text-card p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 0.98rem;
  line-height: 1.48;
}


/* =========================================================
   20.4 CASO DE ESTUDIO
   ========================================================= */

.research-case-layout {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.85fr)
    minmax(0, 1.35fr);

  gap: 58px;
  align-items: center;
}

.research-video-card {
  width: min(100%, 420px);
  margin: 0 auto;
}

.research-video-wrapper {
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: #000000;
}

.research-video-wrapper iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

.research-case-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.research-case-card {
  width: 100%;
}

.research-case-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--color-orange);

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-case-button {
  min-width: 300px;
}
/* =========================================================
   21. TECNOLOGÍA — PRODUCTOS GEOPLOT
   ========================================================= */

.technology-preview {
  width: 100%;
  padding: 74px 0 96px;

  background-color: #190000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
}

.technology-container {
  width: min(88%, 1180px);
  margin: 0 auto;
}


/* =========================================================
   21.1 TÍTULO E INTRODUCCIÓN
   ========================================================= */

.technology-title {
  margin-bottom: 42px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.technology-intro {
  width: 100%;

  margin-bottom: 52px;
  padding: 25px 36px;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(15, 0, 0, 0.72);
}

.technology-intro p {
  color: rgba(255, 255, 255, 0.95);

  font-size: 1rem;
  line-height: 1.5;
}


/* =========================================================
   21.2 CUADRÍCULA DE PRODUCTOS
   ========================================================= */

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 46px 72px;
}


/* =========================================================
   21.3 TARJETAS
   ========================================================= */

.technology-card {
  min-height: 290px;
  padding: 24px;

  display: flex;
  flex-direction: column;

  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;

  background-color: rgba(12, 0, 0, 0.84);

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

.technology-card:hover {
  transform: translateY(-4px);

  border-color: var(--color-orange);

  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 122, 0, 0.12);
}


/* =========================================================
   21.4 IDENTIDAD VISUAL DE LOS PRODUCTOS
   Ícono pequeño + nombre al lado + colores por marca
   ========================================================= */

.technology-card-header {
  min-height: auto;
  margin-bottom: 16px;

  display: flex;
  align-items: center;
}

.technology-product-brand {
  width: 100%;
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 14px;
}

.technology-product-icon {
  display: block;

  width: 54px;
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  max-height: 54px;

  flex: 0 0 54px;

  object-fit: contain;
  object-position: center;
}

.technology-product-name {
  margin: 0;

  display: flex;
  align-items: flex-start;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: clamp(2rem, 2.25vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;

  white-space: nowrap;
}

.technology-product-name span {
  display: inline-block;
}

.technology-product-name sup {
  position: relative;
  top: -0.18em;

  margin-left: 4px;

  color: #ffffff;

  font-size: 0.34em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

/* Colores de nombres */

.product-name-white {
  color: #ffffff;
}

.product-name-orange {
  color: #ff7a00;
}

.product-name-blue {
  color: #4f8fd8;
}

.product-name-light-blue {
  color: #34aee8;
}

/* =========================================================
   21.5 CUERPO DE TARJETA
   ========================================================= */

.technology-card-body {
  flex: 1;

  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(135px, 0.75fr);

  gap: 18px;
  align-items: end;
}

.technology-card-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.technology-card-copy p {
  margin-bottom: 18px;

  color: rgba(255, 255, 255, 0.96);

  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}


/* =========================================================
   21.6 IMÁGENES DE PRODUCTOS
   ========================================================= */

.technology-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;

  align-self: end;

  object-fit: cover;
  object-position: center;

  border-radius: 4px;
}


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

.technology-button {
  min-width: 225px;
  min-height: 40px;

  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border: 2px solid var(--color-orange);
  border-radius: 12px;

  background-color: rgba(0, 0, 0, 0.2);
  color: var(--color-white);

  text-decoration: none;

  font-size: 0.88rem;
  font-weight: 700;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.technology-button:hover,
.technology-button:focus-visible {
  transform: translateY(-2px);

  background-color: var(--color-orange);
}
/* =========================================================
   22. TRANSFERENCIA TECNOLÓGICA
   ========================================================= */

.transfer-preview {
  width: 100%;
  padding: 74px 0 96px;

  background-color: #000000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.transfer-container {
  width: min(88%, 1180px);
  margin: 0 auto;
}


/* =========================================================
   22.1 TÍTULO
   ========================================================= */

.transfer-title {
  margin-bottom: 52px;

  color: var(--color-white);

  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}


/* =========================================================
   22.2 TEXTO Y BOTÓN
   ========================================================= */

.transfer-main {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(190px, 0.28fr);

  gap: 44px;
  align-items: center;

  margin-bottom: 32px;
}

.transfer-description {
  padding: 30px 38px;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: rgba(20, 20, 22, 0.78);
}

.transfer-description p {
  color: rgba(255, 255, 255, 0.96);

  font-size: clamp(1rem, 1.12vw, 1.2rem);
  font-weight: 400;
  line-height: 1.45;
}

.transfer-button {
  min-width: 205px;
  min-height: 58px;

  justify-self: center;

  padding: 0 28px;

  font-size: 1.1rem;
  font-weight: 800;
}


/* =========================================================
   22.3 IMAGEN DE RECURSOS
   ========================================================= */

.transfer-resources-image-wrapper {
  width: min(100%, 1040px);
  margin: 0 auto;

  overflow: hidden;

  background-color: #000000;
}

.transfer-resources-image {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
  object-position: center;
}
/* =========================================================
   23. GEOPLOT CAMPUS
   ========================================================= */

.campus-preview {
  width: 100%;
  padding: 72px 0 88px;

  background-color: #000000;
  color: var(--color-white);

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.campus-container {
  width: min(88%, 1120px);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 2.5fr)
    minmax(250px, 1fr);

  gap: 34px;
  align-items: stretch;
}


/* =========================================================
   23.1 TARJETA VISUAL PRINCIPAL
   ========================================================= */

.campus-visual-card {
  position: relative;

  min-height: 360px;
  overflow: hidden;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: #050505;
}

.campus-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.campus-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 30%,
      rgba(0, 0, 0, 0.38) 56%,
      rgba(0, 0, 0, 0.08) 100%
    );
}


/* =========================================================
   23.2 IDENTIDAD GEOPLOT CAMPUS
   ========================================================= */

.campus-brand {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 38px 36px;
}

.campus-logo {
  width: 92px;
  height: 92px;

  flex: 0 0 92px;

  object-fit: contain;
  object-position: center;
}

.campus-brand-copy {
  min-width: 0;
}

.campus-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.campus-name-white {
  color: #ffffff;
}

.campus-name-orange {
  color: var(--color-orange);
}

.campus-platform {
  margin-top: 12px;

  color: #ffffff;

  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
}


/* =========================================================
   23.3 BOTÓN
   ========================================================= */

.campus-button {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 2;

  min-width: 205px;
  min-height: 58px;

  font-size: 1.05rem;
  font-weight: 800;
}


/* =========================================================
   23.4 TARJETA DE DESCRIPCIÓN
   ========================================================= */

.campus-description-card {
  display: flex;
  align-items: center;

  padding: 34px;

  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 14px;

  background-color: #050505;
}

.campus-description-card p {
  color: rgba(255, 255, 255, 0.96);

  font-size: clamp(1rem, 1.12vw, 1.15rem);
  font-weight: 400;
  line-height: 1.35;
}
/* =========================================================
   24. FOOTER GEOPLOT
   ========================================================= */

.site-footer {
  width: 100%;

  background-color: #090000;
  color: #ffffff;

  border-top: 2px solid rgba(255, 255, 255, 0.92);
}


/* =========================================================
   24.1 NAVEGACIÓN PRINCIPAL DEL FOOTER
   ========================================================= */

.footer-main {
  padding: 38px 0 34px;

  background-color: #090000;
}

.footer-main-container {
  width: min(94%, 1440px);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(190px, 1.3fr)
    minmax(120px, 0.85fr)
    minmax(150px, 1.15fr)
    minmax(120px, 0.85fr)
    minmax(150px, 1fr)
    minmax(110px, 0.75fr)
    minmax(145px, 0.95fr);

  gap: 28px;
  align-items: start;
}


/* =========================================================
   24.2 MARCA GEOPLOT
   ========================================================= */

.footer-brand {
  min-width: 0;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;
  text-decoration: none;
}

.footer-logo {
  width: 64px;
  height: 64px;

  flex: 0 0 64px;

  object-fit: contain;
}

.footer-brand-copy {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.footer-brand-tagline {
  margin-top: 7px;

  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   24.3 COLUMNAS DEL FOOTER
   ========================================================= */

.footer-column {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 3px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.footer-contact h2 {
  color: var(--color-orange);
}

.footer-column a,
.footer-column p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.77rem;
  font-weight: 400;
  line-height: 1.3;

  text-decoration: none;
}

.footer-column a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--color-orange);

  transform: translateX(2px);
}


/* =========================================================
   24.4 MENSAJE Y REDES SOCIALES
   ========================================================= */

.footer-social {
  padding: 34px 0 30px;

  background-color: #000000;

  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
}

.footer-social-container {
  width: min(92%, 1050px);
  margin: 0 auto;

  text-align: center;
}

.footer-message {
  color: rgba(255, 255, 255, 0.94);

  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 400;
  line-height: 1.35;
}

.footer-social-links {
  width: fit-content;
  max-width: 100%;

  margin: 28px auto 0;
  padding: 12px 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  background-color: #000000;
}

.footer-social-links a {
  width: 46px;
  height: 46px;

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

  border-radius: 8px;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  transform: translateY(-4px);

  background-color: rgba(0, 0, 0, 0.08);
}

.footer-social-links img {
  width: 38px;
  height: 38px;

  object-fit: contain;
}


/* =========================================================
   24.5 INFORMACIÓN LEGAL
   ========================================================= */

.footer-legal {
  padding: 32px 0 36px;

  background-color: #090000;
}

.footer-legal-container {
  width: min(92%, 1100px);
  margin: 0 auto;

  text-align: center;
}

.footer-legal-container p {
  color: rgba(255, 255, 255, 0.9);

  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-legal-links {
  margin-top: 13px;

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

.footer-legal-links a {
  padding: 0 8px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.77rem;
  line-height: 1.3;

  text-decoration: none;

  border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-legal-links a:last-child {
  border-right: 0;
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--color-orange);
}
/* GitHub: convertir icono negro en blanco */
.footer-icon-github {
  filter: invert(1);
}
/* =========================================================
   PÁGINA NOSOTROS
   ========================================================= */

/* Evita que los enlaces internos queden ocultos bajo el header */
#quienes-somos,
#filosofia,
#equipo {
  scroll-margin-top: 110px;
}


/* =========================================================
   ESTRUCTURA GENERAL DE PÁGINAS INTERIORES
   ========================================================= */

.internal-page {
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.internal-container,
.internal-hero-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


/* =========================================================
   HERO NOSOTROS
   ========================================================= */

.internal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 590px;
  padding: 185px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 32%,
      rgba(0, 108, 255, 0.23),
      transparent 35%
    ),
    radial-gradient(
      circle at 72% 78%,
      rgba(0, 190, 255, 0.09),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #030303 0%,
      #07111f 58%,
      #030303 100%
    );
}

.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    #000 55%,
    rgba(0, 0, 0, 0.2)
  );
}

.internal-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -330px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.018),
    0 0 0 180px rgba(255, 255, 255, 0.012);
}

.internal-hero-container {
  position: relative;
  z-index: 1;
}

.internal-eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #58aaff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.internal-title {
  max-width: 990px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.internal-description {
  max-width: 790px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}


/* =========================================================
   NAVEGACIÓN INTERNA
   ========================================================= */

.about-section-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.about-section-navigation a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.about-section-navigation a:hover {
  border-color: rgba(88, 170, 255, 0.55);
  background: rgba(88, 170, 255, 0.1);
  transform: translateY(-2px);
}


/* =========================================================
   SECCIONES GENERALES
   ========================================================= */

.about-section {
  padding: 112px 0;
  background: #050505;
}

.about-section-alternate {
  background: #0a0d12;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 82px;
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 130px;
}

.about-heading h2,
.about-section-header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.about-content {
  display: grid;
  gap: 26px;
}

.about-content p,
.about-section-header > p:last-child,
.about-capability p,
.about-principle-card p,
.about-team-copy p,
.about-work-model-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.82;
}

.about-section-header {
  max-width: 800px;
  margin-bottom: 58px;
}

.about-section-header > p:last-child {
  margin-top: 24px;
}


/* =========================================================
   CAPACIDADES
   ========================================================= */

.about-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 80px;
}

.about-capability {
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.015)
    );
}

.about-capability-number,
.about-principle-number {
  display: block;
  margin-bottom: 58px;
  color: #58aaff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-capability h3,
.about-principle-card h3,
.about-work-model-item h3 {
  margin: 0 0 17px;
  font-size: 1.32rem;
  line-height: 1.25;
}


/* =========================================================
   FILOSOFÍA
   ========================================================= */

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-principle-card {
  min-height: 335px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.about-principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 170, 255, 0.32);
  background: rgba(88, 170, 255, 0.045);
}


/* =========================================================
   EQUIPO
   ========================================================= */

.about-team-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 72px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(39, 131, 255, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(14, 33, 58, 0.8),
      rgba(7, 10, 15, 0.96)
    );
}

.about-team-copy h3 {
  max-width: 660px;
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-team-copy .button {
  margin-top: 34px;
}

.about-team-disciplines {
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-team-disciplines span {
  padding: 12px 17px;
  border: 1px solid rgba(88, 170, 255, 0.28);
  border-radius: 999px;
  background: rgba(88, 170, 255, 0.075);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}


/* =========================================================
   MODELO DE TRABAJO
   ========================================================= */

.about-work-model {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.about-work-model-item {
  padding: 30px 4px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.about-cta {
  padding: 84px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(0, 118, 255, 0.15),
      transparent 34%
    ),
    #080a0e;
}

.about-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}


/* =========================================================
   NAVEGACIÓN ACTIVA
   ========================================================= */

.main-navigation a.navigation-active {
  color: #ffffff;
}

.main-navigation a.navigation-active::after {
  transform: scaleX(1);
}


/* =========================================================
   ERROR DE COMPONENTES
   ========================================================= */

.component-error {
  margin: 0;
  padding: 18px 24px;
  background: #3a1010;
  color: #ffffff;
  text-align: center;
}
/* =========================================================
   PÁGINA SOLUCIONES
   ========================================================= */

#gestion-riesgo,
#inteligencia-territorial,
#geociencias-marinas,
#geofisica-subsuelo,
#infraestructura-territorio,
#software-geoespacial {
  scroll-margin-top: 110px;
}


/* =========================================================
   ESTRUCTURA GENERAL
   ========================================================= */

.solutions-page {
  background: #050505;
  color: #ffffff;
}

.solution-section {
  padding: 110px 0;
  background: #050505;
}

.solution-section-alternate {
  background: #0a0d12;
}

.solution-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 84px;
  align-items: start;
}


/* =========================================================
   COLUMNA IZQUIERDA
   ========================================================= */

.solution-heading {
  position: sticky;
  top: 130px;
}

.solution-number {
  display: block;
  margin-bottom: 18px;
  color: #58aaff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-heading h2 {
  max-width: 390px;
  margin: 0;

  font-size: clamp(1.9rem, 2.8vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* =========================================================
   COLUMNA DERECHA
   ========================================================= */

.solution-content {
  display: grid;
  gap: 48px;
}

.solution-description {
  display: grid;
  gap: 24px;
}

.solution-description p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.82;
}


/* =========================================================
   APLICACIONES
   ========================================================= */

.solution-applications {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.012)
    );
}

.solution-applications h3 {
  margin: 0 0 24px;
  font-size: 1.3rem;
}

.solution-applications ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-applications li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.solution-applications li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58aaff;
}


/* =========================================================
   TECNOLOGÍAS ASOCIADAS
   Botones naranjos con logos de productos
   ========================================================= */

.solution-technologies {
  padding-top: 10px;
}

.solution-technologies-label {
  margin: 0 0 18px;

  color: rgba(255, 255, 255, 0.56);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Contenedor de botones */

.solution-technology-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}


/* Botón principal */

.solution-technology-button {
  min-width: 240px;
  min-height: 68px;

  padding: 11px 18px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border: 2px solid var(--color-orange);
  border-radius: 16px;

  background-color: var(--color-orange);
  color: #ffffff;

  text-decoration: none;

  font-size: 0.98rem;
  font-weight: 800;

  box-shadow:
    0 8px 22px rgba(255, 122, 0, 0.16);

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


/* Logo y nombre juntos */

.solution-technology-identity {
  min-width: 0;

  display: inline-flex;
  align-items: center;
  gap: 13px;
}


/* Logo del producto */

.solution-technology-logo {
  width: 42px;
  height: 42px;
  min-width: 42px;

  flex: 0 0 42px;

  object-fit: contain;
  object-position: center;
}


/* Nombre del producto */

.solution-technology-identity > span {
  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;

  white-space: nowrap;
}


/* Círculo de la flecha */

.solution-technology-arrow {
  width: 32px;
  height: 32px;

  flex: 0 0 32px;

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

  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;

  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;

  transition:
    transform 0.22s ease,
    background-color 0.22s ease;
}


/* Efecto al pasar el mouse */

.solution-technology-button:hover,
.solution-technology-button:focus-visible {
  transform: translateY(-5px) scale(1.07);

  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);

  box-shadow:
    0 18px 38px rgba(255, 122, 0, 0.32);
}


/* Movimiento de flecha */

.solution-technology-button:hover .solution-technology-arrow,
.solution-technology-button:focus-visible .solution-technology-arrow {
  transform: translateX(4px);

  background-color: rgba(0, 0, 0, 0.3);
}


/* Accesibilidad del teclado */

.solution-technology-button:focus-visible {
  outline: 3px solid rgba(255, 174, 92, 0.72);
  outline-offset: 4px;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.solutions-cta {
  padding: 90px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(
      circle at 12% 45%,
      rgba(0, 118, 255, 0.16),
      transparent 34%
    ),
    #080a0e;
}

.solutions-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.solutions-cta-copy {
  max-width: 820px;
}

.solutions-cta-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.solutions-cta-copy p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}
/* =========================================================
   PÁGINA TECNOLOGÍA
   ========================================================= */

.technology-page {
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.technology-page-introduction {
  padding: 92px 0 72px;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(255, 122, 0, 0.12),
      transparent 32%
    ),
    #050505;
}

.technology-page-title {
  max-width: 900px;
  margin: 0;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.technology-page-description {
  max-width: 780px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1.08rem;
  line-height: 1.72;
}


/* =========================================================
   GRUPOS DE TECNOLOGÍAS
   ========================================================= */

.technology-group {
  padding: 100px 0;
  background: #050505;
}

.technology-group-alternate {
  background: #0b0505;
}

.technology-group-header {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  align-items: start;

  margin-bottom: 48px;
}

.technology-group-number {
  display: block;

  color: #58aaff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.technology-group-header h2 {
  margin: 0;

  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.technology-group-header > div > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1.03rem;
  line-height: 1.7;
}


/* =========================================================
   LISTADO
   ========================================================= */

.technology-list {
  display: grid;
  gap: 42px;
}


/* =========================================================
   TARJETA PRINCIPAL
   ========================================================= */

.technology-list-card {
  padding: 34px;

  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 0, 0, 0.92),
      rgba(8, 0, 0, 0.98)
    );

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

.technology-list-card:hover {
  transform: translateY(-5px);

  border-color: var(--color-orange);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 122, 0, 0.12);
}


/* =========================================================
   IDENTIDAD DEL PRODUCTO
   ========================================================= */

.technology-list-brand {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-bottom: 34px;
}

.technology-list-logo {
  width: 72px;
  height: 72px;
  min-width: 72px;

  flex: 0 0 72px;

  object-fit: contain;
  object-position: center;
}

.technology-list-name {
  display: flex;
  align-items: flex-start;

  margin: 0;

  font-size: clamp(2.4rem, 4.3vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;

  white-space: nowrap;
}

.technology-list-name span {
  display: inline-block;
}

.technology-list-name sup {
  position: relative;
  top: -0.15em;

  margin-left: 6px;

  color: #ffffff;

  font-size: 0.3em;
  font-weight: 900;
  line-height: 1;
}


/* Colores de productos */

.technology-name-white {
  color: #ffffff;
}

.technology-name-orange {
  color: #ff7a00;
}

.technology-name-blue {
  color: #4f8fd8;
}

.technology-name-light-blue {
  color: #34aee8;
}


/* =========================================================
   CUERPO DE LA TARJETA
   ========================================================= */

.technology-list-body {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(280px, 0.65fr);

  gap: 44px;
  align-items: center;
}

.technology-list-content {
  min-width: 0;
}

.technology-list-summary {
  max-width: 700px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 750;
  line-height: 1.42;
}

.technology-list-detail {
  max-width: 720px;
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   ETIQUETAS DE APLICACIONES
   ========================================================= */

.technology-list-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 28px;
}

.technology-list-applications span {
  padding: 10px 14px;

  border: 1px solid rgba(88, 170, 255, 0.28);
  border-radius: 999px;

  background: rgba(88, 170, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);

  font-size: 0.82rem;
  font-weight: 600;
}


/* =========================================================
   IMAGEN DEL PRODUCTO
   ========================================================= */

.technology-list-visual {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 240px;
}

.technology-list-visual img {
  width: 100%;
  max-width: 360px;
  max-height: 260px;

  object-fit: contain;
  object-position: center;

  border-radius: 10px;
}


/* =========================================================
   BOTÓN
   ========================================================= */

.technology-page-button {
  width: min(100%, 330px);
  min-height: 56px;

  margin-top: 30px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border: 2px solid var(--color-orange);
  border-radius: 14px;

  background: transparent;
  color: #ffffff;

  text-decoration: none;

  font-size: 0.98rem;
  font-weight: 800;

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

.technology-page-button:hover,
.technology-page-button:focus-visible {
  transform: translateY(-3px);

  background-color: var(--color-orange);

  box-shadow:
    0 14px 30px rgba(255, 122, 0, 0.24);
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.technology-page-cta {
  padding: 90px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(255, 122, 0, 0.13),
      transparent 34%
    ),
    #080808;
}

.technology-page-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.technology-page-cta-container > div:first-child {
  max-width: 790px;
}

.technology-page-cta h2 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.technology-page-cta p:last-child {
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1.04rem;
  line-height: 1.7;
}

.technology-page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;

  flex-shrink: 0;
}
/* =========================================================
   NOSOTROS — TÍTULO MÁS PEQUEÑO
   ========================================================= */

body[data-page="nosotros"] .internal-hero .internal-title {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 !important;

  font-size: 48px !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.035em !important;
}
/* =========================================================
   PÁGINA GEOPLOT CAMPUS
   Estética blanca, educativa y comercial
   ========================================================= */

.campus-page {
  min-height: 100vh;
  background: #ffffff;
  color: #10213f;
}

.campus-page-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


/* =========================================================
   COLORES Y TEXTOS GENERALES
   ========================================================= */

.campus-section-label,
.campus-page-eyebrow {
  margin: 0 0 14px;

  color: #ff7a00;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campus-section-title {
  max-width: 780px;
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.campus-section-title-center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.campus-section-description {
  max-width: 720px;
  margin: 20px 0 0;

  color: #657187;

  font-size: 1.02rem;
  line-height: 1.72;
}

.campus-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;

  margin-bottom: 42px;
}


/* =========================================================
   BOTONES GENERALES CAMPUS
   ========================================================= */

.campus-page-button {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  border: 2px solid transparent;
  border-radius: 12px;

  text-decoration: none;

  font-size: 0.93rem;
  font-weight: 800;

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

.campus-page-button:hover,
.campus-page-button:focus-visible {
  transform: translateY(-3px);
}

.campus-page-button-primary {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #ffffff;
}

.campus-page-button-primary:hover,
.campus-page-button-primary:focus-visible {
  background: #ff9138;
  border-color: #ff9138;

  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.22);
}

.campus-page-button-secondary {
  background: transparent;
  border-color: #10213f;
  color: #10213f;
}

.campus-page-button-secondary:hover,
.campus-page-button-secondary:focus-visible {
  background: #10213f;
  color: #ffffff;
}

.campus-page-button-secondary-dark {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.campus-page-button-secondary-dark:hover,
.campus-page-button-secondary-dark:focus-visible {
  background: #ffffff;
  color: #10213f;
}

.campus-page-button-light {
  background: #ffffff;
  border-color: #ffffff;
  color: #10213f;
}

.campus-page-button-light:hover,
.campus-page-button-light:focus-visible {
  background: #f1f4f8;
}


/* =========================================================
   HERO CAMPUS
   ========================================================= */

.campus-page-hero {
  padding: 62px 0 58px;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(0, 87, 185, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f8fc 100%
    );

  border-bottom: 1px solid #dfe5ec;
}

.campus-page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 62px;
  align-items: center;
}

.campus-page-hero-content {
  min-width: 0;
}

.campus-page-brand {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 30px;
}

.campus-page-brand-logo {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;

  object-fit: contain;
}

.campus-page-brand-copy {
  min-width: 0;
}

.campus-page-brand-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;

  margin: 0;

  font-size: clamp(1.75rem, 2.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.campus-page-brand-name span {
  color: #10213f;
}

.campus-page-brand-name strong {
  color: #ff7a00;
}

.campus-page-brand-platform {
  margin: 8px 0 0;

  color: #657187;

  font-size: 0.84rem;
  font-weight: 700;
}

.campus-page-hero h1 {
  max-width: 650px;
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.campus-page-hero-description {
  max-width: 700px;
  margin: 26px 0 0;

  color: #59677c;

  font-size: 1.06rem;
  line-height: 1.72;
}

.campus-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 30px;
}

.campus-page-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-page-hero-visual img {
  width: 100%;
  max-width: 560px;
  max-height: 430px;

  object-fit: contain;

  border-radius: 18px;

  box-shadow:
    0 24px 60px rgba(20, 42, 78, 0.16);
}


/* =========================================================
   BENEFICIOS
   ========================================================= */

.campus-benefits {
  padding: 82px 0;
  background: #ffffff;
}

.campus-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

  margin-top: 44px;
}

.campus-benefit-card {
  min-height: 210px;
  padding: 28px;

  border: 1px solid #dfe5ec;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 28px rgba(23, 47, 86, 0.06);
}

.campus-benefit-icon {
  width: 46px;
  height: 46px;

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

  border-radius: 12px;

  background: #edf5ff;
  color: #165fc7;

  font-size: 1.35rem;
  font-weight: 800;
}

.campus-benefit-card h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.12rem;
}

.campus-benefit-card p {
  margin: 0;

  color: #657187;

  font-size: 0.94rem;
  line-height: 1.58;
}


/* =========================================================
   HABILIDADES
   ========================================================= */

.campus-skills {
  padding: 82px 0;

  background: #f5f8fc;
}

.campus-skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;

  margin-top: 38px;
}

.campus-skill-card {
  min-height: 150px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid #dce4ee;
  border-radius: 16px;

  background: #ffffff;
}

.campus-skill-card > span {
  color: #165fc7;

  font-size: 1.6rem;
  font-weight: 800;
}

.campus-skill-card h3 {
  margin: 24px 0 0;

  color: #10213f;

  font-size: 1rem;
  line-height: 1.3;
}


/* =========================================================
   CURSOS DESTACADOS
   ========================================================= */

.campus-courses {
  padding: 92px 0;

  background: #ffffff;
}

.campus-text-link {
  flex-shrink: 0;

  color: #165fc7;

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.campus-text-link:hover {
  color: #ff7a00;
}

.campus-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.campus-course-card {
  min-width: 0;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 14px 34px rgba(23, 47, 86, 0.08);

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

.campus-course-card:hover {
  transform: translateY(-5px);

  border-color: rgba(22, 95, 199, 0.35);

  box-shadow: 0 22px 44px rgba(23, 47, 86, 0.14);
}

.campus-course-image {
  position: relative;

  min-height: 185px;
  padding: 18px;

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

  overflow: hidden;
}

.campus-course-image-qgis {
  background:
    linear-gradient(135deg, #d7efc8, #538f3e);
}

.campus-course-image-remote {
  background:
    linear-gradient(135deg, #bfe7ff, #195ca8);
}

.campus-course-image-risk {
  background:
    linear-gradient(135deg, #ffe0ba, #e05b26);
}

.campus-course-image-morphoflow {
  background:
    radial-gradient(circle, rgba(0, 157, 255, 0.28), transparent 55%),
    #07111f;
}

.campus-course-image-python {
  background:
    linear-gradient(135deg, #27384d, #0b1524);
}

.campus-course-image-chirp {
  background:
    radial-gradient(circle, rgba(0, 174, 255, 0.25), transparent 55%),
    #050d18;
}

.campus-course-image img {
  width: 92px;
  height: 92px;

  object-fit: contain;
}

.campus-course-badge {
  position: absolute;
  top: 14px;
  left: 14px;

  padding: 7px 10px;

  border-radius: 999px;

  background: #ffffff;
  color: #10213f;

  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;

  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
}

.campus-course-badge-specialized {
  background: #ff7a00;
  color: #ffffff;
}

.campus-course-image-symbol {
  color: #ffffff;

  font-size: 2.1rem;
  font-weight: 900;

  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.campus-course-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 24px;
}

.campus-course-category {
  margin: 0 0 9px;

  color: #ff7a00;

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

.campus-course-content h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.22rem;
  line-height: 1.28;
}

.campus-course-description {
  margin: 14px 0 0;

  color: #657187;

  font-size: 0.91rem;
  line-height: 1.55;
}

.campus-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 20px;
}

.campus-course-meta span {
  padding: 7px 9px;

  border-radius: 999px;

  background: #f0f4f9;
  color: #59677c;

  font-size: 0.7rem;
  font-weight: 700;
}

.campus-course-button {
  margin-top: auto;
  padding-top: 22px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  color: #165fc7;

  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.campus-course-button:hover {
  color: #ff7a00;
}

.campus-courses-footer {
  display: flex;
  justify-content: center;

  margin-top: 42px;
}


/* =========================================================
   MOODLE
   ========================================================= */

.campus-moodle {
  padding: 92px 0;

  background: #edf3fb;
}

.campus-moodle-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.campus-moodle-screen {
  overflow: hidden;

  border: 1px solid #cbd7e6;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 22px 50px rgba(23, 47, 86, 0.14);
}

.campus-moodle-screen-header {
  padding: 18px 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: #10213f;
  color: #ffffff;
}

.campus-moodle-screen-header img {
  width: 42px;
  height: 42px;

  object-fit: contain;
}

.campus-moodle-screen-header div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.campus-moodle-screen-header strong {
  font-size: 0.95rem;
}

.campus-moodle-screen-header span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.72rem;
}

.campus-moodle-screen-body {
  min-height: 330px;

  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
}

.campus-moodle-sidebar {
  padding: 24px 16px;

  display: flex;
  flex-direction: column;
  gap: 13px;

  background: #f2f5f9;
  color: #55657b;

  font-size: 0.78rem;
  font-weight: 700;
}

.campus-moodle-dashboard {
  padding: 28px;
}

.campus-moodle-dashboard > p {
  margin: 0 0 24px;

  color: #10213f;

  font-size: 1.2rem;
  font-weight: 800;
}

.campus-moodle-course-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;

  margin-top: 20px;

  color: #34445c;

  font-size: 0.82rem;
}

.campus-moodle-progress {
  height: 8px;
  margin-top: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: #e4eaf1;
}

.campus-moodle-progress span {
  display: block;
  height: 100%;

  border-radius: inherit;

  background: #ff7a00;
}

.campus-moodle-content h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.08;
}

.campus-moodle-content > p {
  margin: 22px 0 0;

  color: #657187;

  line-height: 1.7;
}

.campus-check-list {
  margin: 28px 0;
  padding: 0;

  display: grid;
  gap: 12px;

  list-style: none;
}

.campus-check-list li {
  position: relative;

  padding-left: 28px;

  color: #4f5f75;

  font-size: 0.94rem;
  line-height: 1.5;
}

.campus-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #ff7a00;

  font-weight: 900;
}


/* =========================================================
   CÓMO FUNCIONA
   ========================================================= */

.campus-process {
  padding: 92px 0;

  background: #ffffff;
}

.campus-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 42px;
}

.campus-process-card {
  padding: 30px;

  border-top: 4px solid #165fc7;
  border-radius: 14px;

  background: #f7f9fc;
}

.campus-process-number {
  color: #ff7a00;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.campus-process-card h3 {
  margin: 28px 0 12px;

  color: #10213f;

  font-size: 1.22rem;
}

.campus-process-card p {
  margin: 0;

  color: #657187;

  font-size: 0.93rem;
  line-height: 1.6;
}

.campus-process-card a {
  display: inline-block;
  margin-top: 24px;

  color: #165fc7;

  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}


/* =========================================================
   MODALIDADES
   ========================================================= */

.campus-modalities {
  padding: 92px 0;

  background: #f5f8fc;
}

.campus-modalities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 42px;
}

.campus-modality-card {
  min-height: 240px;
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.campus-modality-icon {
  width: 48px;
  height: 48px;

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

  border-radius: 14px;

  background: #edf5ff;
  color: #165fc7;

  font-size: 1.35rem;
}

.campus-modality-card h3 {
  margin: 24px 0 12px;

  color: #10213f;

  font-size: 1.2rem;
}

.campus-modality-card p {
  margin: 0;

  color: #657187;

  font-size: 0.94rem;
  line-height: 1.62;
}


/* =========================================================
   INVESTIGACIÓN APLICADA
   ========================================================= */

.campus-research {
  padding: 92px 0;

  background: #10213f;
  color: #ffffff;
}

.campus-research-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.campus-research .campus-section-label {
  color: #ff9a42;
}

.campus-research .campus-section-title {
  color: #ffffff;
}

.campus-research-content > p:not(.campus-section-label) {
  margin: 24px 0 30px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.7;
}

.campus-research-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.campus-research-project {
  padding: 20px;

  display: flex;
  align-items: center;
  gap: 14px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.campus-research-project:hover {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.1);
}

.campus-research-project img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  object-fit: contain;
}

.campus-research-project h3 {
  margin: 0;

  font-size: 1rem;
}

.campus-research-project p {
  margin: 5px 0 0;

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.78rem;
}


/* =========================================================
   INSTITUCIONES
   ========================================================= */

.campus-institutions {
  padding: 92px 0;

  background: #ffffff;
}

.campus-institutions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.campus-institutions-layout > div:first-child > p:last-child {
  margin: 22px 0 0;

  color: #657187;

  line-height: 1.7;
}

.campus-institutions-content {
  padding: 32px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.campus-check-list-dark li {
  color: #4f5f75;
}


/* =========================================================
   CERTIFICACIÓN
   ========================================================= */

.campus-certification {
  padding: 92px 0;

  background: #f5f8fc;
}

.campus-certification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 42px;
}

.campus-certification-card {
  min-height: 220px;
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.campus-certification-card > span {
  color: #165fc7;

  font-size: 1.6rem;
}

.campus-certification-card h3 {
  margin: 24px 0 12px;

  color: #10213f;

  font-size: 1.18rem;
}

.campus-certification-card p {
  margin: 0;

  color: #657187;

  font-size: 0.93rem;
  line-height: 1.62;
}


/* =========================================================
   PREGUNTAS FRECUENTES
   ========================================================= */

.campus-faq {
  padding: 92px 0;

  background: #ffffff;
}

.campus-faq-list {
  max-width: 900px;
  margin-top: 42px;

  display: grid;
  gap: 12px;
}

.campus-faq-item {
  padding: 0 22px;

  border: 1px solid #dce4ee;
  border-radius: 14px;

  background: #ffffff;
}

.campus-faq-item summary {
  padding: 20px 0;

  cursor: pointer;

  color: #10213f;

  font-size: 0.98rem;
  font-weight: 800;
}

.campus-faq-item p {
  padding: 0 0 20px;

  color: #657187;

  font-size: 0.92rem;
  line-height: 1.62;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.campus-final-cta {
  padding: 80px 0;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(0, 132, 255, 0.22),
      transparent 34%
    ),
    #071a36;

  color: #ffffff;
}

.campus-final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.campus-final-cta-layout > div:first-child {
  max-width: 780px;
}

.campus-final-label {
  margin: 0 0 14px;

  color: #ff9a42;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campus-final-cta h2 {
  margin: 0;

  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.campus-final-cta p {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.7;
}

.campus-final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;

  flex-shrink: 0;
}
/* =========================================================
   PÁGINA CONTACTO
   ========================================================= */

.contact-page {
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
}

.contact-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.contact-introduction {
  padding: 105px 0 82px;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(22, 95, 199, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #030303 0%,
      #07111f 60%,
      #030303 100%
    );

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-eyebrow,
.contact-section-label {
  margin: 0 0 16px;

  color: #58aaff;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-introduction h1 {
  max-width: 850px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact-introduction-description {
  max-width: 780px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.06rem;
  line-height: 1.72;
}


/* =========================================================
   SECCIÓN PRINCIPAL
   ========================================================= */

.contact-main-section {
  padding: 92px 0;

  background: #050505;
}

.contact-main-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.78fr)
    minmax(0, 1.22fr);

  gap: 42px;
  align-items: start;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.contact-information-card,
.contact-form-card {
  padding: 38px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );
}

/* Solo título GEOPLOT SpA */

.contact-information-card h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.contact-information-introduction,
.contact-form-description {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.96rem;
  line-height: 1.65;
}


/* =========================================================
   INFORMACIÓN DE CONTACTO
   ========================================================= */

.contact-information-list {
  display: grid;
  gap: 25px;

  margin-top: 34px;
}

.contact-information-item {
  padding-bottom: 22px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-information-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-information-label {
  display: block;

  margin-bottom: 8px;

  color: rgba(255, 255, 255, 0.5);

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

.contact-information-item a,
.contact-information-item p {
  margin: 0;

  color: #ffffff;

  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.contact-information-item a {
  transition: color 0.2s ease;
}

.contact-information-item a:hover,
.contact-information-item a:focus-visible {
  color: var(--color-orange);
}


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

.contact-direct-actions {
  display: grid;
  gap: 13px;

  margin-top: 34px;
}

.contact-whatsapp-button,
.contact-email-button {
  width: 100%;
  min-height: 58px;

  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  border-radius: 14px;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.92rem;
  font-weight: 800;

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

.contact-whatsapp-button {
  border: 2px solid #25d366;
  background: #25d366;

  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.16);
}

.contact-whatsapp-button:hover,
.contact-whatsapp-button:focus-visible {
  transform: translateY(-3px);

  background: #20bd5a;
  border-color: #20bd5a;

  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.3);
}

.contact-whatsapp-button img {
  width: 28px;
  height: 28px;

  flex: 0 0 28px;

  object-fit: contain;
}

.contact-whatsapp-button > span:nth-of-type(1) {
  flex: 1;
}

.contact-email-button {
  border: 2px solid rgba(255, 255, 255, 0.75);

  background: transparent;
}

.contact-email-button:hover,
.contact-email-button:focus-visible {
  transform: translateY(-3px);

  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.contact-button-arrow {
  font-size: 1.12rem;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  margin-top: 32px;
}

.contact-form-field {
  min-width: 0;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-field label {
  display: block;

  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;

  font-family: inherit;
  font-size: 0.94rem;

  outline: none;

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

.contact-form-field input,
.contact-form-field select {
  height: 52px;
  padding: 0 15px;
}

.contact-form-field textarea {
  min-height: 155px;
  padding: 15px;

  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form-field select {
  color-scheme: dark;
}

.contact-form-field select option {
  background: #11151b;
  color: #ffffff;
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: #58aaff;

  background: rgba(88, 170, 255, 0.07);

  box-shadow: 0 0 0 3px rgba(88, 170, 255, 0.12);
}


/* =========================================================
   CONSENTIMIENTO
   ========================================================= */

.contact-form-consent {
  grid-column: 1 / -1;

  display: flex;
  align-items: flex-start;
  gap: 11px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;

  accent-color: var(--color-orange);
}


/* =========================================================
   BOTÓN FORMULARIO
   ========================================================= */

.contact-submit-button {
  grid-column: 1 / -1;

  min-height: 58px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 2px solid var(--color-orange);
  border-radius: 14px;

  background: var(--color-orange);
  color: #ffffff;

  cursor: pointer;

  font-size: 0.95rem;
  font-weight: 800;

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

.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  transform: translateY(-3px);

  background: var(--color-orange-hover);
  border-color: var(--color-orange-hover);

  box-shadow: 0 14px 32px rgba(255, 122, 0, 0.26);
}


/* =========================================================
   ÁREAS DE CONSULTA
   ========================================================= */

.contact-areas {
  padding: 92px 0;

  background: #0a0d12;
}

.contact-areas h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.contact-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;

  margin-top: 40px;
}

.contact-areas-grid a {
  min-height: 92px;
  padding: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.88);

  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-areas-grid a:hover,
.contact-areas-grid a:focus-visible {
  transform: translateY(-3px);

  border-color: rgba(88, 170, 255, 0.46);

  background: rgba(88, 170, 255, 0.08);
}

.contact-areas-grid a span {
  color: #58aaff;

  font-size: 1.2rem;
}


/* =========================================================
   CONTACTO INSTITUCIONAL
   ========================================================= */

.contact-institutional {
  padding: 88px 0;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(0, 124, 255, 0.2),
      transparent 35%
    ),
    #071a36;
}

.contact-institutional-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 58px;
}

.contact-institutional-layout > div:first-child {
  max-width: 780px;
}

.contact-institutional-label {
  margin: 0 0 14px;

  color: #ff9a42;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-institutional h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-institutional p {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  line-height: 1.7;
}

.contact-institutional-actions {
  min-width: 280px;

  display: grid;
  gap: 13px;

  flex-shrink: 0;
}

.contact-institutional-primary,
.contact-institutional-whatsapp {
  min-height: 57px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  border-radius: 14px;

  color: #ffffff;
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 800;

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

.contact-institutional-primary {
  background: var(--color-orange);
}

.contact-institutional-primary:hover,
.contact-institutional-primary:focus-visible {
  transform: translateY(-3px);

  background: var(--color-orange-hover);

  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
}

.contact-institutional-whatsapp {
  justify-content: flex-start;

  background: #25d366;
}

.contact-institutional-whatsapp:hover,
.contact-institutional-whatsapp:focus-visible {
  transform: translateY(-3px);

  background: #20bd5a;

  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.contact-institutional-whatsapp img {
  width: 27px;
  height: 27px;

  object-fit: contain;
}
/* =========================================================
   SOLUCIONES — TÍTULO CTA FINAL MÁS PEQUEÑO
   ========================================================= */

.solutions-cta-copy h2 {
  max-width: 820px !important;
  margin: 0 !important;

  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
}
/* =========================================================
   PÁGINA MORPHOFLOW STUDIO
   ========================================================= */

.morphoflow-page {
  min-height: 100vh;
  background: #ffffff;
  color: #10213f;
}

.morphoflow-page .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


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

.morphoflow-button {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border: 2px solid transparent;
  border-radius: 12px;

  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;

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

.morphoflow-button:hover,
.morphoflow-button:focus-visible {
  transform: translateY(-3px);
}

.morphoflow-button-primary {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #ffffff;
}

.morphoflow-button-primary:hover,
.morphoflow-button-primary:focus-visible {
  background: #ff9138;
  border-color: #ff9138;
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.24);
}

.morphoflow-button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.morphoflow-button-secondary:hover,
.morphoflow-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.morphoflow-hero {
  padding: 82px 0 76px;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 143, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #020812 0%,
      #07162c 58%,
      #03060c 100%
    );

  color: #ffffff;
  overflow: hidden;
}

.morphoflow-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.morphoflow-hero-content {
  min-width: 0;
}

.morphoflow-brand {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 30px;
}

.morphoflow-brand-logo {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;

  object-fit: contain;
}

.morphoflow-brand-copy {
  min-width: 0;
}

.morphoflow-brand-label {
  margin: 0 0 6px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.morphoflow-brand-name {
  margin: 0;

  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;

  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.morphoflow-brand-name span {
  color: #ffffff;
}

.morphoflow-brand-name strong {
  color: #58aaff;
}

.morphoflow-brand-name small {
  color: #ff8a1f;

  font-size: 0.48em;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.morphoflow-eyebrow,
.morphoflow-section-label {
  margin: 0 0 14px;

  color: #58aaff;

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.morphoflow-hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 8ch;
  margin: 0 0 22px;
}

.morphoflow-hero-description {
  max-width: 690px;
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.05rem;
  line-height: 1.72;
}

.morphoflow-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 32px;
}

.morphoflow-hero-visual {
  min-width: 0;

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

.morphoflow-hero-visual img {
  width: 100%;
  max-width: 760px;
  height: auto;

  display: block;
  object-fit: contain;

  border-radius: 20px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
   ========================================================= */

.morphoflow-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;

  margin-bottom: 42px;
}

.morphoflow-section-header > div:first-child {
  max-width: 760px;
}

.morphoflow-section-header-center {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 44px;

  display: block;

  text-align: center;
}

.morphoflow-section-number {
  margin: 0 0 10px;

  color: #ff7a00;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.morphoflow-section-header h2,
.morphoflow-two-column-content h2,
.morphoflow-paper-layout h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.morphoflow-section-header-center > p:last-child,
.morphoflow-section-introduction,
.morphoflow-two-column-content > p {
  color: #657187;
  line-height: 1.72;
}

.morphoflow-section-header-center > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
}

.morphoflow-section-introduction {
  max-width: 430px;
  margin: 0;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.morphoflow-introduction {
  padding: 92px 0;

  background: #ffffff;
}

.morphoflow-object-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.morphoflow-object-card {
  min-height: 210px;
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 28px rgba(20, 42, 78, 0.06);
}

.morphoflow-object-card > span,
.morphoflow-process-card > span,
.morphoflow-importance-grid article > span,
.morphoflow-interpretation-grid article > span {
  color: #58aaff;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.morphoflow-object-card h3,
.morphoflow-process-card h3,
.morphoflow-importance-grid h3,
.morphoflow-interpretation-grid h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.12rem;
  line-height: 1.3;
}

.morphoflow-object-card p,
.morphoflow-process-card p,
.morphoflow-importance-grid p {
  margin: 0;

  color: #657187;

  font-size: 0.92rem;
  line-height: 1.62;
}

.morphoflow-principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 34px;
}

.morphoflow-principles span,
.morphoflow-result-tags span,
.morphoflow-paper-tags span {
  padding: 9px 12px;

  border-radius: 999px;

  background: #edf5ff;
  color: #165fc7;

  font-size: 0.72rem;
  font-weight: 800;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.morphoflow-workflow {
  padding: 92px 0;

  background: #f5f8fc;
}

.morphoflow-wide-figure,
.morphoflow-image-card,
.morphoflow-vertical-figure {
  margin: 0;
}

.morphoflow-wide-figure {
  overflow: hidden;

  border: 1px solid #d9e2ed;
  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 20px 48px rgba(23, 47, 86, 0.1);
}

.morphoflow-wide-figure img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.morphoflow-wide-figure figcaption,
.morphoflow-image-card figcaption,
.morphoflow-vertical-figure figcaption {
  padding: 14px 18px;

  color: #69768a;

  font-size: 0.78rem;
  line-height: 1.5;

  background: #ffffff;
}

.morphoflow-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;

  margin-top: 28px;
}

.morphoflow-process-card {
  padding: 26px;

  border: 1px solid #dce4ee;
  border-radius: 16px;

  background: #ffffff;
}


/* =========================================================
   DOS COLUMNAS
   ========================================================= */

.morphoflow-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.morphoflow-two-column-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.morphoflow-image-card,
.morphoflow-vertical-figure {
  overflow: hidden;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 18px 40px rgba(23, 47, 86, 0.09);
}

.morphoflow-image-card img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.morphoflow-vertical-figure {
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.morphoflow-vertical-figure img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.morphoflow-two-column-content > p {
  margin: 20px 0 0;
}


/* =========================================================
   MATEMÁTICAS
   ========================================================= */

.morphoflow-mathematics {
  padding: 92px 0;

  background: #ffffff;
}

.morphoflow-points-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin-top: 28px;
}

.morphoflow-points-grid div {
  padding: 16px;

  border: 1px solid #dce4ee;
  border-radius: 14px;

  background: #f7f9fc;
}

.morphoflow-points-grid strong {
  display: block;

  color: #165fc7;

  font-size: 1rem;
}

.morphoflow-points-grid span {
  display: block;
  margin-top: 5px;

  color: #657187;

  font-size: 0.82rem;
}


/* =========================================================
   MÉTRICAS
   ========================================================= */

.morphoflow-metrics {
  padding: 92px 0;

  background: #f5f8fc;
}

.morphoflow-analysis-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.morphoflow-analysis-card {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.morphoflow-analysis-tag {
  margin: 0 0 12px;

  color: #ff7a00;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.morphoflow-analysis-card h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.35rem;
}

.morphoflow-analysis-card ul {
  margin: 24px 0 0;
  padding-left: 20px;

  color: #59677c;

  line-height: 1.75;
}


/* =========================================================
   IMPORTANCIA
   ========================================================= */

.morphoflow-importance {
  padding: 92px 0;

  background: #ffffff;
}

.morphoflow-importance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.morphoflow-importance-grid article {
  min-height: 190px;
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}


/* =========================================================
   INTRO CASO DE ESTUDIO
   ========================================================= */

.morphoflow-case-introduction {
  padding: 84px 0;

  text-align: center;

  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(0, 143, 255, 0.18),
      transparent 32%
    ),
    #071a36;

  color: #ffffff;
}

.morphoflow-case-introduction p {
  margin: 0 0 14px;

  color: #58aaff;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.morphoflow-case-introduction h2 {
  margin: 0;

  font-size: clamp(2.3rem, 4.2vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.morphoflow-case-introduction span {
  display: block;
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   SECCIONES CASO DE ESTUDIO
   ========================================================= */

.morphoflow-case-location,
.morphoflow-input-data,
.morphoflow-profile-result,
.morphoflow-all-profiles,
.morphoflow-longitudinal-result,
.morphoflow-numerical-results,
.morphoflow-interpretation,
.morphoflow-contribution,
.morphoflow-paper {
  padding: 92px 0;
}

.morphoflow-case-location,
.morphoflow-profile-result,
.morphoflow-longitudinal-result,
.morphoflow-interpretation,
.morphoflow-paper {
  background: #ffffff;
}

.morphoflow-input-data,
.morphoflow-all-profiles,
.morphoflow-numerical-results,
.morphoflow-contribution {
  background: #f5f8fc;
}


/* =========================================================
   INPUT DATA
   ========================================================= */

.morphoflow-input-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.morphoflow-input-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.morphoflow-input-cards article {
  padding: 24px;

  border: 1px solid #dce4ee;
  border-radius: 16px;

  background: #ffffff;
}

.morphoflow-input-cards span {
  color: #58aaff;

  font-size: 0.78rem;
  font-weight: 900;
}

.morphoflow-input-cards h3 {
  margin: 20px 0 10px;

  color: #10213f;

  font-size: 1.08rem;
}

.morphoflow-input-cards p {
  margin: 0;

  color: #657187;

  font-size: 0.9rem;
  line-height: 1.6;
}


/* =========================================================
   RESULTADOS
   ========================================================= */

.morphoflow-result-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 24px;
}

.morphoflow-highlight-result {
  margin-top: 30px;
  padding: 24px;

  border-left: 4px solid #ff7a00;
  border-radius: 12px;

  background: #fff7ef;
}

.morphoflow-highlight-result span {
  display: block;

  color: #ff7a00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.morphoflow-highlight-result strong {
  display: block;
  margin-top: 9px;

  color: #10213f;

  font-size: 1.18rem;
  line-height: 1.4;
}

.morphoflow-check-list {
  margin: 26px 0 0;
  padding: 0;

  display: grid;
  gap: 11px;

  list-style: none;
}

.morphoflow-check-list li {
  position: relative;

  padding-left: 27px;

  color: #536277;

  line-height: 1.5;
}

.morphoflow-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #ff7a00;

  font-weight: 900;
}


/* =========================================================
   ESTADÍSTICAS
   ========================================================= */

.morphoflow-statistics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.morphoflow-statistics-grid article {
  min-height: 150px;
  padding: 26px;

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

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  text-align: center;
}

.morphoflow-statistics-grid strong {
  color: #165fc7;

  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  line-height: 1;
}

.morphoflow-statistics-grid span {
  margin-top: 12px;

  color: #657187;

  font-size: 0.88rem;
}

.morphoflow-correlations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  margin-top: 18px;
}

.morphoflow-correlations article {
  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-radius: 16px;

  background: #10213f;
  color: #ffffff;
}

.morphoflow-correlations span {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.88rem;
}

.morphoflow-correlations strong {
  color: #58aaff;

  font-size: 1.2rem;
}


/* =========================================================
   INTERPRETACIÓN
   ========================================================= */

.morphoflow-interpretation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.morphoflow-interpretation-grid article {
  padding: 24px;

  border: 1px solid #dce4ee;
  border-radius: 16px;

  background: #ffffff;
}


/* =========================================================
   CONTRIBUCIÓN
   ========================================================= */

.morphoflow-contribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.morphoflow-contribution-grid article {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.morphoflow-contribution-grid article > span {
  color: #ff7a00;

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.morphoflow-contribution-grid h3 {
  margin: 18px 0 12px;

  color: #10213f;

  font-size: 1.25rem;
}

.morphoflow-contribution-grid p {
  margin: 0;

  color: #657187;

  line-height: 1.65;
}


/* =========================================================
   PAPER
   ========================================================= */

.morphoflow-paper-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: start;
}

.morphoflow-paper-card {
  padding: 34px;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #f7f9fc;
}

.morphoflow-paper-status {
  display: inline-flex;
  padding: 8px 11px;

  border-radius: 999px;

  background: #fff1e4;
  color: #ff7a00;

  font-size: 0.7rem;
  font-weight: 900;
}

.morphoflow-paper-card h3 {
  margin: 24px 0 0;

  color: #10213f;

  font-size: 1.35rem;
  line-height: 1.45;
}

.morphoflow-paper-author {
  margin: 18px 0 0;

  color: #59677c;

  font-weight: 700;
}

.morphoflow-paper-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 22px;
}

.morphoflow-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 26px;

  color: #165fc7;

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.morphoflow-text-link:hover {
  color: #ff7a00;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.morphoflow-final-cta {
  padding: 82px 0;

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(0, 143, 255, 0.2),
      transparent 34%
    ),
    #071a36;

  color: #ffffff;
}

.morphoflow-final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.morphoflow-final-cta-layout > div:first-child {
  max-width: 780px;
}

.morphoflow-final-cta p {
  margin: 0 0 14px;

  color: #58aaff;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.morphoflow-final-cta h2 {
  margin: 0;

  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.morphoflow-final-actions {
  min-width: 280px;

  display: grid;
  gap: 12px;

  flex-shrink: 0;
}
/* =========================================================
   PÁGINA TSUNAMIGO
   ========================================================= */

.tsunamigo-page {
  min-height: 100vh;
  background: #ffffff;
  color: #10213f;
}

.tsunamigo-page .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


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

.tsunamigo-button {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border: 2px solid transparent;
  border-radius: 12px;

  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

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

.tsunamigo-button:hover,
.tsunamigo-button:focus-visible {
  transform: translateY(-3px);
}

.tsunamigo-button-primary {
  background: #ff7200;
  border-color: #ff7200;
  color: #ffffff;
}

.tsunamigo-button-primary:hover,
.tsunamigo-button-primary:focus-visible {
  background: #ff8a2b;
  border-color: #ff8a2b;

  box-shadow:
    0 14px 34px rgba(255, 114, 0, 0.3);
}

.tsunamigo-button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.tsunamigo-button-secondary:hover,
.tsunamigo-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.tsunamigo-button-dark {
  background: #10213f;
  border-color: #10213f;
  color: #ffffff;
}

.tsunamigo-button-dark:hover,
.tsunamigo-button-dark:focus-visible {
  background: #17345e;
  border-color: #17345e;
}


/* =========================================================
   HERO
   ========================================================= */

.tsunamigo-hero {
  position: relative;

  min-height: 680px;
  padding: 82px 0 76px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 142, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #061a34 58%,
      #02060d 100%
    );

  color: #ffffff;
  overflow: hidden;
}

.tsunamigo-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 9, 20, 0.96) 0%,
      rgba(2, 9, 20, 0.88) 34%,
      rgba(2, 9, 20, 0.35) 62%,
      rgba(2, 9, 20, 0.12) 100%
    );

  pointer-events: none;
}

.tsunamigo-hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(520px, 1.12fr);

  gap: 44px;
  align-items: center;
}

.tsunamigo-hero-content {
  min-width: 0;
}

.tsunamigo-eyebrow,
.tsunamigo-section-label {
  margin: 0 0 14px;

  color: #5ab1ff;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tsunamigo-hero h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.tsunamigo-hero h1 sup {
  position: relative;
  top: -0.9em;

  margin-left: 5px;

  color: #ffffff;

  font-size: 0.23em;
  font-weight: 900;
}

.tsunamigo-hero h2 {
  max-width: 690px;
  margin: 24px 0 0;

  color: #ffffff;

  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.tsunamigo-hero-description {
  max-width: 690px;
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.04rem;
  line-height: 1.72;
}

.tsunamigo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 32px;
}

.tsunamigo-hero-visual {
  min-width: 0;

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

.tsunamigo-hero-visual img {
  width: 100%;
  max-width: 760px;
  height: auto;

  display: block;
  object-fit: contain;

  border-radius: 20px;

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
   ========================================================= */

.tsunamigo-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;

  margin-bottom: 42px;
}

.tsunamigo-section-header > div:first-child {
  max-width: 760px;
}

.tsunamigo-section-header-center {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 44px;

  display: block;

  text-align: center;
}

.tsunamigo-section-number {
  margin: 0 0 10px;

  color: #ff7200;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tsunamigo-section-header h2,
.tsunamigo-two-column-content h2,
.tsunamigo-web-access h2,
.tsunamigo-disclaimer h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tsunamigo-section-header-center > p:last-child,
.tsunamigo-section-introduction,
.tsunamigo-two-column-content > p,
.tsunamigo-web-access p,
.tsunamigo-disclaimer-text p {
  color: #647187;
  line-height: 1.72;
}

.tsunamigo-section-header-center > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
}

.tsunamigo-section-introduction {
  max-width: 430px;
  margin: 0;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.tsunamigo-introduction {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-objective-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tsunamigo-objective-card {
  min-height: 220px;
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 28px rgba(20, 42, 78, 0.06);
}

.tsunamigo-objective-card > span,
.tsunamigo-gps-grid article > span,
.tsunamigo-pilot-grid article > span,
.tsunamigo-flow-grid article > span,
.tsunamigo-education-grid article > span {
  color: #50aaff;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tsunamigo-objective-card h3,
.tsunamigo-gps-grid h3,
.tsunamigo-pilot-grid h3,
.tsunamigo-flow-grid h3,
.tsunamigo-education-grid h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.12rem;
  line-height: 1.3;
}

.tsunamigo-objective-card p,
.tsunamigo-gps-grid p,
.tsunamigo-pilot-grid p,
.tsunamigo-flow-grid p {
  margin: 0;

  color: #657187;

  font-size: 0.92rem;
  line-height: 1.62;
}


/* =========================================================
   FUENTES OFICIALES
   ========================================================= */

.tsunamigo-sources {
  padding: 92px 0;

  background: #f5f8fc;
}

.tsunamigo-sources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tsunamigo-source-card {
  padding: 32px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 16px 36px rgba(23, 47, 86, 0.07);
}

.tsunamigo-source-acronym {
  margin: 0 0 12px;

  color: #ff7200;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tsunamigo-source-card h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.35rem;
  line-height: 1.35;
}

.tsunamigo-source-card ul {
  margin: 24px 0 0;
  padding-left: 20px;

  color: #59677c;

  line-height: 1.75;
}

.tsunamigo-source-note {
  margin-top: 24px;
  padding: 24px 28px;

  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;

  border-left: 4px solid #ff7200;
  border-radius: 14px;

  background: #fff8f1;
}

.tsunamigo-source-note strong {
  color: #ff7200;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tsunamigo-source-note p {
  margin: 0;

  color: #56657a;

  line-height: 1.65;
}


/* =========================================================
   DOS COLUMNAS
   ========================================================= */

.tsunamigo-two-column {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 60px;
  align-items: center;
}

.tsunamigo-two-column-content > p {
  margin: 20px 0 0;
}


/* =========================================================
   EDUCACIÓN
   ========================================================= */

.tsunamigo-education {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tsunamigo-education-grid article {
  min-height: 120px;
  padding: 22px;

  border: 1px solid #dce4ee;
  border-radius: 16px;

  background: #f7f9fc;
}

.tsunamigo-education-grid h3 {
  margin-top: 18px;
}


/* =========================================================
   DIVISORES MÓVIL Y WEB
   ========================================================= */

.tsunamigo-mobile-introduction,
.tsunamigo-web-introduction {
  padding: 82px 0;

  text-align: center;

  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(0, 146, 255, 0.2),
      transparent 34%
    ),
    #071a36;

  color: #ffffff;
}

.tsunamigo-mobile-introduction p,
.tsunamigo-web-introduction p {
  margin: 0 0 14px;

  color: #5ab1ff;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tsunamigo-mobile-introduction h2,
.tsunamigo-web-introduction h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.tsunamigo-mobile-introduction span,
.tsunamigo-web-introduction span {
  display: block;
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   APP MÓVIL
   ========================================================= */

.tsunamigo-mobile-app {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-mobile-figure,
.tsunamigo-desktop-figure {
  margin: 0;

  overflow: hidden;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 20px 48px rgba(23, 47, 86, 0.1);
}

.tsunamigo-mobile-figure img,
.tsunamigo-desktop-figure img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.tsunamigo-mobile-figure figcaption,
.tsunamigo-desktop-figure figcaption {
  padding: 14px 18px;

  color: #69768a;

  font-size: 0.78rem;
  line-height: 1.5;

  background: #ffffff;
}


/* =========================================================
   LISTA CHECK
   ========================================================= */

.tsunamigo-check-list,
.tsunamigo-progress-list {
  margin: 26px 0 0;
  padding: 0;

  display: grid;
  gap: 11px;

  list-style: none;
}

.tsunamigo-check-list li,
.tsunamigo-progress-list li {
  position: relative;

  padding-left: 28px;

  color: #536277;

  line-height: 1.5;
}

.tsunamigo-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #ff7200;

  font-weight: 900;
}

.tsunamigo-progress-list li::before {
  content: "○";

  position: absolute;
  left: 0;

  color: #50aaff;

  font-weight: 900;
}


/* =========================================================
   GPS
   ========================================================= */

.tsunamigo-gps {
  padding: 92px 0;

  background: #f5f8fc;
}

.tsunamigo-gps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tsunamigo-gps-grid article {
  min-height: 210px;
  padding: 26px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.tsunamigo-warning-note {
  margin-top: 24px;
  padding: 24px 28px;

  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 24px;

  border-left: 4px solid #50aaff;
  border-radius: 14px;

  background: #edf6ff;
}

.tsunamigo-warning-note strong {
  color: #1365c4;

  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tsunamigo-warning-note p {
  margin: 0;

  color: #56657a;

  line-height: 1.65;
}


/* =========================================================
   DESCARGA
   ========================================================= */

.tsunamigo-download {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tsunamigo-download-card {
  min-height: 300px;
  padding: 32px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #f7f9fc;
}

.tsunamigo-download-status {
  margin: 0 0 14px;

  color: #ff7200;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tsunamigo-download-card h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.6rem;
  line-height: 1.25;
}

.tsunamigo-download-card > p:not(.tsunamigo-download-status) {
  margin: 18px 0 28px;

  color: #647187;

  line-height: 1.65;
}

.tsunamigo-google-play {
  width: 220px;
  max-width: 100%;
  height: auto;

  display: block;
  margin-top: auto;
}


/* =========================================================
   PLATAFORMA WEB
   ========================================================= */

.tsunamigo-web-platform {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-desktop-figure {
  margin-top: 12px;
}

.tsunamigo-layers {
  padding: 92px 0;

  background: #f5f8fc;
}

.tsunamigo-layer-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tsunamigo-layer-card {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.tsunamigo-layer-card > p {
  margin: 0 0 14px;

  color: #ff7200;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tsunamigo-layer-card h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.35rem;
  line-height: 1.35;
}

.tsunamigo-layer-card ul {
  margin: 24px 0 0;
  padding-left: 20px;

  color: #59677c;

  line-height: 1.75;
}


/* =========================================================
   ACCESO WEB
   ========================================================= */

.tsunamigo-web-access {
  padding: 74px 0;

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(0, 142, 255, 0.18),
      transparent 32%
    ),
    #071a36;

  color: #ffffff;
}

.tsunamigo-web-access-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.tsunamigo-web-access-layout > div:first-child {
  max-width: 780px;
}

.tsunamigo-web-access h2 {
  color: #ffffff;
}

.tsunamigo-web-access p {
  max-width: 700px;
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   PILOTO SAN PEDRO
   ========================================================= */

.tsunamigo-pilot {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tsunamigo-pilot-grid article {
  min-height: 210px;
  padding: 26px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 28px rgba(20, 42, 78, 0.05);
}


/* =========================================================
   FLUJO TECNOLÓGICO
   ========================================================= */

.tsunamigo-flow {
  padding: 92px 0;

  background: #f5f8fc;
}

.tsunamigo-flow-grid {
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 14px;
  align-items: center;
}

.tsunamigo-flow-grid article {
  min-height: 210px;
  padding: 24px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.tsunamigo-flow-arrow {
  color: #ff7200;

  font-size: 1.8rem;
  font-weight: 900;
}


/* =========================================================
   USUARIOS
   ========================================================= */

.tsunamigo-users {
  padding: 92px 0;

  background: #ffffff;
}

.tsunamigo-users-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.tsunamigo-users-grid article {
  min-height: 180px;
  padding: 24px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.tsunamigo-users-grid h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.12rem;
  line-height: 1.35;
}

.tsunamigo-users-grid p {
  margin: 14px 0 0;

  color: #647187;

  font-size: 0.9rem;
  line-height: 1.62;
}


/* =========================================================
   ESTADO DEL PROYECTO
   ========================================================= */

.tsunamigo-status {
  padding: 92px 0;

  background: #f5f8fc;
}

.tsunamigo-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.tsunamigo-status-card {
  padding: 32px;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #ffffff;
}

.tsunamigo-status-label {
  margin: 0;

  color: #ff7200;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   AVISO
   ========================================================= */

.tsunamigo-disclaimer {
  padding: 82px 0;

  background: #fff8f1;
}

.tsunamigo-disclaimer-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 56px;
  align-items: start;
}

.tsunamigo-disclaimer-text p {
  margin: 0 0 18px;
}

.tsunamigo-disclaimer-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.tsunamigo-final-cta {
  padding: 82px 0;

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(0, 142, 255, 0.22),
      transparent 34%
    ),
    #06172f;

  color: #ffffff;
}

.tsunamigo-final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.tsunamigo-final-cta-layout > div:first-child {
  max-width: 780px;
}

.tsunamigo-final-cta p {
  margin: 0 0 14px;

  color: #5ab1ff;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tsunamigo-final-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.tsunamigo-final-cta span {
  display: block;
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);
}

.tsunamigo-final-actions {
  min-width: 290px;

  display: grid;
  gap: 12px;

  flex-shrink: 0;
}
/* =========================================================
   PÁGINA IROE-1
   ========================================================= */

.iroe1-page {
  min-height: 100vh;
  background: #ffffff;
  color: #10213f;
}

.iroe1-page .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


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

.iroe1-button {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  border: 2px solid transparent;
  border-radius: 12px;

  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

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

.iroe1-button:hover,
.iroe1-button:focus-visible {
  transform: translateY(-3px);
}

.iroe1-button-primary {
  background: #19bde8;
  border-color: #19bde8;
  color: #071526;
}

.iroe1-button-primary:hover,
.iroe1-button-primary:focus-visible {
  background: #43d0f2;
  border-color: #43d0f2;

  box-shadow:
    0 14px 34px rgba(25, 189, 232, 0.28);
}

.iroe1-button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
}

.iroe1-button-secondary:hover,
.iroe1-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}


/* =========================================================
   HERO
   ========================================================= */

.iroe1-hero {
  padding: 82px 0 76px;

  background:
    radial-gradient(
      circle at 80% 35%,
      rgba(25, 189, 232, 0.18),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #050b17 0%,
      #0b1931 58%,
      #07101f 100%
    );

  color: #ffffff;
  overflow: hidden;
}

.iroe1-hero-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(500px, 1.12fr);

  gap: 48px;
  align-items: center;
}

.iroe1-hero-content {
  min-width: 0;
}

.iroe1-brand {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 28px;
}

.iroe1-brand-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;

  object-fit: contain;
}

.iroe1-brand-label {
  margin: 0 0 6px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iroe1-brand-name {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.iroe1-eyebrow,
.iroe1-section-label {
  margin: 0 0 14px;

  color: #3bd2f2;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iroe1-hero h1 {
  max-width: 720px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.7rem, 4.7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.iroe1-hero-description {
  max-width: 690px;
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.04rem;
  line-height: 1.72;
}

.iroe1-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 32px;
}

.iroe1-hero-visual {
  min-width: 0;

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

.iroe1-hero-visual img {
  width: 100%;
  max-width: 760px;
  height: auto;

  display: block;
  object-fit: contain;

  border-radius: 20px;

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}


/* =========================================================
   ENCABEZADOS
   ========================================================= */

.iroe1-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;

  margin-bottom: 42px;
}

.iroe1-section-header > div:first-child {
  max-width: 760px;
}

.iroe1-section-header-center {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 44px;

  display: block;

  text-align: center;
}

.iroe1-section-number {
  margin: 0 0 10px;

  color: #ef5b4c;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.iroe1-section-header h2,
.iroe1-video-content h2,
.iroe1-methodology h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.iroe1-section-header-center > p:last-child,
.iroe1-section-introduction,
.iroe1-video-content > p,
.iroe1-methodology-text p {
  color: #647187;
  line-height: 1.72;
}

.iroe1-section-header-center > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
}

.iroe1-section-introduction {
  max-width: 430px;
  margin: 0;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.iroe1-introduction {
  padding: 92px 0;

  background: #ffffff;
}

.iroe1-purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.iroe1-purpose-card {
  min-height: 210px;
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 12px 28px rgba(20, 42, 78, 0.06);
}

.iroe1-purpose-card > span,
.iroe1-application-grid article > span {
  color: #19bde8;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.iroe1-purpose-card h3,
.iroe1-application-grid h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.12rem;
  line-height: 1.3;
}

.iroe1-purpose-card p,
.iroe1-application-grid p {
  margin: 0;

  color: #657187;

  font-size: 0.92rem;
  line-height: 1.62;
}

.iroe1-definition-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;

  margin-top: 28px;
}

.iroe1-definition-note > div {
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.iroe1-definition-note strong {
  color: #10213f;

  font-size: 1.05rem;
}

.iroe1-definition-note ul {
  margin: 20px 0 0;
  padding-left: 20px;

  color: #5b687b;
  line-height: 1.75;
}


/* =========================================================
   FÓRMULA
   ========================================================= */

.iroe1-formula {
  padding: 92px 0;

  background: #f5f8fc;
}

.iroe1-formula-box {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 36px;

  border: 1px solid rgba(25, 189, 232, 0.25);
  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #0a1830,
      #102545
    );

  text-align: center;

  box-shadow:
    0 18px 40px rgba(18, 40, 72, 0.14);
}

.iroe1-formula-box p {
  margin: 0 0 12px;

  color: #64dbf5;

  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iroe1-formula-box strong {
  display: block;

  color: #ffffff;

  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.25;
}

.iroe1-component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.iroe1-component-card {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.iroe1-component-symbol {
  margin: 0;

  color: #19bde8;

  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.iroe1-component-card h3 {
  margin: 20px 0 8px;

  color: #10213f;

  font-size: 1.35rem;
}

.iroe1-component-card > strong {
  color: #ef5b4c;

  font-size: 0.82rem;
  font-weight: 900;
}

.iroe1-component-card > p:last-child {
  margin: 18px 0 0;

  color: #657187;

  line-height: 1.65;
}


/* =========================================================
   COMPONENTES
   ========================================================= */

.iroe1-components {
  padding: 92px 0;

  background: #ffffff;
}

.iroe1-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.iroe1-detail-card {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.iroe1-detail-tag,
.iroe1-case-tag {
  margin: 0 0 12px;

  color: #19bde8;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.iroe1-detail-card h3,
.iroe1-case-grid h3 {
  margin: 0;

  color: #10213f;

  font-size: 1.25rem;
  line-height: 1.35;
}

.iroe1-mini-formula {
  margin-top: 22px;
  padding: 14px 16px;

  border-radius: 12px;

  background: #0d1c34;
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.iroe1-detail-card ul,
.iroe1-case-grid ul {
  margin: 22px 0 0;
  padding-left: 20px;

  color: #5b687b;

  line-height: 1.72;
}


/* =========================================================
   ESCALA OPERACIONAL
   ========================================================= */

.iroe1-scale {
  padding: 92px 0;

  background: #f5f8fc;
}

.iroe1-scale-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.iroe1-scale-item {
  min-height: 210px;
  padding: 24px;

  display: flex;
  flex-direction: column;

  border-radius: 18px;

  color: #ffffff;
}

.iroe1-scale-item > span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.iroe1-scale-item > strong {
  display: block;
  margin-top: 26px;

  font-size: 1.2rem;
}

.iroe1-scale-item > p {
  margin: 14px 0 0;

  color: rgba(255, 255, 255, 0.84);

  font-size: 0.88rem;
  line-height: 1.55;
}

.iroe1-scale-low {
  background: #24b878;
}

.iroe1-scale-moderate {
  background: #d5a600;
}

.iroe1-scale-high {
  background: #ea7b22;
}

.iroe1-scale-very-high {
  background: #df4d3f;
}

.iroe1-scale-critical {
  background: #5a258f;
}


/* =========================================================
   INTRO CASO DE ESTUDIO
   ========================================================= */

.iroe1-case-introduction {
  padding: 82px 0;

  text-align: center;

  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(25, 189, 232, 0.2),
      transparent 34%
    ),
    #0a1930;

  color: #ffffff;
}

.iroe1-case-introduction p {
  margin: 0 0 14px;

  color: #45d5f3;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.iroe1-case-introduction h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.iroe1-case-introduction span {
  display: block;
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   RESULTADO POE1
   ========================================================= */

.iroe1-case-result {
  padding: 92px 0;

  background: #ffffff;
}

.iroe1-result-components {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.iroe1-result-components article {
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;

  text-align: center;
}

.iroe1-result-components article > span {
  color: #19bde8;

  font-size: 0.8rem;
  font-weight: 900;
}

.iroe1-result-components article > strong {
  display: block;
  margin-top: 14px;

  color: #10213f;

  font-size: 2.3rem;
  line-height: 1;
}

.iroe1-result-components article > p {
  margin: 14px 0 0;

  color: #657187;

  font-size: 0.9rem;
}

.iroe1-final-score {
  max-width: 540px;
  margin: 30px auto 0;
  padding: 36px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      #d8433a,
      #8f1e2f
    );

  text-align: center;

  color: #ffffff;

  box-shadow:
    0 22px 50px rgba(174, 47, 47, 0.25);
}

.iroe1-final-score p {
  margin: 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iroe1-final-score strong {
  display: block;
  margin-top: 14px;

  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 1;
}

.iroe1-final-score span {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.14);

  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}


/* =========================================================
   EXPLICACIÓN DEL RESULTADO
   ========================================================= */

.iroe1-case-explanation {
  padding: 92px 0;

  background: #f5f8fc;
}

.iroe1-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.iroe1-case-grid article {
  padding: 30px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}


/* =========================================================
   DASHBOARD
   ========================================================= */

.iroe1-dashboard {
  padding: 92px 0;

  background: #ffffff;
}

.iroe1-dashboard-figure {
  margin: 0;

  overflow: hidden;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 22px 52px rgba(20, 42, 78, 0.12);
}

.iroe1-dashboard-figure img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.iroe1-dashboard-figure figcaption {
  padding: 14px 18px;

  color: #69768a;

  font-size: 0.78rem;
  line-height: 1.5;

  background: #ffffff;
}

.iroe1-dashboard-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 24px;
}

.iroe1-dashboard-features span {
  padding: 9px 13px;

  border-radius: 999px;

  background: #eaf7fb;
  color: #157b99;

  font-size: 0.72rem;
  font-weight: 800;
}

.iroe1-dashboard-action {
  display: flex;
  justify-content: center;

  margin-top: 26px;
}


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

.iroe1-video {
  padding: 92px 0;

  background: #f5f8fc;
}

.iroe1-video-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 420px);

  gap: 64px;
  align-items: center;
}

.iroe1-video-content > p {
  margin: 20px 0 0;
}

.iroe1-check-list {
  margin: 26px 0 0;
  padding: 0;

  display: grid;
  gap: 11px;

  list-style: none;
}

.iroe1-check-list li {
  position: relative;

  padding-left: 28px;

  color: #536277;

  line-height: 1.5;
}

.iroe1-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #19bde8;

  font-weight: 900;
}

.iroe1-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 28px;

  color: #137c9b;

  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.iroe1-text-link:hover {
  color: #ef5b4c;
}

.iroe1-video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;

  overflow: hidden;

  border-radius: 22px;

  background: #091427;

  box-shadow:
    0 24px 60px rgba(16, 34, 62, 0.22);
}

.iroe1-video-frame iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}


/* =========================================================
   APLICACIONES
   ========================================================= */

.iroe1-applications {
  padding: 92px 0;

  background: #ffffff;
}

.iroe1-application-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.iroe1-application-grid article {
  min-height: 200px;
  padding: 24px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}


/* =========================================================
   NOTA METODOLÓGICA
   ========================================================= */

.iroe1-methodology {
  padding: 82px 0;

  background: #fff8f1;
}

.iroe1-methodology-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);

  gap: 56px;
  align-items: start;
}

.iroe1-methodology-text p {
  margin: 0 0 18px;
}

.iroe1-methodology-text p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.iroe1-final-cta {
  padding: 82px 0;

  background:
    radial-gradient(
      circle at 82% 50%,
      rgba(25, 189, 232, 0.2),
      transparent 34%
    ),
    #09182f;

  color: #ffffff;
}

.iroe1-final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.iroe1-final-cta-layout > div:first-child {
  max-width: 780px;
}

.iroe1-final-cta p {
  margin: 0 0 14px;

  color: #45d5f3;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iroe1-final-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.iroe1-final-cta span {
  display: block;
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.68);

  line-height: 1.6;
}

.iroe1-final-actions {
  min-width: 280px;

  display: grid;
  gap: 12px;

  flex-shrink: 0;
}
/* =========================================================
   PÁGINA CHIRPVIEW STUDIO
   ========================================================= */

.chirpview-page {
  min-height: 100vh;
  background: #ffffff;
  color: #10213f;
}

.chirpview-page .container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}


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

.chirpview-button {
  min-height: 54px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  border: 2px solid transparent;
  border-radius: 12px;

  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;

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

.chirpview-button:hover,
.chirpview-button:focus-visible {
  transform: translateY(-3px);
}

.chirpview-button-primary {
  background: #1da8f3;
  border-color: #1da8f3;
  color: #ffffff;
}

.chirpview-button-primary:hover,
.chirpview-button-primary:focus-visible {
  background: #48bcf7;
  border-color: #48bcf7;

  box-shadow:
    0 14px 34px rgba(29, 168, 243, 0.28);
}

.chirpview-button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.68);
  color: #ffffff;
}

.chirpview-button-secondary:hover,
.chirpview-button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.chirpview-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}


/* =========================================================
   HERO CON IMAGEN COMPLETA DE FONDO
   ========================================================= */

.chirpview-hero {
  position: relative;

  min-height: 720px;
  padding: 84px 0;

  display: flex;
  align-items: center;

  background-image:
    url("/assets/images/tecnologia/ChirpView/imagenhero_resultado.webp");

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

  color: #ffffff;
  overflow: hidden;
}

.chirpview-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(1, 7, 17, 0.97) 0%,
      rgba(1, 8, 20, 0.93) 26%,
      rgba(1, 8, 20, 0.8) 43%,
      rgba(1, 8, 20, 0.4) 62%,
      rgba(1, 8, 20, 0.08) 100%
    );
}

.chirpview-hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
}

.chirpview-hero-copy {
  max-width: 650px;
}

.chirpview-brand {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-bottom: 30px;
}

.chirpview-brand-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;

  object-fit: contain;
}

.chirpview-brand-text {
  min-width: 0;
}

.chirpview-brand-label {
  margin: 0 0 7px;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chirpview-brand-name {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.9rem, 3vw, 3.3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.chirpview-brand-name span {
  color: #25aef3;
}

.chirpview-brand-name sup {
  position: relative;
  top: -0.8em;

  margin-left: 4px;

  font-size: 0.28em;
}

.chirpview-eyebrow,
.chirpview-section-label {
  margin: 0 0 14px;

  color: #38b9ff;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chirpview-hero h1 {
  max-width: 680px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.7rem, 4.8vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.chirpview-hero-description {
  max-width: 650px;
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.04rem;
  line-height: 1.72;
}

.chirpview-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 32px;
}


/* =========================================================
   ENCABEZADOS DE SECCIÓN
   ========================================================= */

.chirpview-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;

  margin-bottom: 42px;
}

.chirpview-section-header > div:first-child {
  max-width: 760px;
}

.chirpview-section-header-center {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 44px;

  display: block;

  text-align: center;
}

.chirpview-section-number {
  margin: 0 0 10px;

  color: #ff6f2c;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.chirpview-section-header h2,
.chirpview-development-content h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.chirpview-section-header-center > p:last-child,
.chirpview-section-introduction,
.chirpview-development-content > p {
  color: #647187;
  line-height: 1.72;
}

.chirpview-section-header-center > p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
}

.chirpview-section-introduction {
  max-width: 430px;
  margin: 0;
}


/* =========================================================
   02 — QUÉ HACE CHIRPVIEW
   ========================================================= */

.chirpview-introduction {
  padding: 92px 0;

  background: #ffffff;
}

.chirpview-flow {
  display: grid;
  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 14px;
  align-items: center;
}

.chirpview-flow-card {
  min-height: 210px;
  padding: 26px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.chirpview-flow-card > span {
  color: #1da8f3;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.chirpview-flow-card h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.12rem;
  line-height: 1.3;
}

.chirpview-flow-card p {
  margin: 0;

  color: #657187;

  font-size: 0.92rem;
  line-height: 1.62;
}

.chirpview-flow-arrow {
  color: #ff6f2c;

  font-size: 1.8rem;
  font-weight: 900;
}

.chirpview-principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 32px;
}

.chirpview-principles span,
.chirpview-applications span {
  padding: 9px 13px;

  border-radius: 999px;

  background: #eaf6ff;
  color: #1479ba;

  font-size: 0.72rem;
  font-weight: 800;
}


/* =========================================================
   03 — CASO L35
   ========================================================= */

.chirpview-case {
  padding: 92px 0;

  background: #f5f8fc;
}

.chirpview-case-figure {
  margin: 0;

  overflow: hidden;

  border: 1px solid #dce4ee;
  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 20px 48px rgba(23, 47, 86, 0.1);
}

.chirpview-case-figure img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.chirpview-case-figure figcaption {
  padding: 14px 18px;

  color: #69768a;

  font-size: 0.78rem;
  line-height: 1.5;

  background: #ffffff;
}

.chirpview-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

  margin-top: 26px;
}

.chirpview-case-grid article {
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #ffffff;
}

.chirpview-case-grid article > span {
  color: #1da8f3;

  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chirpview-case-grid h3 {
  margin: 18px 0 10px;

  color: #10213f;

  font-size: 1.18rem;
}

.chirpview-case-grid p {
  margin: 0;

  color: #657187;

  line-height: 1.62;
}


/* =========================================================
   04 — RESULTADOS Y APLICACIONES
   ========================================================= */

.chirpview-results {
  padding: 92px 0;

  background: #ffffff;
}

.chirpview-products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.chirpview-product-card {
  min-height: 220px;
  padding: 26px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f7f9fc;
}

.chirpview-product-card > span {
  color: #1da8f3;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.chirpview-product-card h3 {
  margin: 22px 0 10px;

  color: #10213f;

  font-size: 1.1rem;
  line-height: 1.3;
}

.chirpview-product-card p {
  margin: 0;

  color: #657187;

  font-size: 0.9rem;
  line-height: 1.62;
}

.chirpview-applications {
  margin-top: 30px;
  padding: 28px;

  border: 1px solid #dce4ee;
  border-radius: 18px;

  background: #f5f8fc;
}

.chirpview-applications > p {
  margin: 0 0 18px;

  color: #ff6f2c;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chirpview-applications > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


/* =========================================================
   05 — DESARROLLO Y CTA
   ========================================================= */

.chirpview-development {
  padding: 92px 0;

  background:
    radial-gradient(
      circle at 80% 45%,
      rgba(29, 168, 243, 0.18),
      transparent 34%
    ),
    #06162c;

  color: #ffffff;
}

.chirpview-development-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, 0.82fr);

  gap: 60px;
  align-items: center;
}

.chirpview-development-content h2 {
  color: #ffffff;
}

.chirpview-development-content > p {
  max-width: 680px;

  color: rgba(255, 255, 255, 0.7);
}

.chirpview-check-list {
  margin: 28px 0 0;
  padding: 0;

  display: grid;
  gap: 11px;

  list-style: none;
}

.chirpview-check-list li {
  position: relative;

  padding-left: 28px;

  color: rgba(255, 255, 255, 0.76);

  line-height: 1.5;
}

.chirpview-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #35baff;

  font-weight: 900;
}

.chirpview-github-link {
  margin-top: 28px;
  padding: 15px 18px;

  display: inline-flex;
  align-items: center;
  gap: 14px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.chirpview-github-link img {
  width: 24px;
  height: 24px;

  object-fit: contain;
}

.chirpview-development-cta {
  padding: 34px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);
}

.chirpview-development-cta > p {
  margin: 0 0 14px;

  color: #35baff;

  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chirpview-development-cta h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.chirpview-development-actions {
  display: grid;
  gap: 12px;

  margin-top: 28px;
}
/* =========================================================
   HEADER — MENÚ DESPLEGABLE DE TECNOLOGÍA
   ========================================================= */

.technology-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.technology-menu-trigger {
  display: flex;
  align-items: center;
}

.technology-menu-trigger > a {
  display: inline-flex;
  align-items: center;
}

.technology-menu-toggle {
  width: 24px;
  height: 24px;
  margin-left: 2px;
  padding: 0;

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

  border: 0;
  background: transparent;
  color: #ffffff;

  cursor: pointer;
}

.technology-menu-toggle span {
  display: block;

  font-size: 1rem;
  line-height: 1;

  transition: transform 0.2s ease;
}


/* Panel desplegable */

.technology-dropdown {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 22px);
  left: 50%;

  width: min(620px, 90vw);
  padding: 18px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  border: 1px solid rgba(52, 174, 255, 0.26);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(8, 22, 43, 0.98),
      rgba(3, 12, 28, 0.99)
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48);

  transform:
    translateX(-50%)
    translateY(10px);

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}


/* Puente invisible entre enlace y panel */

.technology-dropdown::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;

  height: 24px;
}


/* Abrir con mouse o teclado */

.technology-menu:hover .technology-dropdown,
.technology-menu:focus-within .technology-dropdown,
.technology-menu.submenu-open .technology-dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  transform:
    translateX(-50%)
    translateY(0);
}

.technology-menu.submenu-open .technology-menu-toggle span {
  transform: rotate(180deg);
}


/* Cuadrícula de tecnologías */

.technology-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.technology-dropdown-card {
  min-height: 98px;
  padding: 14px;

  display: flex;
  align-items: center;
  gap: 13px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;

  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.technology-dropdown-card:hover,
.technology-dropdown-card:focus-visible {
  transform: translateY(-2px);

  border-color: rgba(51, 177, 255, 0.58);
  background: rgba(29, 159, 238, 0.11);
}

.technology-dropdown-card img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;

  object-fit: contain;
}

.technology-dropdown-card > div {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.technology-dropdown-card strong {
  color: #ffffff;

  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.15;
}

.technology-dropdown-card > div > span {
  color: rgba(255, 255, 255, 0.62);

  font-size: 0.72rem;
  line-height: 1.35;
}

.technology-name-white {
  color: #ffffff;
}

.technology-name-blue {
  color: #2caaf4;
}


/* Enlace inferior */

.technology-dropdown-all {
  min-height: 44px;
  margin-top: 12px;
  padding: 0 14px;

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

  border-radius: 11px;

  background: #179fe8;
  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.technology-dropdown-all:hover,
.technology-dropdown-all:focus-visible {
  background: #32b3f5;
  transform: translateY(-1px);
}
/* =========================================================
   HEADER — TECNOLOGÍAS EN LISTA SIMPLE
   ========================================================= */

.technology-dropdown {
  width: 360px;
  padding: 10px;

  left: 50%;

  border-radius: 14px;

  transform:
    translateX(-50%)
    translateY(8px);
}

.technology-menu:hover .technology-dropdown,
.technology-menu:focus-within .technology-dropdown,
.technology-menu.submenu-open .technology-dropdown {
  transform:
    translateX(-50%)
    translateY(0);
}


/* Una sola columna */

.technology-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}


/* Tarjetas pequeñas tipo lista */

.technology-dropdown-card {
  min-height: 64px;
  padding: 9px 11px;

  display: flex;
  align-items: center;
  gap: 11px;

  border-radius: 10px;
}

.technology-dropdown-card img {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.technology-dropdown-card > div {
  gap: 3px;
}

.technology-dropdown-card strong {
  font-size: 0.88rem;
}

.technology-dropdown-card > div > span {
  font-size: 0.66rem;
  line-height: 1.25;
}


/* Enlace inferior más compacto */

.technology-dropdown-all {
  min-height: 40px;
  margin-top: 7px;
  padding: 0 12px;

  font-size: 0.72rem;
}
/* =========================================================
   HEADER GEOPLOT — MENÚS DESPLEGABLES COMPACTOS
   Investigación, Tecnología y Soluciones
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. CONTENEDORES DEL HEADER
   ========================================================= */

.site-header,
.header-container {
  overflow: visible;
}

.main-navigation {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  flex: 1;
  overflow: visible;
}


/* =========================================================
   02. ENLACES PRINCIPALES
   ========================================================= */

.main-navigation > .navigation-link,
.compact-dropdown .navigation-link {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding: 14px 0;

  color: var(--color-white);
  text-decoration: none;

  font-size: 14px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.main-navigation > .navigation-link:hover,
.main-navigation > .navigation-link:focus-visible,
.compact-dropdown .navigation-link:hover,
.compact-dropdown .navigation-link:focus-visible {
  color: var(--color-orange);
  transform: translateY(-1px);
}


/* =========================================================
   03. CONTENEDOR DE CADA DESPLEGABLE
   ========================================================= */

.compact-dropdown {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 48px;
}

.compact-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 3px;
}


/* =========================================================
   04. BOTÓN DE FLECHA
   ========================================================= */

.compact-dropdown-toggle {
  width: 24px;
  height: 34px;

  padding: 0;

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

  border: 0;
  background: transparent;

  color: var(--color-white);

  cursor: pointer;
}

.compact-dropdown-toggle span {
  display: block;

  font-size: 18px;
  font-weight: 700;
  line-height: 1;

  transform: translateY(-2px);

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.compact-dropdown:hover .compact-dropdown-toggle,
.compact-dropdown:focus-within .compact-dropdown-toggle,
.compact-dropdown.is-open .compact-dropdown-toggle {
  color: var(--color-orange);
}

.compact-dropdown:hover .compact-dropdown-toggle span,
.compact-dropdown:focus-within .compact-dropdown-toggle span,
.compact-dropdown.is-open .compact-dropdown-toggle span {
  transform:
    translateY(1px)
    rotate(180deg);
}


/* =========================================================
   05. MENÚ DESPLEGABLE COMPACTO
   ========================================================= */

.compact-dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  z-index: 1500;

  width: max-content;
  min-width: 280px;
  max-width: 390px;

  padding: 10px 0;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 2px solid var(--color-orange);

  background-color: #ffffff;

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(8px);

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}


/* Puente invisible para que el menú no se cierre */

.compact-dropdown-menu::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -10px;

  height: 10px;
}


/* Mostrar desplegable */

.compact-dropdown:hover .compact-dropdown-menu,
.compact-dropdown:focus-within .compact-dropdown-menu,
.compact-dropdown.is-open .compact-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}


/* =========================================================
   06. ENLACES DEL DESPLEGABLE
   ========================================================= */

.main-navigation .compact-dropdown-menu a {
  width: 100%;

  padding: 13px 22px;

  display: block;

  color: #202020;
  background-color: transparent;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;

  white-space: normal;

  transition:
    color 0.16s ease,
    background-color 0.16s ease,
    padding-left 0.16s ease;
}

.main-navigation .compact-dropdown-menu a:hover,
.main-navigation .compact-dropdown-menu a:focus-visible {
  padding-left: 27px;

  color: var(--color-orange);
  background-color: #f2f2f2;

  transform: none;
}


/* =========================================================
   07. ALINEACIÓN DEL MENÚ SOLUCIONES
   ========================================================= */

.compact-dropdown-menu-right {
  right: 0;
  left: auto;
}


/* =========================================================
   08. ENLACE ACTIVO
   ========================================================= */

.main-navigation .navigation-active {
  color: var(--color-orange);
}

.main-navigation .navigation-active::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;

  height: 2px;

  background-color: var(--color-orange);
  border-radius: 999px;
}


/* =========================================================
   09. ACCESIBILIDAD
   ========================================================= */

.compact-dropdown-toggle:focus-visible,
.compact-dropdown-menu a:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}


/* =========================================================
   10. MOVIMIENTO REDUCIDO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .compact-dropdown-menu,
  .compact-dropdown-toggle span,
  .compact-dropdown-menu a {
    transition: none;
  }
}
/* =========================================================
   CENSUSANALYTICS — PÁGINA DE TECNOLOGÍA
   /tecnologia/censusanalytics/
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. ESTRUCTURA GENERAL
   ========================================================= */

.censusanalytics-page {
  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  background-color: #050505;
  color: #ffffff;
}


/* =========================================================
   02. HERO
   ========================================================= */

.censusanalytics-hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 720px;
  max-height: 980px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  background-color: #020712;
}


/* Imagen completa de fondo */

.censusanalytics-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  background-image:
    url("/assets/images/Soluciones/Analisiscensochile/imagenHerofinalCensusanalytics_resultado.webp");

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

  transform: scale(1.01);
}


/* Capa oscura */

.censusanalytics-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.8) 30%,
      rgba(0, 0, 0, 0.44) 56%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.04) 62%,
      rgba(0, 0, 0, 0.36) 100%
    );
}


/* Contenedor */

.censusanalytics-hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 64px 0;

  display: flex;
  align-items: center;
}


/* Contenido */

.censusanalytics-hero-content {
  width: min(720px, 58%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* =========================================================
   03. IDENTIDAD DEL PRODUCTO
   ========================================================= */

.censusanalytics-brand {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 28px;
}

.censusanalytics-logo {
  width: 96px;
  height: 96px;

  flex: 0 0 96px;

  object-fit: contain;
  object-position: center;
}

.censusanalytics-brand-copy {
  min-width: 0;
}

.censusanalytics-eyebrow {
  margin: 0 0 10px;

  color: var(--color-orange);

  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.censusanalytics-brand h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}


/* =========================================================
   04. TEXTOS DEL HERO
   ========================================================= */

.censusanalytics-hero-subtitle {
  max-width: 680px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 800;
  line-height: 1.18;
}

.censusanalytics-hero-description {
  max-width: 650px;
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.88);

  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.62;
}

.censusanalytics-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 34px;
}


/* =========================================================
   05. SECCIÓN SOLUCIÓN
   ========================================================= */

.censusanalytics-solution-section {
  width: 100%;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(22, 95, 199, 0.14),
      transparent 30%
    ),
    #050505;
}


/* Encabezado */

.censusanalytics-section-header {
  max-width: 900px;
  margin-bottom: 64px;
}

.censusanalytics-section-header h2 {
  max-width: 850px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.3rem, 4vw, 4.4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.censusanalytics-section-header > p:last-child {
  max-width: 800px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.08rem;
  line-height: 1.78;
}


/* =========================================================
   06. TARJETAS INFORMATIVAS
   ========================================================= */

.censusanalytics-information-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.censusanalytics-information-card {
  min-height: 430px;
  padding: 34px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    );

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

.censusanalytics-information-card:hover {
  transform: translateY(-5px);

  border-color: rgba(61, 180, 220, 0.46);

  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.28);
}

.censusanalytics-card-number {
  display: block;
  margin-bottom: 54px;

  color: var(--color-light-blue);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.censusanalytics-information-card h3 {
  margin: 0 0 20px;

  color: #ffffff;

  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
}

.censusanalytics-information-card p {
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.98rem;
  line-height: 1.7;
}

.censusanalytics-information-card ul {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.censusanalytics-information-card li {
  position: relative;

  padding-left: 20px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.95rem;
  line-height: 1.5;
}

.censusanalytics-information-card li::before {
  content: "";

  position: absolute;
  top: 0.62em;
  left: 0;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background-color: var(--color-orange);
}


/* =========================================================
   07. APLICACIONES
   ========================================================= */

.censusanalytics-applications {
  margin-top: 70px;
  padding: 42px;

  display: grid;
  grid-template-columns:
    minmax(250px, 0.75fr)
    minmax(0, 1.25fr);

  gap: 52px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;

  background-color: #0a0d12;
}

.censusanalytics-applications-copy h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.censusanalytics-application-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.censusanalytics-application-tags span {
  padding: 11px 15px;

  border: 1px solid rgba(61, 180, 220, 0.28);
  border-radius: 999px;

  background-color: rgba(22, 95, 199, 0.08);
  color: rgba(255, 255, 255, 0.9);

  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.2;
}


/* =========================================================
   08. CTA DE LA SOLUCIÓN
   ========================================================= */

.censusanalytics-solution-cta {
  margin-top: 70px;
  padding: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(22, 95, 199, 0.18),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #07111f,
      #050505
    );
}

.censusanalytics-solution-cta > div {
  max-width: 760px;
}

.censusanalytics-solution-cta h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.censusanalytics-solution-cta p:last-child {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1rem;
  line-height: 1.7;
}

.censusanalytics-solution-cta .button {
  flex-shrink: 0;
}


/* =========================================================
   09. SECCIÓN DEL CURSO
   ========================================================= */

.censusanalytics-course-section {
  width: 100%;
  padding: 110px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  background:
    radial-gradient(
      circle at 16% 28%,
      rgba(255, 122, 0, 0.12),
      transparent 32%
    ),
    #090909;
}

.censusanalytics-course-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 70px;
  align-items: center;
}


/* Imagen del curso */

.censusanalytics-course-visual {
  position: relative;

  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;

  background-color: #000000;

  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.34);
}

.censusanalytics-course-visual img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.censusanalytics-course-visual:hover img {
  transform: scale(1.025);
}


/* Contenido */

.censusanalytics-course-content {
  min-width: 0;
}

.censusanalytics-course-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.censusanalytics-course-introduction {
  max-width: 700px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 1.08rem;
  line-height: 1.75;
}


/* Lista del curso */

.censusanalytics-course-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 30px;

  margin: 34px 0 0;
  padding: 0;

  list-style: none;
}

.censusanalytics-course-topics li {
  position: relative;

  padding-left: 22px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.96rem;
  line-height: 1.5;
}

.censusanalytics-course-topics li::before {
  content: "→";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--color-orange);

  font-weight: 800;
}


/* Botones */

.censusanalytics-course-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 38px;
}


/* =========================================================
   10. ANCLAJES INTERNOS
   ========================================================= */

#que-hace,
#curso-censo-python {
  scroll-margin-top: calc(var(--header-height) + 18px);
}


/* =========================================================
   11. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .censusanalytics-information-card,
  .censusanalytics-course-visual img {
    transition: none;
  }
}
/* =========================================================
   INVESTIGACIÓN — ANÁLISIS CENSAL Y TERRITORIAL
   /investigacion/analisis-censal-territorial/
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. ESTRUCTURA GENERAL
   ========================================================= */

.census-research-page {
  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  background-color: #050505;
  color: #ffffff;
}


/* =========================================================
   02. HERO
   ========================================================= */

.census-research-hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  height: calc(88vh - var(--header-height));
  min-height: 610px;
  max-height: 780px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  background-color: #020712;
}


/* Imagen de fondo */

.census-research-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  background-image:
    url("/assets/images/tecnologia/CensusAnalytics/imagensatelitalpoebocasurherofondo.webp");

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

  transform: scale(1.01);
}


/* Capa oscura */

.census-research-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.82) 31%,
      rgba(0, 0, 0, 0.48) 58%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.04) 65%,
      rgba(0, 0, 0, 0.38) 100%
    );
}


/* Contenedor */

.census-research-hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 38px 0 30px;

  display: flex;
  align-items: center;
}


/* Contenido */

.census-research-hero-content {
  width: min(760px, 58%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* Etiqueta */

.census-research-eyebrow {
  margin: 0 0 20px;

  color: var(--color-orange);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* Título */

.census-research-hero h1 {
  max-width: 780px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}


/* Subtítulo */

.census-research-hero-subtitle {
  max-width: 720px;
  margin: 30px 0 0;

  color: #ffffff;

  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}


/* Descripción */

.census-research-hero-description {
  max-width: 680px;
  margin: 24px 0 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.65;
}


/* Botones */

.census-research-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 36px;
}


/* =========================================================
   03. SECCIÓN DE INVESTIGACIÓN
   ========================================================= */

.census-research-study {
  width: 100%;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 86% 14%,
      rgba(22, 95, 199, 0.13),
      transparent 30%
    ),
    #050505;
}


/* Encabezado */

.census-research-section-header {
  max-width: 920px;
  margin-bottom: 52px;
}

.census-research-section-header h2 {
  max-width: 880px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}


/* =========================================================
   04. TEXTO DE LA INVESTIGACIÓN
   ========================================================= */

.census-research-introduction {
  max-width: 980px;

  display: grid;
  gap: 24px;
}

.census-research-introduction p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1.06rem;
  line-height: 1.82;
}


/* =========================================================
   05. TARJETAS DE LOS SEIS POE
   ========================================================= */

.census-research-poe-grid {
  margin-top: 64px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.census-research-poe-card {
  min-height: 150px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.014)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.census-research-poe-card:hover {
  transform: translateY(-4px);

  border-color: rgba(61, 180, 220, 0.42);
  background-color: rgba(22, 95, 199, 0.08);
}

.census-research-poe-card span {
  color: var(--color-light-blue);

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

.census-research-poe-card h3 {
  margin: 26px 0 0;

  color: #ffffff;

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}


/* =========================================================
   06. FLUJO OPERATIVO
   ========================================================= */

.census-research-process {
  margin-top: 70px;
  padding: 38px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;

  background-color: #0a0d12;
}

.census-research-process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;

  margin-top: 22px;
}

.census-research-process-flow span {
  color: rgba(255, 255, 255, 0.9);

  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

.census-research-process-flow span:nth-child(even) {
  color: var(--color-orange);

  font-size: 1.5rem;
  font-weight: 800;
}


/* =========================================================
   07. FIGURA GENERAL DE LOS POE
   ========================================================= */

.census-research-figure {
  width: min(100%, 980px);
  margin: 76px auto 0;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background-color: #0a0d12;
}

.census-research-figure img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
  object-position: center;
}

.census-research-figure figcaption {
  padding: 24px 28px;

  color: rgba(255, 255, 255, 0.66);

  font-size: 0.88rem;
  line-height: 1.6;
}

.census-research-figure figcaption strong {
  color: #ffffff;
}


/* =========================================================
   08. RESULTADOS DE BOCA SUR
   ========================================================= */

.census-research-results {
  margin-top: 100px;
  padding-top: 90px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.census-research-results-header {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 64px;
  align-items: end;

  margin-bottom: 54px;
}

.census-research-results-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.census-research-results-header > p {
  max-width: 700px;
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.04rem;
  line-height: 1.75;
}


/* Distribución */

.census-research-results-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.95fr)
    minmax(0, 1.05fr);

  gap: 52px;
  align-items: start;
}


/* Imagen de resultados */

.census-research-results-image {
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;

  background-color: #0a0d12;
}

.census-research-results-image img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
}

.census-research-results-image figcaption {
  padding: 18px 22px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.82rem;
  line-height: 1.55;
}


/* =========================================================
   09. TABLA HTML
   ========================================================= */

.census-research-table-wrapper {
  min-width: 0;
}

.census-research-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  background-color: #0a0d12;
}

.census-research-table caption {
  padding: 20px 24px;

  color: #ffffff;

  font-size: 1.15rem;
  font-weight: 800;
  text-align: left;

  background-color: rgba(22, 95, 199, 0.12);
}

.census-research-table th,
.census-research-table td {
  padding: 17px 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.09);

  text-align: left;
  vertical-align: middle;
}

.census-research-table th {
  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  background-color: rgba(255, 255, 255, 0.03);
}

.census-research-table td {
  color: rgba(255, 255, 255, 0.76);

  font-size: 0.94rem;
  line-height: 1.45;
}

.census-research-table td:last-child,
.census-research-table th:last-child {
  text-align: right;
}

.census-research-table tr:last-child td {
  border-bottom: 0;
}

.census-research-table-highlight td {
  color: #ffffff;
  font-weight: 800;

  background-color: rgba(255, 122, 0, 0.12);
}


/* Nota */

.census-research-table-note {
  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.82rem;
  line-height: 1.55;
}


/* =========================================================
   10. CURSO ASOCIADO
   ========================================================= */

.census-research-course {
  width: 100%;
  padding: 110px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  background:
    radial-gradient(
      circle at 16% 28%,
      rgba(255, 122, 0, 0.12),
      transparent 32%
    ),
    #090909;
}

.census-research-course-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 70px;
  align-items: center;
}


/* Imagen del curso */

.census-research-course-visual {
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;

  background-color: #000000;

  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.34);
}

.census-research-course-visual img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.census-research-course-visual:hover img {
  transform: scale(1.025);
}


/* Contenido */

.census-research-course-content {
  min-width: 0;
}

.census-research-course-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.census-research-course-description {
  max-width: 700px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1.06rem;
  line-height: 1.75;
}


/* Temas */

.census-research-course-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;

  margin: 34px 0 0;
  padding: 0;

  list-style: none;
}

.census-research-course-topics li {
  position: relative;

  padding-left: 22px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.95rem;
  line-height: 1.5;
}

.census-research-course-topics li::before {
  content: "→";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--color-orange);
  font-weight: 800;
}


/* Botones */

.census-research-course-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 38px;
}


/* =========================================================
   11. ANCLAJES INTERNOS
   ========================================================= */

#investigacion-poe,
#resultados-boca-sur,
#curso-censo-python {
  scroll-margin-top: calc(var(--header-height) + 18px);
}


/* =========================================================
   12. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .census-research-poe-card,
  .census-research-course-visual img {
    transition: none;
  }
}
/* =========================================================
   AJUSTE DE LA INTRODUCCIÓN E IMAGEN DE LOS POE
   ========================================================= */

.census-research-introduction-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(280px, 0.75fr);

  gap: 54px;
  align-items: start;
}

.census-research-introduction-layout
.census-research-introduction {
  max-width: none;
}

.census-research-poe-inline-figure {
  position: sticky;
  top: calc(var(--header-height) + 24px);

  width: 100%;
  max-width: 430px;
  margin: 0 0 0 auto;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;

  background-color: #0a0d12;
}

.census-research-poe-inline-figure img {
  width: 100%;
  height: auto;
  max-height: 560px;

  display: block;

  object-fit: contain;
  object-position: center;
}

.census-research-poe-inline-figure figcaption {
  padding: 18px 20px;

  color: rgba(255, 255, 255, 0.64);

  font-size: 0.82rem;
  line-height: 1.55;
}

.census-research-poe-inline-figure figcaption strong {
  color: #ffffff;
}
/* =========================================================
   SOLUCIÓN — INTELIGENCIA CENSAL Y TERRITORIAL
   /soluciones/inteligencia-censal-territorial/
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. ESTRUCTURA GENERAL
   ========================================================= */

.census-intelligence-page {
  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  background-color: #050505;
  color: #ffffff;
}


/* =========================================================
   02. HERO
   ========================================================= */

.census-intelligence-hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  height: calc(88vh - var(--header-height));
  min-height: 610px;
  max-height: 790px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  background-color: #020712;
}

.census-intelligence-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  background-image:
    url("/assets/images/tecnologia/CensusAnalytics/imganeherointeligenciacensal_resultado.webp");

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

.census-intelligence-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.78) 34%,
      rgba(0, 0, 0, 0.42) 60%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.02) 65%,
      rgba(0, 0, 0, 0.32) 100%
    );
}

.census-intelligence-hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 42px 0 34px;

  display: flex;
  align-items: center;
}

.census-intelligence-hero-content {
  width: min(720px, 56%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.census-intelligence-eyebrow {
  margin: 0 0 20px;

  color: var(--color-orange);

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.census-intelligence-hero h1 {
  max-width: 760px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.census-intelligence-hero-description {
  max-width: 650px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.68;
}

.census-intelligence-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 34px;
}


/* =========================================================
   03. SECCIÓN SOLUCIÓN
   ========================================================= */

.census-intelligence-solution {
  width: 100%;
  padding: 105px 0;

  background:
    radial-gradient(
      circle at 85% 14%,
      rgba(22, 95, 199, 0.13),
      transparent 30%
    ),
    #050505;
}

.census-intelligence-section-header {
  max-width: 900px;
  margin-bottom: 58px;
}

.census-intelligence-section-header h2 {
  max-width: 860px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.census-intelligence-section-header > p:last-child {
  max-width: 800px;
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.06rem;
  line-height: 1.78;
}


/* Capacidades */

.census-intelligence-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

.census-intelligence-capability-card {
  min-height: 280px;
  padding: 32px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.014)
    );

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.census-intelligence-capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 180, 220, 0.42);
}

.census-intelligence-card-number {
  display: block;
  margin-bottom: 54px;

  color: var(--color-light-blue);

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

.census-intelligence-capability-card h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.census-intelligence-capability-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.98rem;
  line-height: 1.68;
}


/* Público objetivo */

.census-intelligence-audience {
  margin-top: 68px;
  padding: 42px;

  display: grid;
  grid-template-columns:
    minmax(260px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 52px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;

  background-color: #0a0d12;
}

.census-intelligence-audience-copy h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.census-intelligence-audience-copy p:last-child {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1rem;
  line-height: 1.72;
}

.census-intelligence-audience-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.census-intelligence-audience-tags span {
  padding: 11px 15px;

  border: 1px solid rgba(61, 180, 220, 0.28);
  border-radius: 999px;

  background-color: rgba(22, 95, 199, 0.08);
  color: rgba(255, 255, 255, 0.9);

  font-size: 0.84rem;
  font-weight: 600;
}


/* =========================================================
   04. SERVICIO
   ========================================================= */

.census-intelligence-service {
  width: 100%;
  padding: 105px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  background-color: #090909;
}

.census-intelligence-service-header {
  max-width: 900px;
  margin-bottom: 58px;
}

.census-intelligence-service-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.3rem, 4vw, 4.3rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.census-intelligence-service-header > p:last-child {
  max-width: 780px;
  margin: 26px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.06rem;
  line-height: 1.75;
}

.census-intelligence-service-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.85fr);

  gap: 56px;
  align-items: start;
}


/* Proceso */

.census-intelligence-process h3,
.census-intelligence-variables h3 {
  margin: 0 0 28px;

  color: #ffffff;

  font-size: 1.5rem;
  font-weight: 800;
}

.census-intelligence-process-list {
  display: grid;
  gap: 16px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.census-intelligence-process-list li {
  padding: 22px;

  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);

  gap: 18px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;

  background-color: rgba(255, 255, 255, 0.025);
}

.census-intelligence-process-list li > span {
  color: var(--color-orange);

  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.census-intelligence-process-list h4 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 800;
}

.census-intelligence-process-list p {
  margin: 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.9rem;
  line-height: 1.55;
}


/* Variables */

.census-intelligence-variables {
  position: sticky;
  top: calc(var(--header-height) + 24px);

  padding: 32px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 95, 199, 0.12),
      rgba(255, 255, 255, 0.02)
    );
}

.census-intelligence-variables > p:not(.section-label) {
  margin: 0 0 24px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.96rem;
  line-height: 1.62;
}

.census-intelligence-variables ul {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.census-intelligence-variables li {
  position: relative;

  padding-left: 20px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.94rem;
  line-height: 1.45;
}

.census-intelligence-variables li::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0.62em;

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background-color: var(--color-orange);
}


/* CTA del servicio */

.census-intelligence-service-cta {
  margin-top: 68px;
  padding: 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(22, 95, 199, 0.18),
      transparent 34%
    ),
    #07111f;
}

.census-intelligence-service-cta h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.census-intelligence-service-cta p:last-child {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1rem;
  line-height: 1.65;
}


/* =========================================================
   05. TECNOLOGÍA ASOCIADA
   ========================================================= */

.census-intelligence-technology {
  width: 100%;
  padding: 90px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  background-color: #050505;
}

.census-intelligence-technology-card {
  padding: 44px;

  display: grid;
  grid-template-columns:
    minmax(280px, 0.9fr)
    minmax(0, 1.1fr);

  gap: 54px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(22, 95, 199, 0.17),
      transparent 34%
    ),
    #0a0d12;
}

.census-intelligence-technology-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.census-intelligence-technology-logo {
  width: 88px;
  height: 88px;

  flex: 0 0 88px;

  object-fit: contain;
}

.census-intelligence-technology-brand h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.1rem, 3.8vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.census-intelligence-technology-content p {
  max-width: 680px;
  margin: 0 0 28px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   06. CTA FINAL
   ========================================================= */

.census-intelligence-final-cta {
  width: 100%;
  padding: 88px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(255, 122, 0, 0.13),
      transparent 34%
    ),
    #080808;
}

.census-intelligence-final-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.census-intelligence-final-container > div {
  max-width: 820px;
}

.census-intelligence-final-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.census-intelligence-final-cta p:last-child {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 1.02rem;
  line-height: 1.7;
}


/* =========================================================
   07. ANCLAJES
   ========================================================= */

#solucion-censal,
#servicio-censal-territorial {
  scroll-margin-top: calc(var(--header-height) + 18px);
}
/* =========================================================
   GEOPLOT CAMPUS — CUADRÍCULA DE CURSOS 2 × 3
   Dos cursos por fila, seis cursos en total
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. SECCIÓN GENERAL
   ========================================================= */

.campus-featured-courses {
  width: 100%;
  padding: 100px 0;

  background-color: #ffffff;
  color: #0b1f3a;
}

.campus-featured-courses .campus-page-container {
  width: min(88%, 1240px);
  margin: 0 auto;
}


/* =========================================================
   02. ENCABEZADO
   ========================================================= */

.campus-featured-courses-header {
  margin-bottom: 54px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.campus-featured-courses-header > div {
  max-width: 760px;
}

.campus-featured-courses-header .campus-section-label {
  margin: 0 0 12px;

  color: #ff7200;

  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campus-featured-courses-header .campus-section-title {
  margin: 0;

  color: #0b1f3a;

  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.campus-featured-courses-header .campus-section-description {
  max-width: 680px;
  margin: 22px 0 0;

  color: #5b6b82;

  font-size: 1rem;
  line-height: 1.7;
}

.campus-view-all-courses,
.campus-featured-courses .campus-text-link {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #165fc7;
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 800;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.campus-view-all-courses:hover,
.campus-featured-courses .campus-text-link:hover {
  color: #ff7200;
  transform: translateX(3px);
}


/* =========================================================
   03. CUADRÍCULA DE CURSOS
   ========================================================= */

.campus-square-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 34px;
}


/* =========================================================
   04. TARJETA
   ========================================================= */

.campus-square-course-card {
  min-width: 0;
  min-height: 760px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid #d8e0ea;
  border-radius: 22px;

  background-color: #ffffff;

  box-shadow:
    0 18px 42px rgba(9, 32, 65, 0.09);

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

.campus-square-course-card:hover {
  transform: translateY(-6px);

  border-color: rgba(22, 95, 199, 0.38);

  box-shadow:
    0 26px 54px rgba(9, 32, 65, 0.14);
}


/* =========================================================
   05. IMAGEN DEL CURSO
   Mantiene el mismo espacio en todas las tarjetas
   ========================================================= */

.campus-square-course-image {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #061326,
      #020812
    );
}

.campus-square-course-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.45s ease;
}

.campus-square-course-card:hover
.campus-square-course-image img {
  transform: scale(1.025);
}


/* =========================================================
   06. ESPACIO SIN IMAGEN — PRONTO
   ========================================================= */

.campus-square-course-image-empty {
  position: relative;

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

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(22, 95, 199, 0.22),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #08182d,
      #020812
    );
}

.campus-square-course-image-empty::before {
  content: "PRONTO";

  padding: 11px 18px;

  border: 1px solid rgba(61, 180, 220, 0.65);
  border-radius: 999px;

  background-color: rgba(22, 95, 199, 0.12);
  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.campus-square-course-image-empty::after {
  content: "";

  position: absolute;
  inset: 20px;

  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  pointer-events: none;
}


/* =========================================================
   07. CONTENIDO
   ========================================================= */

.campus-square-course-content {
  flex: 1;

  padding: 32px;

  display: flex;
  flex-direction: column;
}

.campus-square-course-category {
  margin: 0 0 14px;

  color: #ff7200;

  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campus-square-course-content h3 {
  margin: 0;

  color: #0b1f3a;

  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.campus-square-course-description {
  margin: 20px 0 0;

  color: #5c6a7d;

  font-size: 0.98rem;
  line-height: 1.68;
}


/* =========================================================
   08. PIE DE LA TARJETA
   Botón siempre abajo a la derecha
   ========================================================= */

.campus-square-course-footer {
  margin-top: auto;
  padding-top: 30px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.campus-square-course-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.campus-square-course-meta span {
  padding: 7px 10px;

  border-radius: 999px;

  background-color: #f1f5fa;
  color: #5b6b82;

  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}


/* =========================================================
   09. BOTÓN IR AL CURSO
   ========================================================= */

.campus-square-course-button {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 17px;

  border: 1px solid #165fc7;
  border-radius: 10px;

  background-color: #165fc7;
  color: #ffffff;

  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.campus-square-course-button:hover,
.campus-square-course-button:focus-visible {
  transform: translateY(-2px);

  border-color: #ff7200;
  background-color: #ff7200;
  color: #ffffff;
}


/* =========================================================
   10. CURSOS TODAVÍA NO DISPONIBLES
   Usa class="campus-square-course-card course-coming-soon"
   ========================================================= */

.campus-square-course-card.course-coming-soon
.campus-square-course-button {
  border-color: #b9c3cf;
  background-color: #eef2f6;
  color: #7a8796;

  pointer-events: none;
  cursor: default;
}

.campus-square-course-card.course-coming-soon
.campus-square-course-button span {
  display: none;
}


/* =========================================================
   11. BOTÓN GENERAL
   ========================================================= */

.campus-courses-footer {
  margin-top: 50px;

  display: flex;
  justify-content: center;
}


/* =========================================================
   12. AJUSTES PARA PANTALLAS INTERMEDIAS
   ========================================================= */

@media (max-width: 1100px) {

  .campus-square-course-card {
    min-height: 680px;
  }

  .campus-square-course-content {
    padding: 26px;
  }

  .campus-square-course-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .campus-square-course-button {
    align-self: flex-end;
  }

}


/* =========================================================
   13. TABLET Y CELULAR
   ========================================================= */

@media (max-width: 760px) {

  .campus-featured-courses {
    padding: 72px 0;
  }

  .campus-featured-courses-header {
    margin-bottom: 38px;

    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .campus-square-course-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .campus-square-course-card {
    min-height: auto;
  }

  .campus-square-course-content {
    min-height: 300px;
    padding: 24px;
  }

  .campus-square-course-footer {
    flex-direction: row;
    align-items: flex-end;
  }

}


/* =========================================================
   14. CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

  .campus-square-course-content {
    padding: 21px;
  }

  .campus-square-course-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .campus-square-course-button {
    width: 100%;
  }

}
/* =========================================================
   GEOPLOT CAMPUS — CURSO CENSO DE CHILE CON PYTHON
   /campus/cursos/censo-de-chile-con-python/
   Mantener este bloque al final de style.css
   ========================================================= */


/* =========================================================
   01. ESTRUCTURA GENERAL
   ========================================================= */

.course-census-page {
  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  background-color: #050505;
  color: #ffffff;
}


/* =========================================================
   02. HERO DEL CURSO
   ========================================================= */

.course-census-hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 650px;
  height: calc(86vh - var(--header-height));
  max-height: 820px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  background-color: #020712;
}


/* Imagen de fondo */

.course-census-hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;

  width: 100%;
  height: 100%;

  background-image:
    url("/assets/images/campus/cursos/01CursoCensoChileconpython/imagencurso1censoconpython_resultado.webp");

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

  transform: scale(1.015);
}


/* Oscurecimiento del fondo */

.course-census-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.87) 31%,
      rgba(0, 0, 0, 0.58) 55%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.04) 62%,
      rgba(0, 0, 0, 0.42) 100%
    );
}


/* Contenedor */

.course-census-hero-container {
  width: min(88%, var(--page-max-width));
  height: 100%;

  margin: 0 auto;
  padding: 42px 0;

  display: flex;
  align-items: center;
}


/* Contenido */

.course-census-hero-content {
  width: min(760px, 58%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* Etiqueta superior */

.course-census-eyebrow {
  margin: 0 0 20px;

  color: var(--color-orange);

  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* Título */

.course-census-hero h1 {
  max-width: 790px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}


/* Descripción */

.course-census-hero-description {
  max-width: 680px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.86);

  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.68;
}


/* Datos rápidos */

.course-census-quick-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 30px;
}

.course-census-quick-data span {
  padding: 9px 13px;

  border: 1px solid rgba(61, 180, 220, 0.36);
  border-radius: 999px;

  background-color: rgba(22, 95, 199, 0.13);
  color: rgba(255, 255, 255, 0.92);

  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}


/* Botones */

.course-census-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

  margin-top: 34px;
}


/* =========================================================
   03. DESCRIPCIÓN DEL CURSO
   ========================================================= */

.course-census-description-section {
  width: 100%;
  padding: 110px 0;

  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(22, 95, 199, 0.14),
      transparent 30%
    ),
    #050505;
}


/* Encabezado */

.course-census-section-header {
  max-width: 930px;
  margin-bottom: 62px;
}

.course-census-section-header h2 {
  max-width: 900px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.course-census-section-header > p:last-child {
  max-width: 790px;
  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1.06rem;
  line-height: 1.78;
}


/* =========================================================
   04. TARJETAS DE CARACTERÍSTICAS
   ========================================================= */

.course-census-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.course-census-feature-card {
  min-height: 285px;
  padding: 30px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 21px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.014)
    );

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

.course-census-feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(61, 180, 220, 0.44);

  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.24);
}

.course-census-feature-number {
  display: block;
  margin-bottom: 50px;

  color: var(--color-light-blue);

  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
}

.course-census-feature-card h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.22;
}

.course-census-feature-card p {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.96rem;
  line-height: 1.68;
}


/* =========================================================
   05. CONTENIDOS DEL CURSO
   ========================================================= */

.course-census-content-layout {
  margin-top: 84px;
  padding: 46px;

  display: grid;
  grid-template-columns:
    minmax(270px, 0.75fr)
    minmax(0, 1.25fr);

  gap: 60px;
  align-items: start;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;

  background-color: #0a0d12;
}

.course-census-content-copy {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.course-census-content-copy h3 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.course-census-content-copy > p:last-child {
  margin: 22px 0 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.98rem;
  line-height: 1.7;
}


/* Lista de pasos */

.course-census-steps {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.course-census-steps li {
  min-height: 74px;
  padding: 18px 20px;

  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;

  background-color: rgba(255, 255, 255, 0.024);

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.course-census-steps li:hover {
  transform: translateX(4px);

  border-color: rgba(61, 180, 220, 0.32);
  background-color: rgba(22, 95, 199, 0.08);
}

.course-census-steps li span {
  color: var(--color-orange);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.course-census-steps li p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.96rem;
  line-height: 1.45;
}


/* =========================================================
   06. EVALUACIÓN, CERTIFICADO Y MODALIDAD
   ========================================================= */

.course-census-details-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.course-census-detail-card {
  padding: 31px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 95, 199, 0.1),
      rgba(255, 255, 255, 0.018)
    );
}

.course-census-detail-card h3 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.24;
}

.course-census-detail-card > p:last-child {
  margin: 0;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.95rem;
  line-height: 1.68;
}


/* =========================================================
   07. INSCRIPCIÓN Y PRECIO
   ========================================================= */

.course-census-enrollment {
  width: 100%;
  padding: 110px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.09);

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 122, 0, 0.12),
      transparent 31%
    ),
    #090909;
}

.course-census-enrollment-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.92fr)
    minmax(0, 1.08fr);

  gap: 72px;
  align-items: center;
}


/* Imagen */

.course-census-enrollment-visual {
  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;

  background-color: #020812;

  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.38);
}

.course-census-enrollment-visual img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.course-census-enrollment-visual:hover img {
  transform: scale(1.025);
}


/* Contenido */

.course-census-enrollment-content {
  min-width: 0;
}

.course-census-enrollment-content h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
}


/* Lista */

.course-census-enrollment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 26px;

  margin: 34px 0 0;
  padding: 0;

  list-style: none;
}

.course-census-enrollment-list li {
  position: relative;

  padding-left: 22px;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.95rem;
  line-height: 1.5;
}

.course-census-enrollment-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  color: var(--color-orange);

  font-weight: 900;
}


/* Precio */

.course-census-price {
  margin-top: 38px;
  padding: 26px 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.course-census-price-label {
  color: rgba(255, 255, 255, 0.62);

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-census-price strong {
  color: #ffffff;

  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}


/* Botón de pago */

.course-census-payment-button {
  margin-top: 30px;
  min-width: 230px;
}


/* Nota de pago */

.course-census-payment-note {
  max-width: 520px;
  margin: 16px 0 0;

  color: rgba(255, 255, 255, 0.5);

  font-size: 0.8rem;
  line-height: 1.5;
}


/* =========================================================
   08. ANCLAJES
   ========================================================= */

#descripcion-curso,
#inscripcion-curso {
  scroll-margin-top: calc(var(--header-height) + 18px);
}


/* =========================================================
   09. TABLET
   ========================================================= */

@media (max-width: 1080px) {

  .course-census-hero-content {
    width: min(700px, 66%);
  }

  .course-census-feature-grid,
  .course-census-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-census-content-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .course-census-content-copy {
    position: static;
  }

  .course-census-enrollment-layout {
    gap: 48px;
  }

}


/* =========================================================
   10. TABLET VERTICAL Y CELULAR
   ========================================================= */

@media (max-width: 760px) {

  .course-census-hero {
    height: auto;
    min-height: 680px;

    align-items: flex-end;
  }

  .course-census-hero-background {
    background-position: 58% center;
  }

  .course-census-hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 42%,
        rgba(0, 0, 0, 0.97) 100%
      );
  }

  .course-census-hero-container {
    width: min(90%, 680px);
    padding: 190px 0 58px;

    align-items: flex-end;
  }

  .course-census-hero-content {
    width: 100%;
  }

  .course-census-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.7rem);
  }

  .course-census-quick-data {
    gap: 8px;
  }

  .course-census-quick-data span {
    font-size: 0.72rem;
  }

  .course-census-description-section,
  .course-census-enrollment {
    padding: 76px 0;
  }

  .course-census-feature-grid,
  .course-census-details-grid,
  .course-census-enrollment-layout {
    grid-template-columns: 1fr;
  }

  .course-census-feature-card {
    min-height: auto;
  }

  .course-census-feature-number {
    margin-bottom: 32px;
  }

  .course-census-content-layout {
    margin-top: 56px;
    padding: 28px;
  }

  .course-census-enrollment-layout {
    gap: 42px;
  }

  .course-census-enrollment-list {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   11. CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 480px) {

  .course-census-hero-container {
    width: 90%;
    padding-bottom: 44px;
  }

  .course-census-hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .course-census-hero-actions .button {
    width: 100%;
  }

  .course-census-content-layout {
    padding: 22px;
  }

  .course-census-steps li {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px;
  }

  .course-census-enrollment-content h2 {
    font-size: 2.5rem;
  }

  .course-census-price strong {
    font-size: 2.7rem;
  }

  .course-census-payment-button {
    width: 100%;
  }

}


/* =========================================================
   12. MOVIMIENTO REDUCIDO
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .course-census-feature-card,
  .course-census-steps li,
  .course-census-enrollment-visual img {
    transition: none;
  }

}
/* =========================================================
   PÁGINA GENERAL DE CURSOS
   Ruta: /campus/cursos/
   ========================================================= */

/* =========================================================
   HERO
   ========================================================= */

.courses-catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 7rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(0, 133, 255, 0.24),
      transparent 28rem
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(0, 214, 255, 0.12),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #020b17 0%,
      #05172b 55%,
      #071f3a 100%
    );
}

.courses-catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.courses-catalog-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(44, 172, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(21, 134, 255, 0.03),
    0 0 0 10rem rgba(21, 134, 255, 0.025),
    0 0 0 15rem rgba(21, 134, 255, 0.02);
}

.courses-catalog-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 5rem;
  align-items: center;
}

.courses-catalog-hero-content {
  max-width: 760px;
}

.courses-catalog-eyebrow {
  margin: 0 0 1.25rem;
  color: #31b8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.courses-catalog-title {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.courses-catalog-title span {
  display: block;
  margin-top: 0.3rem;
  color: #2baaff;
}

.courses-catalog-description {
  max-width: 700px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.8;
}

.courses-catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.courses-catalog-hero .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.courses-catalog-hero .button-secondary:hover {
  color: #071a2f;
  border-color: #ffffff;
  background: #ffffff;
}

/* =========================================================
   HERO — PANEL DERECHO
   ========================================================= */

.courses-catalog-hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.courses-catalog-hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 160px;
  padding: 1.4rem 1.5rem;
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 175, 255, 0.3),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      rgba(8, 62, 113, 0.85),
      rgba(4, 22, 42, 0.9)
    );
}

.courses-catalog-hero-badge span {
  color: #ffffff;
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.07em;
}

.courses-catalog-hero-badge small {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.courses-catalog-hero-stat {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.courses-catalog-hero-stat strong {
  color: #36b8ff;
  font-size: 0.95rem;
  font-weight: 800;
}

.courses-catalog-hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.45;
}

/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.courses-catalog-intro {
  padding: 7rem 0 5rem;
  background: #ffffff;
}

.courses-catalog-intro-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 5rem;
  align-items: start;
}

.courses-catalog-intro-heading h2 {
  max-width: 820px;
  margin: 0.7rem 0 0;
  color: #071a2f;
  font-size: clamp(2.3rem, 4.5vw, 4.5rem);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.courses-catalog-intro-text {
  padding-top: 2.5rem;
}

.courses-catalog-intro-text p {
  margin: 0;
  color: #5e6d7f;
  font-size: 1rem;
  line-height: 1.85;
}

.courses-catalog-intro-text p + p {
  margin-top: 1.15rem;
}

/* =========================================================
   CATÁLOGO
   ========================================================= */

.courses-catalog-section {
  padding: 5rem 0 8rem;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f6f9fc 100%
    );
}

.courses-catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.75rem;
}

.courses-catalog-section-title {
  max-width: 760px;
  margin: 0.55rem 0 0;
  color: #071a2f;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.courses-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.courses-filter-button {
  min-height: 42px;
  padding: 0.75rem 1rem;
  color: #4d6074;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  border: 1px solid #d9e3ec;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.courses-filter-button:hover {
  color: #0879db;
  border-color: #87c7ff;
  transform: translateY(-2px);
}

.courses-filter-button.is-active {
  color: #ffffff;
  border-color: #0879db;
  background: #0879db;
  box-shadow: 0 8px 22px rgba(8, 121, 219, 0.22);
}

/* =========================================================
   GRID DE TARJETAS
   ========================================================= */

.courses-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.courses-catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    0 18px 55px rgba(13, 38, 66, 0.08),
    0 3px 10px rgba(13, 38, 66, 0.035);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.courses-catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 137, 235, 0.32);
  box-shadow:
    0 28px 72px rgba(13, 38, 66, 0.14),
    0 6px 18px rgba(13, 38, 66, 0.06);
}

.courses-catalog-card[hidden] {
  display: none !important;
}

/* =========================================================
   IMAGEN DE TARJETA
   ========================================================= */

.courses-catalog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #031020;
}

.courses-catalog-card-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 20%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(2, 14, 28, 0.4),
    transparent
  );
}

.courses-catalog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.courses-catalog-card:hover .courses-catalog-card-image img {
  transform: scale(1.035);
  filter: saturate(1.05) brightness(1.03);
}

/* =========================================================
   CUERPO DE TARJETA
   ========================================================= */

.courses-catalog-card-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 1.7rem 1.7rem 1.6rem;
}

.courses-catalog-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.courses-catalog-card-category {
  margin: 0;
  color: #ff7a00;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.courses-catalog-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #0879db;
  font-size: 0.73rem;
  font-weight: 850;
  border-radius: 50%;
  background: #edf7ff;
}

.courses-catalog-card-title {
  margin: 0.9rem 0 0;
  color: #071a2f;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.courses-catalog-card-title a {
  color: inherit;
  text-decoration: none;
}

.courses-catalog-card-title a:hover {
  color: #0879db;
}

.courses-catalog-card-description {
  margin: 1rem 0 0;
  color: #697789;
  font-size: 0.94rem;
  line-height: 1.72;
}

.courses-catalog-card-features {
  display: grid;
  gap: 0.6rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

.courses-catalog-card-features li {
  position: relative;
  padding-left: 1.35rem;
  color: #344b62;
  font-size: 0.86rem;
  line-height: 1.5;
}

.courses-catalog-card-features li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1594e8;
  box-shadow: 0 0 0 4px rgba(21, 148, 232, 0.1);
}

.courses-catalog-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-top: auto;
  padding-top: 1.7rem;
}

.courses-catalog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.courses-catalog-card-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.35rem 0.62rem;
  color: #607186;
  font-size: 0.66rem;
  font-weight: 750;
  border-radius: 999px;
  background: #f2f6fa;
}

.courses-catalog-card-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* =========================================================
   METODOLOGÍA
   ========================================================= */

.courses-method-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(9, 139, 238, 0.18),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #030d19 0%,
      #06192d 100%
    );
}

.courses-method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
}

.courses-method-section .container {
  position: relative;
  z-index: 2;
}

.courses-method-heading {
  max-width: 860px;
  margin-bottom: 3rem;
}

.courses-method-heading h2 {
  margin: 0.65rem 0 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.5vw, 4.4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.courses-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.courses-method-card {
  min-height: 270px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.025)
    );
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.courses-method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 184, 255, 0.35);
  background: rgba(255, 255, 255, 0.085);
}

.courses-method-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #28b1ff;
  font-size: 0.8rem;
  font-weight: 850;
  border-radius: 50%;
  background: rgba(40, 177, 255, 0.12);
  border: 1px solid rgba(40, 177, 255, 0.25);
}

.courses-method-card h3 {
  margin: 2.4rem 0 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.courses-method-card p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================================================
   MOODLE
   ========================================================= */

.courses-moodle-section {
  padding: 8rem 0;
  background: #ffffff;
}

.courses-moodle-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 5rem;
  align-items: center;
}

.courses-moodle-content h2 {
  max-width: 680px;
  margin: 0.65rem 0 0;
  color: #071a2f;
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.courses-moodle-content > p {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: #627185;
  font-size: 1rem;
  line-height: 1.82;
}

.courses-moodle-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.4rem;
  max-width: 700px;
  margin: 1.8rem 0 2rem;
  padding: 0;
  list-style: none;
}

.courses-moodle-benefits li {
  position: relative;
  padding-left: 1.6rem;
  color: #334a61;
  font-size: 0.9rem;
  line-height: 1.55;
}

.courses-moodle-benefits li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #0c8de2;
  font-weight: 900;
}

.courses-moodle-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 2.4rem;
  color: #ffffff;
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(0, 183, 255, 0.3),
      transparent 18rem
    ),
    linear-gradient(
      145deg,
      #04101e,
      #082a4c
    );
  box-shadow: 0 32px 80px rgba(7, 32, 58, 0.19);
}

.courses-moodle-panel::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.025),
    0 0 0 8rem rgba(255, 255, 255, 0.018);
}

.courses-moodle-panel-logo {
  position: relative;
  z-index: 2;
}

.courses-moodle-panel-logo span,
.courses-moodle-panel-logo strong {
  display: block;
}

.courses-moodle-panel-logo span {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 850;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.courses-moodle-panel-logo strong {
  margin-top: 0.55rem;
  color: #2fb5ff;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
}

.courses-moodle-panel-line {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 3px;
  margin: 1.6rem 0;
  border-radius: 999px;
  background: #2fb5ff;
}

.courses-moodle-panel p {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.courses-final-cta {
  padding: 6.5rem 0;
  background: #f3f7fb;
}

.courses-final-cta-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid #dce7f0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(13, 38, 66, 0.075);
}

.courses-final-cta-container > div {
  max-width: 800px;
}

.courses-final-cta h2 {
  margin: 0.6rem 0 0;
  color: #071a2f;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 850;
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.courses-final-cta p:not(.section-kicker) {
  max-width: 720px;
  margin: 1rem 0 0;
  color: #637286;
  font-size: 0.98rem;
  line-height: 1.75;
}

.courses-final-cta .button {
  flex: 0 0 auto;
}

/* =========================================================
   AJUSTES DE ACCESIBILIDAD
   ========================================================= */

.courses-catalog-card a:focus-visible,
.courses-filter-button:focus-visible,
.courses-catalog-hero a:focus-visible,
.courses-moodle-section a:focus-visible,
.courses-final-cta a:focus-visible {
  outline: 3px solid rgba(20, 151, 237, 0.45);
  outline-offset: 4px;
}
/* =========================================================
   AJUSTE FINAL — CATÁLOGO DE CURSOS EN ESCRITORIO
   Reduce hero y tarjetas para evitar elementos gigantes
   ========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Contenedor exclusivo de la página de cursos */
.courses-catalog-hero .container,
.courses-catalog-intro .container,
.courses-catalog-section .container,
.courses-method-section .container,
.courses-moodle-section .container,
.courses-final-cta .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
}

/* =========================================================
   HERO MÁS COMPACTO
   ========================================================= */

.courses-catalog-hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 5.5rem 0 3.5rem;
}

.courses-catalog-hero-container {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.courses-catalog-hero-content {
  max-width: 680px;
}

.courses-catalog-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.72rem;
}

.courses-catalog-title {
  max-width: 680px;
  font-size: clamp(3rem, 4.7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.courses-catalog-description {
  max-width: 650px;
  margin-top: 1.4rem;
  font-size: 1rem;
  line-height: 1.7;
}

.courses-catalog-hero-actions {
  margin-top: 1.7rem;
}

.courses-catalog-hero-actions .button {
  min-height: 46px;
  padding: 0.8rem 1.3rem;
}

/* Panel derecho más bajo */
.courses-catalog-hero-visual {
  max-width: 470px;
  justify-self: end;
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 24px;
}

.courses-catalog-hero-badge {
  min-height: 125px;
  padding: 1rem 1.25rem;
}

.courses-catalog-hero-badge span {
  font-size: clamp(3.5rem, 5.5vw, 5rem);
}

.courses-catalog-hero-stat {
  grid-template-columns: 105px minmax(0, 1fr);
  min-height: 64px;
  padding: 0.85rem 1rem;
}

.courses-catalog-hero-stat strong {
  font-size: 0.88rem;
}

.courses-catalog-hero-stat span {
  font-size: 0.8rem;
}

/* =========================================================
   INTRODUCCIÓN MÁS COMPACTA
   ========================================================= */

.courses-catalog-intro {
  padding: 5rem 0 3rem;
}

.courses-catalog-intro-container {
  gap: 3.5rem;
}

.courses-catalog-intro-heading h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
}

/* =========================================================
   CATÁLOGO — ANCHO CONTROLADO
   ========================================================= */

.courses-catalog-section {
  padding: 3.5rem 0 6rem;
}

.courses-catalog-toolbar {
  margin-bottom: 2rem;
}

.courses-catalog-section-title {
  max-width: 640px;
  font-size: clamp(2.2rem, 3.3vw, 3.3rem);
}

/* La cuadrícula no ocupará más de 1120 px */
.courses-catalog-grid {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

/* Tarjetas menos anchas */
.courses-catalog-card {
  width: 100%;
  max-width: 544px;
  justify-self: center;
  border-radius: 20px;
}

/*
  Se mantiene la imagen completa, pero con una altura limitada.
  object-fit: contain evita cortar los textos de la gráfica.
*/
.courses-catalog-card-image {
  height: clamp(360px, 36vw, 500px);
  aspect-ratio: auto;
  background: #031020;
}

.courses-catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #031020;
}

/* Cuerpo más compacto */
.courses-catalog-card-body {
  padding: 1.35rem 1.4rem 1.4rem;
}

.courses-catalog-card-title {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.courses-catalog-card-description {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.6;
}

.courses-catalog-card-features {
  margin-top: 1rem;
  gap: 0.45rem;
}

.courses-catalog-card-features li {
  font-size: 0.8rem;
}

.courses-catalog-card-footer {
  padding-top: 1.25rem;
}

/* =========================================================
   METODOLOGÍA MÁS COMPACTA
   ========================================================= */

.courses-method-section {
  padding: 6rem 0;
}

.courses-method-heading h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.7rem);
}

.courses-method-card {
  min-height: 235px;
}

/* =========================================================
   MOODLE Y CTA
   ========================================================= */

.courses-moodle-section {
  padding: 6rem 0;
}

.courses-moodle-content h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.7rem);
}

.courses-moodle-panel {
  min-height: 380px;
}

.courses-final-cta {
  padding: 5rem 0;
}
/* =========================================================
   PÁGINA ÍNDICE DE INVESTIGACIÓN
   Ruta: /investigacion/
   ========================================================= */

/* =========================================================
   CONTENEDORES
   ========================================================= */

.research-index-hero .container,
.research-index-intro .container,
.research-lines-section .container,
.research-index-connection .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.research-index-hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(0, 151, 255, 0.24),
      transparent 30rem
    ),
    radial-gradient(
      circle at 15% 90%,
      rgba(0, 193, 255, 0.11),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #020a14 0%,
      #04172b 55%,
      #072844 100%
    );
}

.research-index-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 18%,
    #000 84%,
    transparent
  );
}

.research-index-hero::after {
  content: "";
  position: absolute;
  right: -13rem;
  bottom: -20rem;
  width: 45rem;
  height: 45rem;
  pointer-events: none;
  border: 1px solid rgba(49, 179, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(49, 179, 255, 0.028),
    0 0 0 10rem rgba(49, 179, 255, 0.022),
    0 0 0 15rem rgba(49, 179, 255, 0.016);
}

.research-index-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}

.research-index-hero-content {
  max-width: 760px;
}

.research-index-eyebrow {
  margin: 0 0 1rem;
  color: #38baff;
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.research-index-title {
  max-width: 800px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.research-index-title span {
  display: block;
  margin-top: 0.25rem;
  color: #2baeff;
}

.research-index-description {
  max-width: 700px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.78;
}

.research-index-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.research-index-actions .button {
  min-height: 46px;
  padding: 0.85rem 1.35rem;
}

.research-index-actions .button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.research-index-actions .button-secondary:hover {
  color: #071a2f;
  border-color: #ffffff;
  background: #ffffff;
}


/* =========================================================
   HERO — PANEL DERECHO
   ========================================================= */

.research-index-hero-panel {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 32px 85px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.research-index-hero-number {
  min-height: 145px;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.3rem;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 184, 255, 0.28),
      transparent 46%
    ),
    linear-gradient(
      135deg,
      rgba(8, 62, 113, 0.88),
      rgba(4, 22, 42, 0.92)
    );
}

.research-index-hero-number strong {
  color: #ffffff;
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.07em;
}

.research-index-hero-number span {
  max-width: 145px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-index-hero-metric {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 64px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.research-index-hero-metric span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #30b5ff;
  font-size: 0.72rem;
  font-weight: 850;
  border: 1px solid rgba(48, 181, 255, 0.24);
  border-radius: 50%;
  background: rgba(48, 181, 255, 0.1);
}

.research-index-hero-metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}


/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

.research-index-intro {
  padding: 5.5rem 0 4.5rem;
  background: #ffffff;
}

.research-index-intro-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 5rem;
  align-items: start;
}

.research-index-intro h2 {
  max-width: 760px;
  margin: 0.65rem 0 0;
  color: #071a2f;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.research-index-intro-text {
  padding-top: 2.1rem;
}

.research-index-intro-text p {
  margin: 0;
  color: #607083;
  font-size: 0.98rem;
  line-height: 1.82;
}

.research-index-intro-text p + p {
  margin-top: 1rem;
}


/* =========================================================
   LÍNEAS DE INVESTIGACIÓN
   ========================================================= */

.research-lines-section {
  background: #ffffff;
}

.research-line {
  position: relative;
  border-top: 1px solid rgba(8, 31, 56, 0.09);
}

.research-line:last-child {
  border-bottom: 1px solid rgba(8, 31, 56, 0.09);
}

.research-line-light {
  background: #ffffff;
}

.research-line-soft {
  background: #f4f8fb;
}

.research-line-dark {
  color: #ffffff;
  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(0, 160, 255, 0.18),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #030d19,
      #061b30
    );
}

.research-line-container {
  min-height: 245px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 190px;
  gap: 2.4rem;
  align-items: center;
  padding-block: 2.8rem;
}

.research-line-number {
  align-self: start;
  padding-top: 0.25rem;
  color: #0b86df;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.research-line-dark .research-line-number {
  color: #38baff;
}

.research-line-content {
  max-width: 820px;
}

.research-line-category {
  margin: 0;
  color: #ff7900;
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.research-line-dark .research-line-category {
  color: #3dbbff;
}

.research-line-content h2 {
  margin: 0.55rem 0 0;
  color: #071a2f;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.research-line-dark .research-line-content h2 {
  color: #ffffff;
}

.research-line-content > p:not(.research-line-category) {
  max-width: 800px;
  margin: 0.95rem 0 0;
  color: #5f7082;
  font-size: 0.94rem;
  line-height: 1.75;
}

.research-line-dark .research-line-content > p:not(.research-line-category) {
  color: rgba(255, 255, 255, 0.68);
}

.research-line-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  align-items: center;
  margin-top: 1.15rem;
}

.research-line-related span {
  color: #7a8998;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-line-related strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.72rem;
  color: #087ed4;
  font-size: 0.75rem;
  font-weight: 850;
  border-radius: 999px;
  background: #eaf5ff;
}

.research-line-dark .research-line-related span {
  color: rgba(255, 255, 255, 0.5);
}

.research-line-dark .research-line-related strong {
  color: #45bdff;
  border: 1px solid rgba(69, 189, 255, 0.2);
  background: rgba(69, 189, 255, 0.09);
}

.research-line-action {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.research-line-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.8rem 1rem;
  color: #087ed4;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid #c9e3f6;
  border-radius: 999px;
  background: #ffffff;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.research-line-link:hover {
  color: #ffffff;
  border-color: #087ed4;
  background: #087ed4;
  transform: translateX(4px);
  box-shadow: 0 10px 25px rgba(8, 126, 212, 0.2);
}

.research-line-dark .research-line-link {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.research-line-dark .research-line-link:hover {
  color: #071a2f;
  border-color: #ffffff;
  background: #ffffff;
}


/* =========================================================
   CONEXIÓN CON TECNOLOGÍA Y SOLUCIONES
   ========================================================= */

.research-index-connection {
  padding: 6rem 0;
  background: #f3f7fa;
}

.research-index-connection-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid #dbe6ee;
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    0 20px 58px rgba(10, 35, 62, 0.075),
    0 3px 10px rgba(10, 35, 62, 0.035);
}

.research-index-connection-container > div:first-child {
  max-width: 820px;
}

.research-index-connection h2 {
  margin: 0.6rem 0 0;
  color: #071a2f;
  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.research-index-connection p:not(.section-kicker) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #627286;
  font-size: 0.96rem;
  line-height: 1.78;
}

.research-index-connection-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 210px;
}

.research-index-connection-actions .button {
  width: 100%;
  justify-content: center;
}

.research-index-connection-actions .button-secondary {
  color: #087ed4;
  border-color: #bddcf2;
  background: #ffffff;
}

.research-index-connection-actions .button-secondary:hover {
  color: #ffffff;
  border-color: #087ed4;
  background: #087ed4;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

.research-index-hero a:focus-visible,
.research-line-link:focus-visible,
.research-index-connection a:focus-visible {
  outline: 3px solid rgba(28, 158, 240, 0.45);
  outline-offset: 4px;
}


/* HERO */

body[data-page="investigacion"] .research-index-hero {
  min-height: 420px !important;
  height: auto !important;
  padding-top: 54px !important;
  padding-bottom: 44px !important;
}

body[data-page="investigacion"] .research-index-hero-container {
  grid-template-columns:
    minmax(0, 620px)
    minmax(280px, 360px) !important;

  justify-content: space-between !important;
  gap: 48px !important;
  align-items: center !important;
}

body[data-page="investigacion"] .research-index-hero-content {
  max-width: 620px !important;
}

body[data-page="investigacion"] .research-index-eyebrow {
  margin-bottom: 10px !important;
  font-size: 11px !important;
}

body[data-page="investigacion"] .research-index-title {
  max-width: 620px !important;
  margin: 0 !important;
  font-size: 54px !important;
  line-height: 0.98 !important;
  letter-spacing: -2px !important;
}

body[data-page="investigacion"] .research-index-title span {
  margin-top: 6px !important;
}

body[data-page="investigacion"] .research-index-description {
  max-width: 600px !important;
  margin-top: 16px !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

body[data-page="investigacion"] .research-index-actions {
  margin-top: 18px !important;
  gap: 10px !important;
}

body[data-page="investigacion"] .research-index-actions .button {
  min-height: 40px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
}

/* PANEL DERECHO */

body[data-page="investigacion"] .research-index-hero-panel {
  width: 100% !important;
  max-width: 360px !important;
  padding: 10px !important;
  gap: 8px !important;
  border-radius: 20px !important;
}

body[data-page="investigacion"] .research-index-hero-number {
  min-height: 100px !important;
  padding: 14px !important;
  border-radius: 16px !important;
}

body[data-page="investigacion"] .research-index-hero-number strong {
  font-size: 64px !important;
}

body[data-page="investigacion"] .research-index-hero-number span {
  font-size: 11px !important;
  max-width: 110px !important;
}

body[data-page="investigacion"] .research-index-hero-metric {
  min-height: 48px !important;
  padding: 8px 10px !important;
}

body[data-page="investigacion"] .research-index-hero-metric span {
  width: 30px !important;
  height: 30px !important;
  font-size: 10px !important;
}

body[data-page="investigacion"] .research-index-hero-metric p {
  font-size: 12px !important;
}
/* =========================================================
   CORRECCIÓN FINAL
   INVESTIGACIÓN — FONDOS NEGROS, LOGOS Y BOTONES NARANJOS
   ESTE BLOQUE DEBE QUEDAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */


/* =========================================================
   FONDO GENERAL DE LAS CINCO INVESTIGACIONES
   ========================================================= */

body[data-page="investigacion"] .research-lines-section {
  position: relative !important;
  overflow: hidden !important;
  background: #02070d !important;
}

body[data-page="investigacion"] .research-line,
body[data-page="investigacion"] .research-line-light,
body[data-page="investigacion"] .research-line-soft,
body[data-page="investigacion"] .research-line-dark {
  position: relative !important;
  overflow: hidden !important;

  color: #ffffff !important;

  border-top: 1px solid rgba(37, 174, 255, 0.16) !important;

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(0, 145, 255, 0.14),
      transparent 380px
    ),
    linear-gradient(
      120deg,
      #02070d 0%,
      #04111f 55%,
      #061a2d 100%
    ) !important;
}

body[data-page="investigacion"] .research-line:nth-child(even) {
  background:
    radial-gradient(
      circle at 15% 70%,
      rgba(0, 182, 255, 0.1),
      transparent 360px
    ),
    linear-gradient(
      120deg,
      #061827 0%,
      #030d18 55%,
      #02070d 100%
    ) !important;
}


/* Retícula tecnológica */

body[data-page="investigacion"] .research-line::before {
  content: "" !important;

  position: absolute !important;
  inset: 0 !important;

  pointer-events: none !important;

  opacity: 0.1 !important;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ) !important;

  background-size: 52px 52px !important;
}


/* =========================================================
   ESTRUCTURA DE CADA FRANJA
   ========================================================= */

body[data-page="investigacion"] .research-line-container {
  position: relative !important;
  z-index: 2 !important;

  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;

  min-height: 290px !important;

  display: grid !important;

  grid-template-columns:
    80px
    minmax(0, 1fr)
    210px !important;

  gap: 2.5rem !important;
  align-items: center !important;

  margin-inline: auto !important;

  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}


/* =========================================================
   NÚMERO
   ========================================================= */

body[data-page="investigacion"] .research-line-number {
  align-self: start !important;

  padding-top: 0.25rem !important;

  color: #20a9ff !important;

  font-size: 3.7rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;

  text-shadow:
    0 0 30px rgba(32, 169, 255, 0.28) !important;
}


/* =========================================================
   CATEGORÍA
   ========================================================= */

body[data-page="investigacion"] .research-line-category {
  margin: 0 !important;

  color: #ff7900 !important;

  font-size: 0.72rem !important;
  font-weight: 850 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   TÍTULO
   ========================================================= */

body[data-page="investigacion"] .research-line-content h2 {
  margin: 0.55rem 0 0 !important;

  color: #ffffff !important;

  font-size: clamp(2rem, 3vw, 3.2rem) !important;
  font-weight: 850 !important;
  line-height: 1.03 !important;

  letter-spacing: -0.04em !important;

  text-shadow:
    0 10px 32px rgba(0, 0, 0, 0.3) !important;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

body[data-page="investigacion"]
.research-line-content > p:not(.research-line-category) {
  max-width: 850px !important;

  margin: 0.9rem 0 0 !important;

  color: rgba(232, 241, 250, 0.72) !important;

  font-size: 0.94rem !important;
  line-height: 1.7 !important;
}


/* =========================================================
   BLOQUE TECNOLOGÍA RELACIONADA
   ========================================================= */

body[data-page="investigacion"] .research-line-technology {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;

  gap: 0.75rem 1rem !important;

  margin-top: 1.3rem !important;
}

body[data-page="investigacion"]
.research-line-technology-label {
  display: inline-block !important;

  color: rgba(211, 225, 238, 0.58) !important;

  font-size: 0.67rem !important;
  font-weight: 800 !important;

  letter-spacing: 0.11em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   BOTÓN QUE CONTIENE EL LOGO
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-brand {
  display: inline-flex !important;

  width: auto !important;
  max-width: 320px !important;
  min-height: 62px !important;

  align-items: center !important;
  justify-content: flex-start !important;

  gap: 0.8rem !important;

  padding: 0.65rem 1rem !important;

  color: #ffffff !important;
  text-decoration: none !important;

  border: 1px solid #ff7900 !important;
  border-radius: 12px !important;

  background:
    linear-gradient(
      135deg,
      #ff8500 0%,
      #ff6900 100%
    ) !important;

  box-shadow:
    0 12px 30px rgba(255, 105, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;

  overflow: hidden !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
}

body[data-page="investigacion"]
.research-line-technology-brand:hover {
  transform: translateY(-3px) !important;

  border-color: #ffad58 !important;

  background:
    linear-gradient(
      135deg,
      #ff9b25 0%,
      #ff7200 100%
    ) !important;

  box-shadow:
    0 17px 38px rgba(255, 105, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}


/* =========================================================
   LOGO DENTRO DEL BOTÓN
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-logo {
  display: block !important;

  width: auto !important;
  max-width: 170px !important;
  height: 42px !important;
  max-height: 42px !important;

  flex: 0 0 auto !important;

  object-fit: contain !important;
  object-position: left center !important;

  margin: 0 !important;
  padding: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;

  filter: none !important;

  transform: none !important;
}


/* CensusAnalytics puede ser un poco más ancho */

body[data-page="investigacion"]
.research-line:first-child
.research-line-technology-logo {
  max-width: 205px !important;
}


/* =========================================================
   NOMBRE AL LADO DEL LOGO
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-name {
  display: none !important;
}


/* =========================================================
   BOTÓN VER INVESTIGACIÓN
   ========================================================= */

body[data-page="investigacion"] .research-line-action {
  position: relative !important;
  z-index: 3 !important;

  display: flex !important;
  justify-content: flex-end !important;
}

body[data-page="investigacion"] .research-line-link,
body[data-page="investigacion"]
.research-line-dark
.research-line-link {
  display: inline-flex !important;

  min-height: 48px !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 0.65rem !important;

  padding: 0.85rem 1.2rem !important;

  color: #ffffff !important;

  font-size: 0.82rem !important;
  font-weight: 850 !important;

  text-decoration: none !important;
  white-space: nowrap !important;

  border: 1px solid #ff7900 !important;
  border-radius: 10px !important;

  background:
    linear-gradient(
      135deg,
      #ff8500,
      #ff6500
    ) !important;

  box-shadow:
    0 12px 28px rgba(255, 105, 0, 0.22) !important;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease !important;
}

body[data-page="investigacion"] .research-line-link:hover {
  color: #ffffff !important;

  transform: translateY(-3px) !important;

  background:
    linear-gradient(
      135deg,
      #ff9b24,
      #ff7200
    ) !important;

  box-shadow:
    0 17px 36px rgba(255, 105, 0, 0.34) !important;
}

body[data-page="investigacion"]
.research-line-link span {
  font-size: 1rem !important;
}
/* =========================================================
   BOTONES DE TECNOLOGÍA RELACIONADA
   ÍCONO + NOMBRE DE MARCA
   DEBE IR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */

/* Botón general */

body[data-page="investigacion"]
.research-line-technology-brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  width: auto !important;
  min-width: 250px !important;
  max-width: 390px !important;
  min-height: 72px !important;

  gap: 0.9rem !important;

  padding: 0.7rem 1.1rem !important;

  color: #ffffff !important;
  text-decoration: none !important;

  border: 1.5px solid #ff7900 !important;
  border-radius: 12px !important;

  background:
    linear-gradient(
      135deg,
      #090303 0%,
      #160606 100%
    ) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.3) !important;

  overflow: visible !important;

  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease !important;
}

body[data-page="investigacion"]
.research-line-technology-brand:hover {
  transform: translateY(-3px) !important;

  border-color: #ff9a2f !important;

  background:
    linear-gradient(
      135deg,
      #160505 0%,
      #250909 100%
    ) !important;

  box-shadow:
    0 16px 38px rgba(255, 105, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}


/* =========================================================
   ÍCONO DEL LOGO
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-logo {
  display: block !important;

  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;

  height: 50px !important;
  min-height: 50px !important;
  max-height: 50px !important;

  flex: 0 0 50px !important;

  object-fit: contain !important;
  object-position: center !important;

  margin: 0 !important;
  padding: 0 !important;

  opacity: 1 !important;
  visibility: visible !important;

  filter: none !important;
  transform: none !important;
}


/* Anula el ancho especial anterior de CensusAnalytics */

body[data-page="investigacion"]
.research-line:first-child
.research-line-technology-logo {
  width: 50px !important;
  min-width: 50px !important;
  max-width: 50px !important;
  height: 50px !important;
}


/* =========================================================
   NOMBRE GENERAL DE LA TECNOLOGÍA
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-name {
  position: relative !important;

  display: inline-flex !important;
  align-items: baseline !important;

  color: #ffffff !important;

  font-family:
    "Arial Black",
    "Montserrat",
    "Arial",
    sans-serif !important;

  font-size: clamp(1.45rem, 2vw, 2rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  letter-spacing: -0.055em !important;

  white-space: nowrap !important;

  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.42) !important;
}


/* Símbolo TM */

body[data-page="investigacion"]
.research-line-technology-name::after {
  content: "TM";

  position: relative;
  top: -0.7em;

  margin-left: 0.28rem;

  color: #ffffff;

  font-family: Arial, sans-serif;
  font-size: 0.42em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}


/* =========================================================
   CENSUSANALYTICS
   ========================================================= */

body[data-page="investigacion"]
.brand-censusanalytics,
body[data-page="investigacion"]
.research-line:first-child
.research-line-technology-name {
  color: #ffffff !important;
}

body[data-page="investigacion"]
.research-line:first-child
.research-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 42%,
      #19a8ff 42%,
      #19a8ff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   IROE-1
   ========================================================= */

body[data-page="investigacion"]
.research-line:nth-child(2)
.research-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 62%,
      #ff7900 62%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent;

  letter-spacing: -0.04em !important;
}


/* =========================================================
   TSUNAMIGO
   ========================================================= */

body[data-page="investigacion"]
.research-line:nth-child(3)
.research-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #367de0 0%,
      #367de0 67%,
      #ff7900 67%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   MORPHOFLOW
   ========================================================= */

body[data-page="investigacion"]
.research-line:nth-child(4)
.research-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 48%,
      #ff7900 48%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   CHIRPVIEW
   ========================================================= */

body[data-page="investigacion"]
.research-line:nth-child(5)
.research-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 52%,
      #18a8ff 52%,
      #18a8ff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent !important;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   ETIQUETA TECNOLOGÍA RELACIONADA
   ========================================================= */

body[data-page="investigacion"]
.research-line-technology-label {
  color: rgba(217, 229, 241, 0.62) !important;

  font-size: 0.68rem !important;
  font-weight: 850 !important;

  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}
/* =========================================================
   HERO INVESTIGACIÓN — CINCO MÉTRICAS
   ========================================================= */

body[data-page="investigacion"]
.research-index-hero-panel {
  max-width: 450px !important;
  gap: 0.55rem !important;
  padding: 0.8rem !important;
}

body[data-page="investigacion"]
.research-index-hero-number {
  min-height: 92px !important;
}

body[data-page="investigacion"]
.research-index-hero-metric {
  min-height: 48px !important;
  padding: 0.55rem 0.8rem !important;
}

body[data-page="investigacion"]
.research-index-hero-metric p {
  font-size: 0.76rem !important;
  line-height: 1.35 !important;
}
/* =========================================================
   CORRECCIÓN DEFINITIVA — PANEL VERTICAL DE 5 LÍNEAS
   DEBE QUEDAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */

body[data-page="investigacion"] .research-index-hero {
  min-height: 570px !important;
  height: auto !important;
  overflow: hidden !important;
  padding: 52px 0 !important;
}

body[data-page="investigacion"]
.research-index-hero-container {
  display: grid !important;
  grid-template-columns: minmax(0, 650px) 430px !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 60px !important;
}

/* Panel completo */

body[data-page="investigacion"]
.research-index-hero-panel {
  position: relative !important;

  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto repeat(5, auto) !important;

  width: 100% !important;
  max-width: 430px !important;
  min-width: 0 !important;

  height: auto !important;
  min-height: 0 !important;

  gap: 8px !important;

  margin: 0 !important;
  padding: 12px !important;

  overflow: hidden !important;

  border-radius: 22px !important;
}

/* Encabezado 05 */

body[data-page="investigacion"]
.research-index-hero-number {
  position: relative !important;

  display: flex !important;
  align-items: center !important;

  width: 100% !important;
  min-width: 0 !important;

  height: 92px !important;
  min-height: 92px !important;
  max-height: 92px !important;

  margin: 0 !important;
  padding: 14px 18px !important;

  transform: none !important;
}

body[data-page="investigacion"]
.research-index-hero-number strong {
  flex: 0 0 auto !important;

  margin: 0 !important;

  font-size: 58px !important;
  line-height: 1 !important;
}

body[data-page="investigacion"]
.research-index-hero-number span {
  display: block !important;

  max-width: 150px !important;

  margin-left: 16px !important;

  font-size: 11px !important;
  line-height: 1.3 !important;
}

/* Cada una de las cinco métricas */

body[data-page="investigacion"]
.research-index-hero-metric {
  position: relative !important;

  display: grid !important;
  grid-template-columns: 36px minmax(0, 1fr) !important;

  align-items: center !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;

  height: 43px !important;
  min-height: 43px !important;
  max-height: 43px !important;

  margin: 0 !important;
  padding: 6px 12px !important;

  transform: none !important;

  overflow: hidden !important;
}

body[data-page="investigacion"]
.research-index-hero-metric span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 29px !important;
  min-width: 29px !important;
  max-width: 29px !important;

  height: 29px !important;
  min-height: 29px !important;
  max-height: 29px !important;

  margin: 0 !important;

  font-size: 10px !important;
  line-height: 1 !important;
}

body[data-page="investigacion"]
.research-index-hero-metric p {
  display: block !important;

  width: auto !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 0 0 5px !important;

  color: rgba(255, 255, 255, 0.76) !important;

  font-size: 12px !important;
  line-height: 1.2 !important;

  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
/* =========================================================
   INVESTIGACIÓN — TEXTOS DESCRIPTIVOS MÁS GRANDES
   DEBE IR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */


/* ---------------------------------------------------------
   DESCRIPCIÓN PRINCIPAL DEL HERO
   "Desarrollamos investigación..."
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-index-description {
  max-width: 760px !important;

  margin-top: 22px !important;

  color: rgba(243, 248, 253, 0.92) !important;

  font-size: 21px !important;
  font-weight: 450 !important;
  line-height: 1.65 !important;

  letter-spacing: -0.01em !important;
}


/* ---------------------------------------------------------
   PANEL DERECHO DEL HERO
   "LÍNEAS DE INVESTIGACIÓN"
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-index-hero-number span {
  max-width: 170px !important;

  color: rgba(255, 255, 255, 0.9) !important;

  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;

  letter-spacing: 0.07em !important;
}


/* Nombres de las cinco líneas del panel */

body[data-page="investigacion"]
.research-index-hero-metric p {
  color: rgba(255, 255, 255, 0.92) !important;

  font-size: 15px !important;
  font-weight: 550 !important;
  line-height: 1.3 !important;

  letter-spacing: -0.01em !important;
}


/* Números 01, 02, 03, 04 y 05 del panel */

body[data-page="investigacion"]
.research-index-hero-metric span {
  font-size: 11px !important;
  font-weight: 900 !important;
}


/* ---------------------------------------------------------
   INTRODUCCIÓN
   "Nuestras líneas de investigación integran..."
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-index-intro-text p {
  max-width: 720px !important;

  color: #50657b !important;

  font-size: 21px !important;
  font-weight: 450 !important;
  line-height: 1.75 !important;

  letter-spacing: -0.01em !important;
}

body[data-page="investigacion"]
.research-index-intro-text p + p {
  margin-top: 20px !important;
}


/* ---------------------------------------------------------
   DESCRIPCIÓN DE LAS CINCO INVESTIGACIONES
   "Estudiamos la distribución espacial..."
   "Analizamos amenaza, exposición..."
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-line-content > p:not(.research-line-category) {
  max-width: 1050px !important;

  margin-top: 18px !important;

  color: rgba(238, 245, 252, 0.88) !important;

  font-size: 21px !important;
  font-weight: 450 !important;
  line-height: 1.7 !important;

  letter-spacing: -0.012em !important;
}


/* ---------------------------------------------------------
   CATEGORÍAS NARANJAS
   "DEMOGRAFÍA Y TERRITORIO"
   "EXPOSICIÓN Y VULNERABILIDAD"
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-line-category {
  color: #ff7900 !important;

  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.17em !important;
}


/* ---------------------------------------------------------
   ETIQUETA "TECNOLOGÍA RELACIONADA"
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-line-technology-label {
  color: rgba(225, 237, 248, 0.8) !important;

  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;

  letter-spacing: 0.13em !important;
}


/* ---------------------------------------------------------
   TEXTO DEL BLOQUE FINAL
   "Los resultados de nuestras investigaciones..."
   --------------------------------------------------------- */

body[data-page="investigacion"]
.research-index-connection p:not(.section-kicker) {
  max-width: 820px !important;

  color: #50657b !important;

  font-size: 21px !important;
  font-weight: 450 !important;
  line-height: 1.75 !important;

  letter-spacing: -0.01em !important;
}
/* =========================================================
   INDEX DE SOLUCIONES
   Ruta: /soluciones/
   ========================================================= */


/* =========================================================
   CONTENEDORES
   ========================================================= */

body[data-page="soluciones"] .solutions-index-hero .container,
body[data-page="soluciones"] .solutions-index-intro .container,
body[data-page="soluciones"] .solutions-lines-section .container,
body[data-page="soluciones"] .solutions-index-connection .container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
}


/* =========================================================
   HERO
   ========================================================= */

body[data-page="soluciones"] .solutions-index-hero {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 52px 0;
  color: #ffffff;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(0, 151, 255, 0.23),
      transparent 30rem
    ),
    radial-gradient(
      circle at 18% 88%,
      rgba(0, 193, 255, 0.1),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #020a14 0%,
      #04172b 55%,
      #072844 100%
    );
}

body[data-page="soluciones"] .solutions-index-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;

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

  background-size: 58px 58px;
}

body[data-page="soluciones"] .solutions-index-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -20rem;
  width: 45rem;
  height: 45rem;
  pointer-events: none;

  border: 1px solid rgba(49, 179, 255, 0.18);
  border-radius: 50%;

  box-shadow:
    0 0 0 5rem rgba(49, 179, 255, 0.028),
    0 0 0 10rem rgba(49, 179, 255, 0.022),
    0 0 0 15rem rgba(49, 179, 255, 0.016);
}

body[data-page="soluciones"] .solutions-index-hero-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 650px)
    minmax(340px, 430px);

  justify-content: space-between;
  align-items: center;
  gap: 60px;
}


<!-- =====================================================
     HERO — COLUMNA IZQUIERDA
     ===================================================== -->

<div class="courses-catalog-hero-content">

  <!-- LOGO REAL DE GEOPLOT CAMPUS -->

  <a
    class="courses-catalog-campus-brand"
    href="/campus/"
    aria-label="Ir a GEOPLOT Campus"
  >

    <img
      src="/assets/logos/Logo_Geoplot_Campus.svg"
      alt="Logo de GEOPLOT Campus"
    >

    <div class="courses-catalog-campus-brand-copy">

      <strong>
        GEOPLOT <span>Campus</span>
      </strong>

      <small>
        Formación geoespacial aplicada
      </small>

    </div>

  </a>


  <!-- TÍTULO EN TRES LÍNEAS -->

  <h1 class="courses-catalog-hero-title">

    <span>
      Cursos de ciencia y
    </span>

    <span>
      tecnología geoespacial
    </span>

    <span>
      aplicada
    </span>

  </h1>


  <p class="courses-catalog-hero-description">

    Formación práctica basada en datos oficiales, software
    especializado, proyectos reales y metodologías aplicadas al
    análisis territorial, las geociencias y la gestión del riesgo.

  </p>


  <div class="courses-catalog-hero-actions">

    <a
      class="button button-primary"
      href="#catalogo-cursos"
    >
      Explorar cursos
    </a>

    <a
      class="button button-secondary"
      href="https://campus.geoplot.cl"
      target="_blank"
      rel="noopener noreferrer"
    >
      Entrar a Moodle Campus
    </a>

  </div>

</div>


<!-- =====================================================
     HERO — PANEL DERECHO
     ===================================================== -->

<div
  class="courses-catalog-hero-panel"
  aria-label="Cuatro cursos disponibles en GEOPLOT Campus"
>

  <div class="courses-catalog-hero-number">

    <strong>04</strong>

    <span>
      Cursos disponibles
    </span>

  </div>


  <a
    class="courses-catalog-hero-course"
    href="/campus/cursos/01-qgis-mapas/"
  >

    <span>01</span>

    <p>
      Carga de datos geoespaciales y creación de mapas
    </p>

  </a>


  <a
    class="courses-catalog-hero-course"
    href="/campus/cursos/02-qgis-curvas-nivel/"
  >

    <span>02</span>

    <p>
      QGIS para crear curvas de nivel con datos satelitales
    </p>

  </a>


  <a
    class="courses-catalog-hero-course"
    href="/campus/cursos/03-python-geociencias/"
  >

    <span>03</span>

    <p>
      Python para geociencias
    </p>

  </a>


  <a
    class="courses-catalog-hero-course"
    href="/campus/cursos/04censo-de-chile-con-python/"
  >

    <span>04</span>

    <p>
      Censo de Chile con Python
    </p>

  </a>

</div>
/* =========================================================
   INTRODUCCIÓN
   ========================================================= */

body[data-page="soluciones"] .solutions-index-intro {
  padding: 5.5rem 0 4.5rem;
  background: #ffffff;
}

body[data-page="soluciones"] .solutions-index-intro-container {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.72fr);

  gap: 5rem;
  align-items: start;
}

body[data-page="soluciones"] .solutions-index-intro-heading h2 {
  max-width: 760px;
  margin: 0.65rem 0 0;

  color: #071a2f;

  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 850;
  line-height: 1.04;

  letter-spacing: -0.045em;
}

body[data-page="soluciones"] .solutions-index-intro-text {
  padding-top: 2.1rem;
}

body[data-page="soluciones"] .solutions-index-intro-text p {
  max-width: 720px;
  margin: 0;

  color: #50657b;

  font-size: 21px;
  font-weight: 450;
  line-height: 1.75;

  letter-spacing: -0.01em;
}

body[data-page="soluciones"]
.solutions-index-intro-text p + p {
  margin-top: 20px;
}


/* =========================================================
   CINCO SOLUCIONES
   ========================================================= */

body[data-page="soluciones"] .solutions-lines-section {
  position: relative;
  overflow: hidden;
  background: #02070d;
}

body[data-page="soluciones"] .solution-line {
  position: relative;
  overflow: hidden;

  color: #ffffff;

  border-top: 1px solid rgba(37, 174, 255, 0.16);

  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(0, 145, 255, 0.14),
      transparent 380px
    ),
    linear-gradient(
      120deg,
      #02070d 0%,
      #04111f 55%,
      #061a2d 100%
    );
}

body[data-page="soluciones"] .solution-line:nth-child(even) {
  background:
    radial-gradient(
      circle at 15% 70%,
      rgba(0, 182, 255, 0.1),
      transparent 360px
    ),
    linear-gradient(
      120deg,
      #061827 0%,
      #030d18 55%,
      #02070d 100%
    );
}

body[data-page="soluciones"] .solution-line::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.1;

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

  background-size: 52px 52px;
}

body[data-page="soluciones"] .solution-line-container {
  position: relative;
  z-index: 2;

  min-height: 290px;

  display: grid;
  grid-template-columns:
    80px
    minmax(0, 1fr)
    210px;

  gap: 2.5rem;
  align-items: center;

  padding-top: 3rem;
  padding-bottom: 3rem;
}


/* =========================================================
   NÚMERO
   ========================================================= */

body[data-page="soluciones"] .solution-line-number {
  align-self: start;
  padding-top: 0.25rem;

  color: #20a9ff;

  font-size: 3.7rem;
  font-weight: 850;
  line-height: 1;

  text-shadow:
    0 0 30px rgba(32, 169, 255, 0.28);
}


/* =========================================================
   CATEGORÍA, TÍTULO Y DESCRIPCIÓN
   ========================================================= */

body[data-page="soluciones"] .solution-line-category {
  margin: 0;

  color: #ff7900;

  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body[data-page="soluciones"] .solution-line-content h2 {
  margin: 0.55rem 0 0;

  color: #ffffff;

  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 850;
  line-height: 1.03;

  letter-spacing: -0.04em;

  text-shadow:
    0 10px 32px rgba(0, 0, 0, 0.3);
}

body[data-page="soluciones"] .solution-line-description {
  max-width: 1050px;
  margin-top: 18px;

  color: rgba(238, 245, 252, 0.88);

  font-size: 21px;
  font-weight: 450;
  line-height: 1.7;

  letter-spacing: -0.012em;
}


/* =========================================================
   TECNOLOGÍA ASOCIADA
   ========================================================= */

body[data-page="soluciones"] .solution-line-technology {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: 0.75rem 1rem;
  margin-top: 1.3rem;
}

body[data-page="soluciones"]
.solution-line-technology-label {
  display: inline-block;

  color: rgba(225, 237, 248, 0.8);

  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body[data-page="soluciones"]
.solution-line-technology-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;

  width: auto;
  min-width: 250px;
  max-width: 390px;
  min-height: 72px;

  gap: 0.9rem;
  padding: 0.7rem 1.1rem;

  color: #ffffff;
  text-decoration: none;

  border: 1.5px solid #ff7900;
  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #090303 0%,
      #160606 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.3);

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

body[data-page="soluciones"]
.solution-line-technology-brand:hover {
  transform: translateY(-3px);

  border-color: #ff9a2f;

  background:
    linear-gradient(
      135deg,
      #160505 0%,
      #250909 100%
    );

  box-shadow:
    0 16px 38px rgba(255, 105, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-page="soluciones"]
.solution-line-technology-logo {
  display: block;

  width: 50px;
  min-width: 50px;
  max-width: 50px;

  height: 50px;
  min-height: 50px;
  max-height: 50px;

  flex: 0 0 50px;

  object-fit: contain;
  object-position: center;

  margin: 0;
  padding: 0;
}

body[data-page="soluciones"]
.solution-line-technology-name {
  position: relative;

  display: inline-flex;
  align-items: baseline;

  color: #ffffff;

  font-family:
    "Arial Black",
    "Montserrat",
    "Arial",
    sans-serif;

  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.055em;
  white-space: nowrap;

  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.42);
}

body[data-page="soluciones"]
.solution-line-technology-name::after {
  content: "TM";

  position: relative;
  top: -0.7em;

  margin-left: 0.28rem;

  color: #ffffff;

  font-family: Arial, sans-serif;
  font-size: 0.42em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}


/* CensusAnalytics */

body[data-page="soluciones"]
.solution-line:nth-child(1)
.solution-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 42%,
      #19a8ff 42%,
      #19a8ff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* IROE-1 */

body[data-page="soluciones"]
.solution-line:nth-child(2)
.solution-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 62%,
      #ff7900 62%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* TsunamiGo */

body[data-page="soluciones"]
.solution-line:nth-child(3)
.solution-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #367de0 0%,
      #367de0 67%,
      #ff7900 67%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* MorphoFlow */

body[data-page="soluciones"]
.solution-line:nth-child(4)
.solution-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 48%,
      #ff7900 48%,
      #ff7900 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* ChirpView */

body[data-page="soluciones"]
.solution-line:nth-child(5)
.solution-line-technology-name {
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 52%,
      #18a8ff 52%,
      #18a8ff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* =========================================================
   BOTÓN EXPLORAR SOLUCIÓN
   ========================================================= */

body[data-page="soluciones"] .solution-line-action {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: flex-end;
}

body[data-page="soluciones"] .solution-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  gap: 0.65rem;
  padding: 0.85rem 1.2rem;

  color: #ffffff;

  font-size: 0.82rem;
  font-weight: 850;

  text-decoration: none;
  white-space: nowrap;

  border: 1px solid #ff7900;
  border-radius: 10px;

  background:
    linear-gradient(
      135deg,
      #ff8500,
      #ff6500
    );

  box-shadow:
    0 12px 28px rgba(255, 105, 0, 0.22);

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

body[data-page="soluciones"] .solution-line-link:hover {
  color: #ffffff;

  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #ff9b24,
      #ff7200
    );

  box-shadow:
    0 17px 36px rgba(255, 105, 0, 0.34);
}


/* =========================================================
   CTA FINAL
   ========================================================= */

body[data-page="soluciones"] .solutions-index-connection {
  padding: 6rem 0;
  background: #f3f7fa;
}

body[data-page="soluciones"]
.solutions-index-connection-container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 3rem;
  padding: 3rem;

  border: 1px solid #dbe6ee;
  border-radius: 28px;

  background: #ffffff;

  box-shadow:
    0 20px 58px rgba(10, 35, 62, 0.075),
    0 3px 10px rgba(10, 35, 62, 0.035);
}

body[data-page="soluciones"]
.solutions-index-connection-copy {
  max-width: 820px;
}

body[data-page="soluciones"]
.solutions-index-connection h2 {
  margin: 0.6rem 0 0;

  color: #071a2f;

  font-size: clamp(2.1rem, 3.7vw, 3.7rem);
  font-weight: 850;
  line-height: 1.05;

  letter-spacing: -0.045em;
}

body[data-page="soluciones"]
.solutions-index-connection p:not(.section-kicker) {
  max-width: 820px;
  margin: 1rem 0 0;

  color: #50657b;

  font-size: 21px;
  font-weight: 450;
  line-height: 1.75;

  letter-spacing: -0.01em;
}

body[data-page="soluciones"]
.solutions-index-connection-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;

  gap: 0.85rem;
  min-width: 210px;
}

body[data-page="soluciones"]
.solutions-index-connection-actions .button {
  width: 100%;
  justify-content: center;
}

body[data-page="soluciones"]
.solutions-index-connection-actions
.button-secondary {
  color: #087ed4;
  border-color: #bddcf2;
  background: #ffffff;
}

body[data-page="soluciones"]
.solutions-index-connection-actions
.button-secondary:hover {
  color: #ffffff;
  border-color: #087ed4;
  background: #087ed4;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

body[data-page="soluciones"]
.solutions-index-hero a:focus-visible,

body[data-page="soluciones"]
.solution-line-link:focus-visible,

body[data-page="soluciones"]
.solution-line-technology-brand:focus-visible,

body[data-page="soluciones"]
.solutions-index-connection a:focus-visible {
  outline: 3px solid rgba(28, 158, 240, 0.45);
  outline-offset: 4px;
}
/* =========================================================
   GEOPLOT CAMPUS — INDEX ACTUALIZADO 2026
   Ruta: /campus/
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */


/* =========================================================
   01. CONFIGURACIÓN GENERAL
   ========================================================= */

body[data-page="campus"] {
  background: #ffffff;
  color: #10213f;
}

body[data-page="campus"] .campus-page {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

body[data-page="campus"] .campus-page-container {
  width: min(100% - 48px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
}


/* =========================================================
   02. BOTONES GENERALES DE CAMPUS
   ========================================================= */

body[data-page="campus"] .campus-page-button {
  min-height: 48px;
  padding: 0.8rem 1.25rem;

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

  border: 2px solid transparent;
  border-radius: 12px;

  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;

  text-decoration: none;

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

body[data-page="campus"] .campus-page-button:hover {
  transform: translateY(-3px);
}

body[data-page="campus"] .campus-page-button-primary {
  color: #ffffff;
  border-color: #ff7900;
  background:
    linear-gradient(
      135deg,
      #ff8500,
      #ff6800
    );

  box-shadow:
    0 12px 27px rgba(255, 105, 0, 0.2);
}

body[data-page="campus"] .campus-page-button-primary:hover {
  border-color: #ff9a2d;
  background:
    linear-gradient(
      135deg,
      #ff9b25,
      #ff7200
    );

  box-shadow:
    0 17px 35px rgba(255, 105, 0, 0.3);
}

body[data-page="campus"] .campus-page-button-secondary {
  color: #10213f;
  border-color: #10213f;
  background: transparent;
}

body[data-page="campus"] .campus-page-button-secondary:hover {
  color: #ffffff;
  background: #10213f;
}

body[data-page="campus"] .campus-page-button-secondary-dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

body[data-page="campus"] .campus-page-button-secondary-dark:hover {
  color: #071a36;
  border-color: #ffffff;
  background: #ffffff;
}

body[data-page="campus"] .campus-page-button-light {
  color: #10213f;
  border-color: #ffffff;
  background: #ffffff;
}

body[data-page="campus"] .campus-page-button-light:hover {
  color: #ffffff;
  border-color: #ff7900;
  background: #ff7900;
}


/* =========================================================
   03. HERO CAMPUS — MÁS COMPACTO
   ========================================================= */

body[data-page="campus"] .campus-page-hero {
  position: relative;
  overflow: hidden;

  min-height: 530px;
  padding: 4rem 0;

  display: flex;
  align-items: center;

  border-bottom: 1px solid #d9e3ed;

  background:
    radial-gradient(
      circle at 88% 24%,
      rgba(48, 156, 255, 0.13),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7faff 58%,
      #edf5ff 100%
    );
}

body[data-page="campus"] .campus-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(15, 83, 151, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 83, 151, 0.04) 1px,
      transparent 1px
    );

  background-size: 58px 58px;
}

body[data-page="campus"] .campus-page-hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(440px, 0.9fr);

  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

body[data-page="campus"] .campus-page-hero-content {
  max-width: 660px;
}


/* =========================================================
   04. MARCA GEOPLOT CAMPUS
   ========================================================= */

body[data-page="campus"] .campus-page-brand {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-bottom: 2rem;
}

body[data-page="campus"] .campus-page-brand-logo {
  width: 70px;
  height: 70px;

  flex: 0 0 70px;

  object-fit: contain;
}

body[data-page="campus"] .campus-page-brand-copy {
  min-width: 0;
}

body[data-page="campus"] .campus-page-brand-name {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.045em;
}

body[data-page="campus"] .campus-page-brand-name span {
  color: #10213f;
}

body[data-page="campus"] .campus-page-brand-name strong {
  color: #ff7900;
}

body[data-page="campus"] .campus-page-brand-platform {
  margin: 0.5rem 0 0;

  color: #66758a;

  font-size: 0.88rem;
  font-weight: 700;
}


/* =========================================================
   05. TEXTOS DEL HERO
   ========================================================= */

body[data-page="campus"] .campus-page-eyebrow,
body[data-page="campus"] .campus-section-label {
  margin: 0 0 0.8rem;

  color: #ff7900;

  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.4;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="campus"] .campus-page-hero h1 {
  max-width: 680px;
  margin: 0;

  color: #10213f;

  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;

  letter-spacing: -0.055em;
}

body[data-page="campus"] .campus-page-hero-description {
  max-width: 670px;
  margin: 1.6rem 0 0;

  color: #5f7087;

  font-size: 1.12rem;
  line-height: 1.72;
}

body[data-page="campus"] .campus-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;

  margin-top: 1.8rem;
}


/* =========================================================
   06. IMAGEN DEL HERO
   ========================================================= */

body[data-page="campus"] .campus-page-hero-visual {
  width: 100%;

  border: 1px solid rgba(15, 49, 87, 0.12);
  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 25px 70px rgba(18, 55, 94, 0.16);
}

body[data-page="campus"] .campus-page-hero-visual img {
  width: 100%;
  height: 330px;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

body[data-page="campus"] .campus-page-hero-visual:hover img {
  transform: scale(1.025);
}


/* =========================================================
   07. INTRODUCCIÓN AL CATÁLOGO
   ========================================================= */

body[data-page="campus"] .campus-catalog-intro {
  padding: 5rem 0 4.5rem;

  background: #ffffff;
}

body[data-page="campus"] .campus-catalog-intro-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.72fr);

  gap: 5rem;
  align-items: start;
}

body[data-page="campus"] .campus-section-title {
  max-width: 760px;
  margin: 0;

  color: #10213f;

  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.04;

  letter-spacing: -0.05em;
}

body[data-page="campus"] .campus-catalog-intro-copy p {
  margin: 0;

  color: #5e7087;

  font-size: 1.08rem;
  line-height: 1.75;
}

body[data-page="campus"] .campus-catalog-intro-copy p + p {
  margin-top: 1rem;
}

body[data-page="campus"] .campus-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  margin-top: 1.5rem;

  color: #0868c9;

  font-size: 0.9rem;
  font-weight: 850;

  text-decoration: none;
}

body[data-page="campus"] .campus-text-link:hover {
  color: #ff7900;
}


/* =========================================================
   08. CONTENEDOR DE LOS CUATRO CURSOS
   ========================================================= */

body[data-page="campus"] .campus-course-lines {
  background: #020914;
}


/* =========================================================
   09. FRANJA DE CURSO
   ========================================================= */

body[data-page="campus"] .campus-course-line {
  position: relative;
  overflow: hidden;

  min-height: 330px;

  border-top: 1px solid rgba(37, 174, 255, 0.15);

  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(0, 141, 255, 0.15),
      transparent 25rem
    ),
    linear-gradient(
      120deg,
      #020812 0%,
      #041528 56%,
      #06233e 100%
    );
}

body[data-page="campus"] .campus-course-line-alternate {
  background:
    radial-gradient(
      circle at 15% 70%,
      rgba(0, 186, 255, 0.1),
      transparent 24rem
    ),
    linear-gradient(
      120deg,
      #061b31 0%,
      #030d19 58%,
      #020812 100%
    );
}

body[data-page="campus"] .campus-course-line::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.1;

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

  background-size: 52px 52px;
}

body[data-page="campus"] .campus-course-line-layout {
  position: relative;
  z-index: 2;

  min-height: 330px;

  display: grid;
  grid-template-columns:
    74px
    minmax(0, 1fr)
    250px
    175px;

  gap: 2rem;
  align-items: center;

  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}


/* =========================================================
   10. NÚMERO DEL CURSO
   ========================================================= */

body[data-page="campus"] .campus-course-line-number {
  align-self: start;

  color: #27adff;

  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;

  text-shadow:
    0 0 30px rgba(39, 173, 255, 0.25);
}


/* =========================================================
   11. CONTENIDO DEL CURSO
   ========================================================= */

body[data-page="campus"] .campus-course-line-content {
  min-width: 0;
}

body[data-page="campus"] .campus-course-line-category {
  margin: 0;

  color: #ff7900;

  font-size: 0.73rem;
  font-weight: 900;
  line-height: 1.4;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="campus"] .campus-course-line-content h2 {
  max-width: 710px;
  margin: 0.55rem 0 0;

  color: #ffffff;

  font-size: clamp(1.85rem, 2.8vw, 3rem);
  font-weight: 900;
  line-height: 1.05;

  letter-spacing: -0.045em;
}

body[data-page="campus"] .campus-course-line-description {
  max-width: 730px;
  margin: 1rem 0 0;

  color: rgba(231, 241, 251, 0.78);

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   12. ETIQUETAS
   ========================================================= */

body[data-page="campus"] .campus-course-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;

  margin-top: 1.25rem;
}

body[data-page="campus"] .campus-course-line-meta span {
  padding: 0.5rem 0.75rem;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.72rem;
  font-weight: 700;

  border: 1px solid rgba(46, 174, 255, 0.22);
  border-radius: 999px;

  background: rgba(46, 174, 255, 0.075);
}


/* =========================================================
   13. IMAGEN DE CADA CURSO
   ========================================================= */

body[data-page="campus"] .campus-course-line-image {
  display: block;

  width: 230px;
  height: 230px;

  justify-self: center;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;

  background: #071426;

  text-decoration: none;

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28);

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

body[data-page="campus"] .campus-course-line-image:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 121, 0, 0.7);

  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.35);
}

body[data-page="campus"] .campus-course-line-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  background: #061326;
}


/* =========================================================
   14. BOTÓN DE CADA CURSO
   ========================================================= */

body[data-page="campus"] .campus-course-line-action {
  display: flex;
  justify-content: flex-end;
}

body[data-page="campus"]
.campus-course-line-action
.campus-page-button {
  width: 100%;
  max-width: 175px;

  padding-inline: 1rem;

  white-space: nowrap;
}


/* =========================================================
   15. CTA CATÁLOGO COMPLETO
   ========================================================= */

body[data-page="campus"] .campus-course-catalog-cta {
  padding: 3.5rem 0;

  background: #ffffff;
}

body[data-page="campus"] .campus-course-catalog-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 3rem;

  padding: 2.5rem;

  border: 1px solid #d8e3ed;
  border-radius: 24px;

  background: #f6f9fd;
}

body[data-page="campus"] .campus-course-catalog-cta h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.08;

  letter-spacing: -0.045em;
}

body[data-page="campus"] .campus-course-catalog-cta p {
  max-width: 700px;
  margin: 1rem 0 0;

  color: #61738a;

  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   16. MOODLE — MÁS COMPACTO
   ========================================================= */

body[data-page="campus"] .campus-moodle {
  padding: 5rem 0;

  background: #eaf2fb;
}

body[data-page="campus"] .campus-moodle-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(340px, 0.9fr);

  gap: 4rem;
  align-items: center;
}

body[data-page="campus"] .campus-moodle-visual {
  min-width: 0;
}

body[data-page="campus"] .campus-moodle-screen {
  overflow: hidden;

  border: 1px solid #cad9e8;
  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 24px 60px rgba(30, 67, 104, 0.14);
}

body[data-page="campus"] .campus-moodle-screen-header {
  min-height: 78px;
  padding: 1rem 1.4rem;

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

  color: #ffffff;
  background: #102548;
}

body[data-page="campus"] .campus-moodle-screen-header img {
  width: 48px;
  height: 48px;

  object-fit: contain;
}

body[data-page="campus"] .campus-moodle-screen-header div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

body[data-page="campus"] .campus-moodle-screen-header strong {
  font-size: 1rem;
}

body[data-page="campus"] .campus-moodle-screen-header span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

body[data-page="campus"] .campus-moodle-screen-body {
  min-height: 300px;

  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
}

body[data-page="campus"] .campus-moodle-sidebar {
  padding: 1.5rem 1rem;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  color: #4b5d75;
  background: #edf2f8;
}

body[data-page="campus"] .campus-moodle-sidebar span {
  font-size: 0.82rem;
  font-weight: 700;
}

body[data-page="campus"] .campus-moodle-dashboard {
  padding: 1.8rem;
}

body[data-page="campus"] .campus-moodle-dashboard > p {
  margin: 0 0 1.5rem;

  color: #10213f;

  font-size: 1.35rem;
  font-weight: 900;
}

body[data-page="campus"] .campus-moodle-course-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;

  margin-top: 1rem;

  color: #34465e;

  font-size: 0.82rem;
}

body[data-page="campus"] .campus-moodle-course-row strong {
  color: #10213f;
}

body[data-page="campus"] .campus-moodle-progress {
  height: 8px;
  margin-top: 0.45rem;

  overflow: hidden;

  border-radius: 999px;

  background: #dce5ee;
}

body[data-page="campus"] .campus-moodle-progress span {
  display: block;

  height: 100%;

  border-radius: inherit;

  background: #ff7900;
}

body[data-page="campus"] .campus-moodle-content h2 {
  margin: 0;

  color: #10213f;

  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;

  letter-spacing: -0.05em;
}

body[data-page="campus"] .campus-moodle-content > p:not(.campus-section-label) {
  margin: 1.3rem 0 0;

  color: #5f7188;

  font-size: 1.05rem;
  line-height: 1.72;
}

body[data-page="campus"] .campus-check-list {
  display: grid;
  gap: 0.85rem;

  margin: 1.6rem 0;
  padding: 0;

  list-style: none;
}

body[data-page="campus"] .campus-check-list li {
  position: relative;

  padding-left: 1.7rem;

  color: #53657b;

  font-size: 0.92rem;
  line-height: 1.5;
}

body[data-page="campus"] .campus-check-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #ff7900;
  font-weight: 900;
}


/* =========================================================
   17. INVESTIGACIÓN APLICADA
   ========================================================= */

body[data-page="campus"] .campus-research {
  padding: 4.5rem 0;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(0, 139, 255, 0.16),
      transparent 25rem
    ),
    #102548;
}

body[data-page="campus"] .campus-research-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 4rem;
  align-items: center;
}

body[data-page="campus"] .campus-research .campus-section-title {
  color: #ffffff;

  font-size: clamp(2.4rem, 3.7vw, 3.7rem);
}

body[data-page="campus"] .campus-research-content > p:not(.campus-section-label) {
  max-width: 620px;
  margin: 1.2rem 0 1.7rem;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1rem;
  line-height: 1.7;
}

body[data-page="campus"] .campus-research-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.8rem;
}

body[data-page="campus"] .campus-research-project {
  min-height: 68px;
  padding: 0.75rem 0.9rem;

  display: flex;
  align-items: center;
  gap: 0.8rem;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);

  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

body[data-page="campus"] .campus-research-project:hover {
  transform: translateY(-3px);

  border-color: rgba(255, 121, 0, 0.7);
  background: rgba(255, 121, 0, 0.08);
}

body[data-page="campus"] .campus-research-project img {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  object-fit: contain;
}

body[data-page="campus"] .campus-research-project h3 {
  margin: 0;

  color: #ffffff;

  font-size: 0.88rem;
  font-weight: 850;
}

body[data-page="campus"] .campus-research-project p {
  margin: 0.3rem 0 0;

  color: rgba(255, 255, 255, 0.63);

  font-size: 0.7rem;
}


/* =========================================================
   18. FORMACIÓN PARA INSTITUCIONES
   ========================================================= */

body[data-page="campus"] .campus-institutions {
  padding: 4.5rem 0;

  background: #ffffff;
}

body[data-page="campus"] .campus-institutions-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 4rem;
  align-items: center;
}

body[data-page="campus"] .campus-institutions-layout > div:first-child > p:last-child {
  max-width: 650px;
  margin: 1.2rem 0 0;

  color: #607188;

  font-size: 1rem;
  line-height: 1.7;
}

body[data-page="campus"] .campus-institutions-content {
  padding: 2rem;

  border: 1px solid #d7e2ec;
  border-radius: 20px;

  background: #f5f8fc;
}

body[data-page="campus"] .campus-check-list-dark li {
  color: #52647b;
}


/* =========================================================
   19. CTA FINAL
   ========================================================= */

body[data-page="campus"] .campus-final-cta {
  padding: 4.5rem 0;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(0, 137, 255, 0.22),
      transparent 30rem
    ),
    #071a36;
}

body[data-page="campus"] .campus-final-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 4rem;
}

body[data-page="campus"] .campus-final-cta-layout > div:first-child {
  max-width: 800px;
}

body[data-page="campus"] .campus-final-label {
  margin: 0 0 0.8rem;

  color: #ff9a42;

  font-size: 0.75rem;
  font-weight: 900;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="campus"] .campus-final-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.04;

  letter-spacing: -0.05em;
}

body[data-page="campus"] .campus-final-cta p {
  max-width: 700px;
  margin: 1.2rem 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.7;
}

body[data-page="campus"] .campus-final-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;

  gap: 0.8rem;
  min-width: 210px;
}


/* =========================================================
   20. ACCESIBILIDAD
   ========================================================= */

body[data-page="campus"] a:focus-visible {
  outline: 3px solid rgba(42, 166, 255, 0.5);
  outline-offset: 4px;
}
/* =========================================================
   CAMPUS — HERO PARA ESCRITORIO MEDIO
   ========================================================= */

@media (min-width: 901px) and (max-width: 1300px) {

  body[data-page="campus"] .campus-page-hero-layout {
    grid-template-columns:
      minmax(0, 620px)
      minmax(340px, 440px) !important;

    gap: 36px !important;
  }

  body[data-page="campus"] .campus-page-hero h1 {
    max-width: 620px !important;

    font-size: 44px !important;
    line-height: 1 !important;
  }

  body[data-page="campus"] .campus-page-hero-description {
    max-width: 590px !important;

    font-size: 14px !important;
  }

  body[data-page="campus"] .campus-page-hero-visual {
    max-width: 440px !important;
  }

  body[data-page="campus"] .campus-page-hero-visual img {
    height: 230px !important;
  }

}
/* =========================================================
   CAMPUS — HERO EXTRA COMPACTO
   BOTONES VISIBLES AL 100 % DE ZOOM
   ========================================================= */

body[data-page="campus"] .campus-page-hero {
  min-height: 360px !important;
  height: auto !important;

  padding-top: 22px !important;
  padding-bottom: 22px !important;

  align-items: center !important;
}


/* Contenedor principal */

body[data-page="campus"] .campus-page-hero-layout {
  grid-template-columns:
    minmax(0, 670px)
    minmax(340px, 470px) !important;

  gap: 34px !important;
  align-items: center !important;
}


/* Columna izquierda */

body[data-page="campus"] .campus-page-hero-content {
  width: 100% !important;
  max-width: 670px !important;
}


/* Marca superior más pequeña */

body[data-page="campus"] .campus-page-brand {
  margin-bottom: 10px !important;
  gap: 10px !important;
}

body[data-page="campus"] .campus-page-brand-logo {
  width: 48px !important;
  height: 48px !important;
  flex-basis: 48px !important;
}

body[data-page="campus"] .campus-page-brand-name {
  font-size: 31px !important;
  line-height: 1 !important;
}

body[data-page="campus"] .campus-page-brand-platform {
  margin-top: 3px !important;
  font-size: 11px !important;
}


/* Etiqueta naranja */

body[data-page="campus"] .campus-page-eyebrow {
  margin-bottom: 8px !important;

  font-size: 9px !important;
  line-height: 1.25 !important;
}


/* Título principal */

body[data-page="campus"] .campus-page-hero h1 {
  width: 100% !important;
  max-width: 670px !important;

  margin: 0 !important;

  font-size: 42px !important;
  line-height: 0.98 !important;
  letter-spacing: -1.7px !important;
}


/* Las tres líneas del título */

body[data-page="campus"] .campus-page-hero h1 span {
  display: block !important;
  white-space: nowrap !important;
}


/* Descripción */

body[data-page="campus"] .campus-page-hero-description {
  max-width: 640px !important;

  margin-top: 11px !important;

  font-size: 13px !important;
  line-height: 1.5 !important;
}


/* Botones */

body[data-page="campus"] .campus-page-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;

  gap: 9px !important;

  margin-top: 12px !important;
}

body[data-page="campus"]
.campus-page-hero-actions
.campus-page-button {
  min-height: 38px !important;

  padding: 8px 13px !important;

  font-size: 11px !important;
  border-radius: 9px !important;
}


/* Imagen derecha más pequeña */

body[data-page="campus"] .campus-page-hero-visual {
  width: 100% !important;
  max-width: 470px !important;

  justify-self: end !important;

  border-radius: 18px !important;
}

body[data-page="campus"] .campus-page-hero-visual img {
  width: 100% !important;
  height: 210px !important;

  object-fit: cover !important;
  object-position: center !important;
}
/* =========================================================
   CAMPUS — RUTA DE APRENDIZAJE OSCURA
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */

body[data-page="campus"] .campus-catalog-intro {
  position: relative;
  overflow: hidden;

  padding-top: 56px !important;
  padding-bottom: 56px !important;

  color: #ffffff !important;

  background:
    radial-gradient(
      circle at 82% 35%,
      rgba(0, 135, 255, 0.16),
      transparent 26rem
    ),
    linear-gradient(
      120deg,
      #02070d 0%,
      #061426 58%,
      #081f38 100%
    ) !important;

  border-top: 1px solid rgba(45, 174, 255, 0.16);
  border-bottom: 1px solid rgba(45, 174, 255, 0.16);
}

body[data-page="campus"] .campus-catalog-intro::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.09;

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

  background-size: 52px 52px;
}

body[data-page="campus"] .campus-catalog-intro-layout {
  position: relative;
  z-index: 2;

  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(380px, 0.92fr) !important;

  gap: clamp(3rem, 6vw, 5.5rem) !important;
  align-items: center !important;
}


/* Etiqueta superior */

body[data-page="campus"]
.campus-catalog-intro
.campus-section-label {
  color: #ff7900 !important;

  font-size: 12px !important;
  font-weight: 900 !important;

  letter-spacing: 0.17em !important;
}


/* Título izquierdo más pequeño */

body[data-page="campus"]
.campus-catalog-intro
.campus-section-title {
  max-width: 760px !important;

  color: #ffffff !important;

  font-size: clamp(2.6rem, 3.7vw, 4rem) !important;
  line-height: 1.03 !important;

  letter-spacing: -0.05em !important;
}


/* Textos derechos más grandes */

body[data-page="campus"]
.campus-catalog-intro-copy p {
  max-width: 680px !important;

  color: rgba(232, 241, 250, 0.84) !important;

  font-size: 21px !important;
  font-weight: 450 !important;
  line-height: 1.72 !important;

  letter-spacing: -0.01em !important;
}

body[data-page="campus"]
.campus-catalog-intro-copy p + p {
  margin-top: 18px !important;
}


/* Botón azul */

body[data-page="campus"]
.campus-catalog-intro
.campus-text-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 48px !important;

  gap: 0.8rem !important;

  margin-top: 24px !important;
  padding: 0.85rem 1.25rem !important;

  color: #ffffff !important;

  font-size: 15px !important;
  font-weight: 850 !important;

  text-decoration: none !important;

  border: 1px solid #168ee8 !important;
  border-radius: 11px !important;

  background:
    linear-gradient(
      135deg,
      #168ee8 0%,
      #0b64bd 100%
    ) !important;

  box-shadow:
    0 12px 30px rgba(13, 112, 201, 0.28) !important;

  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease !important;
}

body[data-page="campus"]
.campus-catalog-intro
.campus-text-link:hover {
  color: #ffffff !important;

  transform: translateY(-3px) !important;

  background:
    linear-gradient(
      135deg,
      #2ba9ff 0%,
      #0d73d5 100%
    ) !important;

  box-shadow:
    0 17px 36px rgba(13, 112, 201, 0.38) !important;
}
/* =========================================================
   CAMPUS — HERO A PANTALLA COMPLETA SIN MOSTRAR LA SECCIÓN SIGUIENTE
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */

body[data-page="campus"] .campus-page-hero {
  min-height: calc(100vh - var(--header-height)) !important;
  height: calc(100vh - var(--header-height)) !important;

  padding-top: 20px !important;
  padding-bottom: 20px !important;

  display: flex !important;
  align-items: center !important;

  overflow: hidden !important;
}


/* El contenido debe caber dentro de la altura disponible */

body[data-page="campus"] .campus-page-hero-layout {
  height: 100% !important;

  grid-template-columns:
    minmax(0, 720px)
    minmax(360px, 500px) !important;

  gap: 36px !important;
  align-items: center !important;
}


/* Columna izquierda más compacta */

body[data-page="campus"] .campus-page-hero-content {
  max-width: 720px !important;
}


/* Marca Campus */

body[data-page="campus"] .campus-page-brand {
  margin-bottom: 8px !important;
}

body[data-page="campus"] .campus-page-brand-logo {
  width: 46px !important;
  height: 46px !important;
  flex-basis: 46px !important;
}

body[data-page="campus"] .campus-page-brand-name {
  font-size: 29px !important;
}

body[data-page="campus"] .campus-page-brand-platform {
  margin-top: 2px !important;
  font-size: 10px !important;
}


/* Etiqueta naranja */

body[data-page="campus"] .campus-page-eyebrow {
  margin-bottom: 7px !important;
  font-size: 9px !important;
}


/* Título */

body[data-page="campus"] .campus-page-hero h1 {
  max-width: 720px !important;

  font-size: 39px !important;
  line-height: 0.98 !important;
  letter-spacing: -1.5px !important;
}


/* Descripción */

body[data-page="campus"] .campus-page-hero-description {
  max-width: 680px !important;

  margin-top: 10px !important;

  font-size: 13px !important;
  line-height: 1.45 !important;
}


/* Botones */

body[data-page="campus"] .campus-page-hero-actions {
  margin-top: 11px !important;
  gap: 9px !important;
}

body[data-page="campus"]
.campus-page-hero-actions
.campus-page-button {
  min-height: 38px !important;

  padding: 8px 14px !important;

  font-size: 11px !important;
}


/* Imagen */

body[data-page="campus"] .campus-page-hero-visual {
  max-width: 500px !important;
}

body[data-page="campus"] .campus-page-hero-visual img {
  height: 205px !important;
}
/* =========================================================
   CAMPUS — HERO COMPACTO PERO MÁS GRANDE
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */

body[data-page="campus"] .campus-page-hero {
  min-height: calc(100vh - var(--header-height)) !important;
  height: calc(100vh - var(--header-height)) !important;

  padding-top: 18px !important;
  padding-bottom: 18px !important;

  display: flex !important;
  align-items: center !important;

  overflow: hidden !important;
}


/* Contenedor */

body[data-page="campus"] .campus-page-hero-layout {
  height: 100% !important;

  grid-template-columns:
    minmax(0, 760px)
    minmax(420px, 560px) !important;

  gap: 50px !important;
  align-items: center !important;
}


/* Columna izquierda */

body[data-page="campus"] .campus-page-hero-content {
  width: 100% !important;
  max-width: 760px !important;
}


/* Marca GEOPLOT Campus */

body[data-page="campus"] .campus-page-brand {
  margin-bottom: 12px !important;
  gap: 12px !important;
}

body[data-page="campus"] .campus-page-brand-logo {
  width: 58px !important;
  height: 58px !important;
  flex-basis: 58px !important;
}

body[data-page="campus"] .campus-page-brand-name {
  font-size: 36px !important;
  line-height: 1 !important;
}

body[data-page="campus"] .campus-page-brand-platform {
  margin-top: 4px !important;

  font-size: 12px !important;
  line-height: 1.2 !important;
}


/* Etiqueta naranja */

body[data-page="campus"] .campus-page-eyebrow {
  margin-bottom: 10px !important;

  font-size: 10px !important;
  line-height: 1.3 !important;

  letter-spacing: 0.17em !important;
}


/* Título principal */

body[data-page="campus"] .campus-page-hero h1 {
  width: 100% !important;
  max-width: 760px !important;

  margin: 0 !important;

  font-size: 47px !important;
  line-height: 0.99 !important;
  letter-spacing: -1.8px !important;
}

body[data-page="campus"] .campus-page-hero h1 span {
  display: block !important;
  white-space: nowrap !important;
}


/* Descripción */

body[data-page="campus"] .campus-page-hero-description {
  max-width: 720px !important;

  margin-top: 14px !important;

  color: #536980 !important;

  font-size: 15px !important;
  line-height: 1.55 !important;
}


/* Botones */

body[data-page="campus"] .campus-page-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;

  gap: 12px !important;

  margin-top: 15px !important;
}

body[data-page="campus"]
.campus-page-hero-actions
.campus-page-button {
  min-height: 44px !important;

  padding: 10px 18px !important;

  font-size: 13px !important;
  font-weight: 850 !important;

  border-radius: 10px !important;
}


/* Imagen derecha */

body[data-page="campus"] .campus-page-hero-visual {
  width: 100% !important;
  max-width: 560px !important;

  justify-self: end !important;

  border-radius: 20px !important;

  box-shadow:
    0 24px 65px rgba(18, 55, 94, 0.18) !important;
}

body[data-page="campus"] .campus-page-hero-visual img {
  width: 100% !important;
  height: 270px !important;

  object-fit: cover !important;
  object-position: center !important;
}
/* =========================================================
   CATÁLOGO DE CURSOS — HERO CORREGIDO
   Ruta: /campus/cursos/
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */


/* =========================================================
   DISTRIBUCIÓN GENERAL
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero {
  min-height: calc(100vh - var(--header-height)) !important;
  height: auto !important;

  padding: 42px 0 !important;

  display: flex !important;
  align-items: center !important;

  overflow: hidden !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-container {
  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;

  display: grid !important;

  grid-template-columns:
    minmax(0, 680px)
    minmax(370px, 430px) !important;

  justify-content: space-between !important;
  align-items: center !important;

  gap: 60px !important;

  margin-inline: auto !important;
}


/* =========================================================
   LOGO GEOPLOT CAMPUS
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-campus-brand {
  display: inline-flex !important;
  align-items: center !important;

  gap: 12px !important;

  margin-bottom: 20px !important;

  color: #ffffff !important;
  text-decoration: none !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand img {
  display: block !important;

  width: 62px !important;
  height: 62px !important;

  flex: 0 0 62px !important;

  object-fit: contain !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy {
  display: flex !important;
  flex-direction: column !important;

  gap: 5px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy strong {
  color: #ffffff !important;

  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  letter-spacing: -0.04em !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy strong span {
  color: #ff7900 !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy small {
  color: rgba(255, 255, 255, 0.68) !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;

  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   TÍTULO PRINCIPAL — MÁXIMO TRES LÍNEAS
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-title {
  width: 100% !important;
  max-width: 680px !important;

  margin: 0 !important;

  color: #ffffff !important;

  font-size: 55px !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;

  letter-spacing: -0.055em !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-title span {
  display: block !important;
  white-space: nowrap !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-title span:nth-child(2),
body[data-page="campus-cursos"]
.courses-catalog-hero-title span:nth-child(3) {
  color: #28aaff !important;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-description {
  max-width: 670px !important;

  margin: 20px 0 0 !important;

  color: rgba(238, 245, 252, 0.84) !important;

  font-size: 17px !important;
  font-weight: 450 !important;
  line-height: 1.65 !important;
}


/* =========================================================
   BOTONES UN POCO MÁS GRANDES
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;

  gap: 14px !important;

  margin-top: 24px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button {
  min-height: 52px !important;

  padding: 0 22px !important;

  font-size: 14px !important;
  font-weight: 850 !important;

  border-radius: 11px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button-secondary {
  color: #ffffff !important;

  border-color: rgba(255, 255, 255, 0.38) !important;

  background: rgba(255, 255, 255, 0.055) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button-secondary:hover {
  color: #071a34 !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
}


/* =========================================================
   PANEL DERECHO
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-panel {
  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;
  max-width: 430px !important;

  gap: 8px !important;

  padding: 12px !important;

  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 22px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ) !important;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(14px) !important;
}


/* =========================================================
   NÚMERO 04 MÁS PEQUEÑO
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-number {
  min-height: 86px !important;

  display: flex !important;
  align-items: center !important;

  gap: 16px !important;

  padding: 13px 18px !important;

  border-radius: 16px !important;

  background:
    linear-gradient(
      135deg,
      rgba(5, 75, 131, 0.95),
      rgba(2, 41, 76, 0.98)
    ) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-number strong {
  color: #ffffff !important;

  font-size: 52px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-number > span {
  max-width: 145px !important;

  color: rgba(255, 255, 255, 0.85) !important;

  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;

  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   CATÁLOGO DE CURSOS — HERO CORREGIDO
   Ruta: /campus/cursos/
   PEGAR AL FINAL ABSOLUTO DE STYLE.CSS
   ========================================================= */


/* =========================================================
   DISTRIBUCIÓN GENERAL
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero {
  min-height: calc(100vh - var(--header-height)) !important;
  height: auto !important;

  padding: 42px 0 !important;

  display: flex !important;
  align-items: center !important;

  overflow: hidden !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-container {
  width: min(100% - 48px, 1280px) !important;
  max-width: 1280px !important;

  display: grid !important;

  grid-template-columns:
    minmax(0, 680px)
    minmax(370px, 430px) !important;

  justify-content: space-between !important;
  align-items: center !important;

  gap: 60px !important;

  margin-inline: auto !important;
}


/* =========================================================
   LOGO GEOPLOT CAMPUS
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-campus-brand {
  display: inline-flex !important;
  align-items: center !important;

  gap: 12px !important;

  margin-bottom: 20px !important;

  color: #ffffff !important;
  text-decoration: none !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand img {
  display: block !important;

  width: 62px !important;
  height: 62px !important;

  flex: 0 0 62px !important;

  object-fit: contain !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy {
  display: flex !important;
  flex-direction: column !important;

  gap: 5px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy strong {
  color: #ffffff !important;

  font-size: 28px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  letter-spacing: -0.04em !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy strong span {
  color: #ff7900 !important;
}

body[data-page="campus-cursos"]
.courses-catalog-campus-brand-copy small {
  color: rgba(255, 255, 255, 0.68) !important;

  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;

  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   TÍTULO PRINCIPAL — MÁXIMO TRES LÍNEAS
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-title {
  width: 100% !important;
  max-width: 680px !important;

  margin: 0 !important;

  color: #ffffff !important;

  font-size: 55px !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;

  letter-spacing: -0.055em !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-title span {
  display: block !important;
  white-space: nowrap !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-title span:nth-child(2),
body[data-page="campus-cursos"]
.courses-catalog-hero-title span:nth-child(3) {
  color: #28aaff !important;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-description {
  max-width: 670px !important;

  margin: 20px 0 0 !important;

  color: rgba(238, 245, 252, 0.84) !important;

  font-size: 17px !important;
  font-weight: 450 !important;
  line-height: 1.65 !important;
}


/* =========================================================
   BOTONES UN POCO MÁS GRANDES
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;

  gap: 14px !important;

  margin-top: 24px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button {
  min-height: 52px !important;

  padding: 0 22px !important;

  font-size: 14px !important;
  font-weight: 850 !important;

  border-radius: 11px !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button-secondary {
  color: #ffffff !important;

  border-color: rgba(255, 255, 255, 0.38) !important;

  background: rgba(255, 255, 255, 0.055) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-actions
.button-secondary:hover {
  color: #071a34 !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
}


/* =========================================================
   PANEL DERECHO
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-panel {
  display: flex !important;
  flex-direction: column !important;

  width: 100% !important;
  max-width: 430px !important;

  gap: 8px !important;

  padding: 12px !important;

  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 22px !important;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ) !important;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(14px) !important;
}


/* =========================================================
   NÚMERO 04 MÁS PEQUEÑO
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-number {
  min-height: 86px !important;

  display: flex !important;
  align-items: center !important;

  gap: 16px !important;

  padding: 13px 18px !important;

  border-radius: 16px !important;

  background:
    linear-gradient(
      135deg,
      rgba(5, 75, 131, 0.95),
      rgba(2, 41, 76, 0.98)
    ) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-number strong {
  color: #ffffff !important;

  font-size: 52px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-number > span {
  max-width: 145px !important;

  color: rgba(255, 255, 255, 0.85) !important;

  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1.25 !important;

  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}


/* =========================================================
   NOMBRES DE LOS CUATRO CURSOS
   ========================================================= */

body[data-page="campus-cursos"]
.courses-catalog-hero-course {
  min-height: 54px !important;

  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;

  align-items: center !important;

  gap: 11px !important;

  padding: 7px 12px !important;

  color: #ffffff !important;
  text-decoration: none !important;

  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 13px !important;

  background: rgba(255, 255, 255, 0.055) !important;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-course:hover {
  transform: translateX(4px) !important;

  border-color: rgba(42, 174, 255, 0.52) !important;

  background: rgba(42, 174, 255, 0.11) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-course > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 29px !important;
  height: 29px !important;

  color: #2db2ff !important;

  font-size: 10px !important;
  font-weight: 900 !important;

  border: 1px solid rgba(45, 178, 255, 0.34) !important;
  border-radius: 50% !important;

  background: rgba(45, 178, 255, 0.09) !important;
}

body[data-page="campus-cursos"]
.courses-catalog-hero-course p {
  margin: 0 !important;

  color: rgba(255, 255, 255, 0.86) !important;

  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}
/* =========================================================
   GEOPLOT CAMPUS + MOODLE
   Sección institucional de plataforma educativa
   Ruta: /campus/cursos/
   ========================================================= */


/* =========================================================
   SECCIÓN GENERAL
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-section {
  position: relative;
  overflow: hidden;

  padding: 5.5rem 0;

  color: #ffffff;

  border-top: 1px solid rgba(33, 171, 255, 0.18);
  border-bottom: 1px solid rgba(33, 171, 255, 0.18);

  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 18, 0.97) 0%,
      rgba(3, 12, 25, 0.93) 42%,
      rgba(4, 20, 39, 0.84) 100%
    ),
    url("/assets/images/campus/imagnegeoplotcampusestilolab_resultado.webp")
    center / cover no-repeat;
}


/* Capa tecnológica */

body[data-page="campus-cursos"] .campus-platform-section::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

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

  background-size: 54px 54px;
}


/* Resplandor azul */

body[data-page="campus-cursos"] .campus-platform-section::after {
  content: "";
  position: absolute;

  right: -12rem;
  top: 4rem;

  width: 38rem;
  height: 38rem;

  pointer-events: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(27, 166, 255, 0.2) 0%,
      rgba(27, 166, 255, 0.08) 38%,
      transparent 70%
    );
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-container {
  position: relative;
  z-index: 2;

  width: min(100% - 48px, 1280px);
  max-width: 1280px;

  margin-inline: auto;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-header {
  max-width: 850px;

  margin-bottom: 2.5rem;
}

body[data-page="campus-cursos"] .campus-platform-eyebrow {
  margin: 0 0 0.7rem;

  color: #ff7900;

  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.4;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body[data-page="campus-cursos"] .campus-platform-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;

  letter-spacing: -0.055em;
}

body[data-page="campus-cursos"] .campus-platform-header > p:last-child {
  max-width: 760px;

  margin: 1rem 0 0;

  color: rgba(235, 244, 252, 0.78);

  font-size: 1.15rem;
  line-height: 1.7;
}


/* =========================================================
   DOS TARJETAS PRINCIPALES
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-main-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);

  gap: 1.5rem;

  align-items: stretch;
}


/* Base común */

body[data-page="campus-cursos"] .campus-platform-card {
  position: relative;
  overflow: hidden;

  min-height: 470px;

  padding: 2rem;

  border-radius: 24px;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32);
}


/* =========================================================
   TARJETA GEOPLOT CAMPUS
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-card-geoplot {
  color: #ffffff;

  border: 1px solid rgba(46, 176, 255, 0.22);

  background:
    linear-gradient(
      145deg,
      rgba(6, 31, 59, 0.98),
      rgba(3, 15, 31, 0.97)
    );
}

body[data-page="campus-cursos"] .campus-platform-card-glow {
  position: absolute;

  right: -6rem;
  bottom: -8rem;

  width: 22rem;
  height: 22rem;

  pointer-events: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(24, 167, 255, 0.23),
      transparent 68%
    );
}


/* Logo y marca */

body[data-page="campus-cursos"] .campus-platform-geoplot-brand {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 1rem;

  margin-bottom: 2rem;
}

body[data-page="campus-cursos"] .campus-platform-geoplot-brand img {
  width: 72px;
  height: 72px;

  flex: 0 0 72px;

  object-fit: contain;
}

body[data-page="campus-cursos"] .campus-platform-geoplot-brand > div {
  display: flex;
  flex-direction: column;

  gap: 0.4rem;
}

body[data-page="campus-cursos"] .campus-platform-geoplot-brand strong {
  color: #ffffff;

  font-size: 2rem;
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.04em;
}

body[data-page="campus-cursos"] .campus-platform-geoplot-brand strong span {
  color: #ff7900;
}

body[data-page="campus-cursos"] .campus-platform-geoplot-brand small {
  color: rgba(255, 255, 255, 0.66);

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =========================================================
   CONTENIDO INTERNO DE TARJETAS
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-card-content {
  position: relative;
  z-index: 2;
}

body[data-page="campus-cursos"] .campus-platform-card-label {
  margin: 0 0 0.55rem;

  color: #2eb2ff;

  font-size: 0.72rem;
  font-weight: 900;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body[data-page="campus-cursos"] .campus-platform-card h3 {
  margin: 0;

  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.05;

  letter-spacing: -0.045em;
}

body[data-page="campus-cursos"] .campus-platform-card-description {
  max-width: 630px;

  margin: 1rem 0 0;

  font-size: 1rem;
  line-height: 1.7;
}


/* Texto de la tarjeta oscura */

body[data-page="campus-cursos"]
.campus-platform-card-geoplot
.campus-platform-card-description {
  color: rgba(238, 245, 252, 0.78);
}


/* =========================================================
   LISTA DE BENEFICIOS
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-feature-list {
  display: grid;

  gap: 0.75rem;

  margin: 1.5rem 0 1.8rem;
  padding: 0;

  list-style: none;
}

body[data-page="campus-cursos"] .campus-platform-feature-list li {
  position: relative;

  padding-left: 1.55rem;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.92rem;
  line-height: 1.45;
}

body[data-page="campus-cursos"] .campus-platform-feature-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: #ff7900;

  font-weight: 900;
}


/* =========================================================
   TARJETA MOODLE
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-card-moodle {
  color: #122239;

  border: 1px solid rgba(255, 255, 255, 0.78);

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f7f9fc 100%
    );
}


/* Caja del logo Moodle */

body[data-page="campus-cursos"] .campus-platform-moodle-logo-box {
  min-height: 100px;

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

  margin-bottom: 1.8rem;
  padding: 1rem 1.5rem;

  border: 1px solid #e3e8ee;
  border-radius: 16px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(14, 35, 62, 0.08);
}

body[data-page="campus-cursos"] .campus-platform-moodle-logo-box img {
  width: min(100%, 320px);
  max-height: 82px;

  object-fit: contain;
}


/* Texto Moodle */

body[data-page="campus-cursos"]
.campus-platform-card-moodle
.campus-platform-card-label {
  color: #e76c00;
}

body[data-page="campus-cursos"]
.campus-platform-card-moodle
h3 {
  color: #14243b;
}

body[data-page="campus-cursos"]
.campus-platform-card-moodle
.campus-platform-card-description {
  color: #5a6d82;
}


/* =========================================================
   ACCESO MOODLE
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-moodle-access {
  display: flex;
  align-items: center;

  gap: 0.9rem;

  margin: 1.5rem 0;
  padding: 1rem;

  border: 1px solid #dfe7ef;
  border-radius: 14px;

  background: #f4f7fa;
}

body[data-page="campus-cursos"] .campus-platform-moodle-access img {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  object-fit: contain;
}

body[data-page="campus-cursos"] .campus-platform-moodle-access > div {
  display: flex;
  flex-direction: column;

  gap: 0.3rem;
}

body[data-page="campus-cursos"] .campus-platform-moodle-access strong {
  color: #14243b;

  font-size: 0.95rem;
  font-weight: 850;
}

body[data-page="campus-cursos"] .campus-platform-moodle-access span {
  color: #63758a;

  font-size: 0.78rem;
  line-height: 1.4;
}


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

body[data-page="campus-cursos"] .campus-platform-button {
  min-height: 50px;

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

  gap: 0.8rem;

  padding: 0.8rem 1.25rem;

  border: 1px solid transparent;
  border-radius: 11px;

  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;

  text-decoration: none;

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

body[data-page="campus-cursos"] .campus-platform-button:hover {
  transform: translateY(-3px);
}


/* Naranja GEOPLOT */

body[data-page="campus-cursos"] .campus-platform-button-orange {
  color: #ffffff;

  border-color: #ff7900;

  background:
    linear-gradient(
      135deg,
      #ff8500,
      #ff6500
    );

  box-shadow:
    0 14px 32px rgba(255, 105, 0, 0.24);
}

body[data-page="campus-cursos"] .campus-platform-button-orange:hover {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #ff9a25,
      #ff7200
    );

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


/* Azul Moodle/Campus */

body[data-page="campus-cursos"] .campus-platform-button-blue {
  color: #ffffff;

  border-color: #138ddd;

  background:
    linear-gradient(
      135deg,
      #1aa3f5,
      #0867bd
    );

  box-shadow:
    0 14px 32px rgba(9, 108, 195, 0.24);
}

body[data-page="campus-cursos"] .campus-platform-button-blue:hover {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #36b5ff,
      #0b79d8
    );

  box-shadow:
    0 18px 40px rgba(9, 108, 195, 0.34);
}

body[data-page="campus-cursos"] .campus-platform-button-blue img {
  width: 30px;
  height: 30px;

  object-fit: contain;
}


/* =========================================================
   TRES BENEFICIOS INFERIORES
   ========================================================= */

body[data-page="campus-cursos"] .campus-platform-benefits {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 1rem;

  margin-top: 1.5rem;
}

body[data-page="campus-cursos"] .campus-platform-benefit {
  min-height: 120px;

  display: flex;
  align-items: center;

  gap: 1rem;

  padding: 1.2rem;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.035)
    );

  backdrop-filter: blur(10px);
}

body[data-page="campus-cursos"] .campus-platform-benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  color: #2db2ff;

  font-size: 0.78rem;
  font-weight: 900;

  border: 1px solid rgba(45, 178, 255, 0.36);
  border-radius: 50%;

  background: rgba(45, 178, 255, 0.09);
}

body[data-page="campus-cursos"] .campus-platform-benefit h3 {
  margin: 0;

  color: #ffffff;

  font-size: 1rem;
  font-weight: 850;
}

body[data-page="campus-cursos"] .campus-platform-benefit p {
  margin: 0.35rem 0 0;

  color: rgba(255, 255, 255, 0.67);

  font-size: 0.78rem;
  line-height: 1.45;
}


/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

body[data-page="campus-cursos"]
.campus-platform-section a:focus-visible {
  outline: 3px solid rgba(43, 174, 255, 0.5);
  outline-offset: 4px;
}
/* =========================================================
   CONTACTO — AJUSTE VERTICAL COMPACTO PARA ESCRITORIO
   Permite visualizar tarjetas y botones al 100 % de zoom
   ========================================================= */

@media (min-width: 1100px) and (min-height: 700px) {

  /* Sección principal */

  .contact-main-section {
    min-height:
      calc(100vh - var(--header-height));

    padding:
      22px
      0
      24px;
  }


  /* Contenedor general */

  .contact-container {
    width:
      min(
        1320px,
        calc(100% - 42px)
      );
  }


  /* Distribución de las dos tarjetas */

  .contact-main-layout {
    grid-template-columns:
      minmax(300px, 0.68fr)
      minmax(0, 1.32fr);

    gap: 28px;

    align-items: stretch;
  }


  /* Tarjetas */

  .contact-information-card,
  .contact-form-card {
    padding:
      24px
      30px;
  }


  /* Etiquetas azules */

  .contact-eyebrow,
  .contact-section-label {
    margin-bottom: 8px;
  }


  /* Títulos */

  .contact-information-card h1,
  .contact-information-card h2,
  .contact-form-card h2 {
    margin-bottom: 10px;

    line-height: 1.1;
  }


  /* Textos introductorios */

  .contact-information-card > p,
  .contact-form-card > p {
    margin-bottom: 0;

    line-height: 1.45;
  }


  /* Lista de información */

  .contact-information-list {
    margin-top: 18px;
  }


  .contact-information-item {
    padding: 13px 0;
  }


  .contact-information-label {
    margin-bottom: 4px;
  }


  /* Botones de contacto directo */

  .contact-direct-actions {
    gap: 8px;

    margin-top: 15px;
  }


  .contact-whatsapp-button,
  .contact-email-button {
    min-height: 44px;

    padding:
      0
      14px;

    font-size: 0.9rem;
  }


  /* Formulario */

  .contact-form {
    gap:
      11px
      18px;

    margin-top: 16px;
  }


  /* Etiquetas de campos */

  .contact-form-field label {
    margin-bottom: 4px;

    font-size: 0.88rem;
  }


  /* Inputs y selector */

  .contact-form input,
  .contact-form select {
    min-height: 44px;
    height: 44px;

    padding:
      0
      14px;
  }


  /* Área de mensaje */

  .contact-form textarea {
    min-height: 88px;
    height: 88px;

    padding:
      12px
      14px;

    line-height: 1.4;

    resize: vertical;
  }


  /* Consentimiento */

  .contact-consent {
    margin-top: 0;

    gap: 8px;

    align-items: center;
  }


  .contact-consent input {
    width: 17px;
    height: 17px;

    min-height: 17px;
  }


  .contact-consent label,
  .contact-consent span,
  .contact-consent p {
    font-size: 0.8rem;
    line-height: 1.3;
  }


  /* Zona inferior */

  .contact-form-actions {
    margin-top: 0;

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

    width: 100%;
  }


  /* Botón principal */

  .contact-submit-button {
    width: auto;
    min-width: 230px;
    max-width: 280px;

    min-height: 48px;

    padding:
      0
      22px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    flex: 0 0 auto;
  }

}
/* =========================================================
   INVESTIGACIÓN — IDENTIDAD DE TECNOLOGÍAS RELACIONADAS
   Ícono + nombre con colores oficiales
   ========================================================= */


/* Botón completo */

.research-line-technology-brand {
  width: min(100%, 360px);
  min-height: 82px;

  padding: 12px 18px;

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

  gap: 16px;

  color: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(255, 122, 0, 0.82);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(26, 4, 4, 0.96),
      rgba(6, 6, 9, 0.98)
    );

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.22);

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


.research-line-technology-brand:hover,
.research-line-technology-brand:focus-visible {
  transform: translateY(-3px);

  border-color: #ff7a00;

  box-shadow:
    0 15px 34px rgba(255, 122, 0, 0.2);
}


/* Ícono */

.research-line-technology-logo {
  width: 54px;
  height: 54px;

  min-width: 54px;
  max-width: 54px;

  flex: 0 0 54px;

  object-fit: contain;
  object-position: center;
}


/* Nombre general */

.research-technology-name {
  min-width: 0;

  display: inline-flex;
  align-items: flex-start;

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  font-size: clamp(1.5rem, 1.9vw, 2.05rem);
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.045em;

  white-space: nowrap;
}


.research-technology-name > span {
  display: inline-block;
}


/* Símbolo TM */

.research-technology-name sup {
  position: relative;
  top: -0.2em;

  margin-left: 4px;

  color: #ffffff;

  font-size: 0.34em;
  font-weight: 900;
  line-height: 1;

  letter-spacing: 0;
}


/* Colores oficiales */

.research-technology-white {
  color: #ffffff;
}

.research-technology-orange {
  color: #ff7a00;
}

.research-technology-blue {
  color: #4f8fd8;
}

.research-technology-light-blue {
  color: #34aee8;
}


/* Ajustes individuales */

.research-technology-census {
  font-size: clamp(1.25rem, 1.55vw, 1.72rem);
}

.research-technology-iroe {
  font-size: clamp(1.55rem, 1.9vw, 2rem);
}

.research-technology-tsunamigo {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
}

.research-technology-morphoflow {
  font-size: clamp(1.4rem, 1.75vw, 1.9rem);
}

.research-technology-chirpview {
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
}


/* Ajuste de la etiqueta “Tecnología relacionada” */

.research-line-technology-label {
  display: block;

  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Responsive */

@media (max-width: 700px) {

  .research-line-technology-brand {
    width: 100%;
    min-height: 72px;

    padding: 10px 14px;

    gap: 12px;
  }

  .research-line-technology-logo {
    width: 46px;
    height: 46px;

    min-width: 46px;
    max-width: 46px;

    flex-basis: 46px;
  }

  .research-technology-name,
  .research-technology-census,
  .research-technology-iroe,
  .research-technology-tsunamigo,
  .research-technology-morphoflow,
  .research-technology-chirpview {
    font-size: clamp(1.2rem, 5.8vw, 1.6rem);
  }

}
/* =========================================================
   SOLUCIONES — CORRECCIONES DE VISIBILIDAD Y TIPOGRAFÍA
========================================================= */


/* =========================================================
   01. INTRODUCCIÓN INSTITUCIONAL
========================================================= */

.solutions-index-intro {
  position: relative;

  width: 100%;

  padding:
    clamp(72px, 7vw, 108px)
    0;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #092746 100%
    );

  border-top:
    1px solid rgba(40, 170, 255, 0.18);

  border-bottom:
    1px solid rgba(40, 170, 255, 0.18);
}


.solutions-index-intro-container {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.85fr)
    minmax(0, 1.15fr);

  align-items: start;

  gap:
    clamp(44px, 6vw, 90px);
}


/* Antetítulo */

.solutions-index-intro
.section-kicker {
  margin:
    0 0 16px;

  color: #ff7a00;

  font-family:
    "Inter",
    Arial,
    sans-serif;

  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Título visible */

.solutions-index-intro-heading h2 {
  max-width: 620px;

  margin: 0;

  color: #ffffff;

  font-family:
    "Inter",
    Arial,
    sans-serif;

  font-size:
    clamp(1.65rem, 2.55vw, 2.35rem);

  font-weight: 900;
  line-height: 1.1;

  letter-spacing: -0.042em;

  text-wrap: balance;
}


/* Textos de la columna derecha */

.solutions-index-intro-text {
  max-width: 760px;
}


.solutions-index-intro-text p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.76);

  font-family:
    "Inter",
    Arial,
    sans-serif;

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}


.solutions-index-intro-text p + p {
  margin-top: 18px;
}
/* =========================================================
   PÁGINA PRINCIPAL DE SOLUCIONES
   CORRECCIÓN FINAL DE VISIBILIDAD, TIPOGRAFÍA Y MARCAS

   Se aplica solamente a:
   /soluciones/

   No afecta:
   - Inicio
   - Nosotros
   - Contacto
   - Campus
   - Subpáginas individuales
========================================================= */


/* =========================================================
   01. INTRODUCCIÓN INSTITUCIONAL
   Del conocimiento científico a la aplicación territorial
========================================================= */

body[data-page="soluciones"]
.solutions-index-intro {
  position: relative;

  width: 100%;

  padding:
    clamp(70px, 7vw, 110px)
    0;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #092746 100%
    );

  border-top:
    1px solid rgba(40, 170, 255, 0.18);

  border-bottom:
    1px solid rgba(40, 170, 255, 0.18);
}


body[data-page="soluciones"]
.solutions-index-intro-container {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.9fr)
    minmax(0, 1.1fr);

  align-items: start;

  gap:
    clamp(42px, 6vw, 88px);
}


/* Antetítulo */

body[data-page="soluciones"]
.solutions-index-intro
.section-kicker {
  margin:
    0 0 16px;

  color: #ff7a00;

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Título ahora visible */

body[data-page="soluciones"]
.solutions-index-intro-heading h2 {
  max-width: 620px;

  margin: 0;

  color: #ffffff;

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    clamp(1.65rem, 2.55vw, 2.35rem);

  font-weight: 900;
  line-height: 1.1;

  letter-spacing: -0.042em;

  text-wrap: balance;
}


/* Columna derecha */

body[data-page="soluciones"]
.solutions-index-intro-text {
  max-width: 760px;
}


body[data-page="soluciones"]
.solutions-index-intro-text p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.78);

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}


body[data-page="soluciones"]
.solutions-index-intro-text p + p {
  margin-top: 18px;
}


/* =========================================================
   02. CINCO SOLUCIONES
   Reducción de títulos y orden tipográfico
========================================================= */

body[data-page="soluciones"]
.solution-line-content h2 {
  margin:
    7px 0 0;

  color: #ffffff;

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    clamp(1.35rem, 1.75vw, 1.75rem);

  font-weight: 900;
  line-height: 1.14;

  letter-spacing: -0.035em;

  text-wrap: balance;
}


body[data-page="soluciones"]
.solution-line-description {
  margin:
    14px 0 0;

  color:
    rgba(255, 255, 255, 0.82);

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.65;
}


body[data-page="soluciones"]
.solution-line-category {
  margin: 0;

  color: #ff7a00;

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


body[data-page="soluciones"]
.solution-line-number {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    clamp(1.8rem, 2.4vw, 2.5rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.045em;
}


/* =========================================================
   03. TECNOLOGÍA ASOCIADA
   Logo + nombre visible
========================================================= */

body[data-page="soluciones"]
.solution-line-technology {
  margin-top: 22px;
}


body[data-page="soluciones"]
.solution-line-technology-label {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(255, 255, 255, 0.78);

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.3;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


body[data-page="soluciones"]
.solution-line-technology-brand {
  width: fit-content;
  min-width: 205px;
  min-height: 56px;

  padding:
    8px 15px;

  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: #ffffff;
  text-decoration: none;
}


body[data-page="soluciones"]
.solution-line-technology-logo {
  display: block;

  width: 38px;
  height: 38px;

  min-width: 38px;

  flex:
    0 0 38px;

  object-fit: contain;
  object-position: center;
}


body[data-page="soluciones"]
.solution-line-technology-name {
  display: inline-block;

  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;

  letter-spacing: -0.02em;
  white-space: nowrap;
}


/* =========================================================
   04. RESPONSIVE DE LA PÁGINA SOLUCIONES
========================================================= */

@media (max-width: 820px) {

  body[data-page="soluciones"]
  .solutions-index-intro-container {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  body[data-page="soluciones"]
  .solutions-index-intro-heading,

  body[data-page="soluciones"]
  .solutions-index-intro-text {
    max-width: none;
  }


  body[data-page="soluciones"]
  .solution-line-content h2 {
    font-size:
      clamp(1.3rem, 4.8vw, 1.7rem);
  }


  body[data-page="soluciones"]
  .solution-line-technology-brand {
    min-width: 185px;
  }

}


@media (max-width: 540px) {

  body[data-page="soluciones"]
  .solutions-index-intro {
    padding:
      54px 0;
  }


  body[data-page="soluciones"]
  .solutions-index-intro-heading h2 {
    font-size:
      clamp(1.55rem, 6.8vw, 2.1rem);
  }


  body[data-page="soluciones"]
  .solutions-index-intro-text p {
    font-size: 0.96rem;
    line-height: 1.68;
  }


  body[data-page="soluciones"]
  .solution-line-content h2 {
    font-size:
      clamp(1.25rem, 6vw, 1.6rem);
  }


  body[data-page="soluciones"]
  .solution-line-description {
    font-size: 0.92rem;
    line-height: 1.62;
  }


  body[data-page="soluciones"]
  .solution-line-technology-brand {
    width: 100%;
    min-width: 0;
  }

}