/* =========================================================
   GEOPLOT WEB — SUBPAGINAS.CSS

   Sistema visual compartido para páginas individuales de:

   - Investigación
   - Tecnología
   - Soluciones

   Componentes disponibles:

   1. Hero con imagen de fondo 1920 × 1080
   2. Título, subtítulo y descripción
   3. Botones institucionales
   4. Sección principal con recuadro redondeado
   5. Descripción de aproximadamente 100 palabras
   6. Caso de estudio destacado
   7. Enlaces entre investigación, tecnología y solución

   También incluye compatibilidad temporal con las clases
   antiguas de la página de análisis censal y territorial.
   ========================================================= */


/* =========================================================
   01. VARIABLES GENERALES
   ========================================================= */

:root {
  --subpage-max-width: 1440px;

  --subpage-dark: #020914;
  --subpage-dark-blue: #06172d;
  --subpage-deep-blue: #092746;

  --subpage-white: #ffffff;

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

  --subpage-blue: #28aaff;
  --subpage-blue-dark: #0b6fc2;

  --subpage-light-background: #f2f6fa;
  --subpage-card-background: #ffffff;

  --subpage-dark-text: #102344;
  --subpage-body-text: #425970;

  --subpage-text-light:
    rgba(255, 255, 255, 0.94);

  --subpage-text-muted:
    rgba(239, 246, 252, 0.76);

  --subpage-dark-border:
    rgba(14, 49, 82, 0.14);

  --subpage-light-border:
    rgba(255, 255, 255, 0.16);

  --subpage-card-radius: 28px;
  --subpage-button-radius: 14px;

  /*
   * Título principal del hero.
   * El orden correcto de clamp es:
   * mínimo, tamaño flexible, máximo.
   */

  --subpage-hero-title-size:
    clamp(3rem, 3.35vw, 4rem);

  /*
   * Subtítulo en negrita situado bajo el título.
   */

  --subpage-hero-subtitle-size:
    clamp(1.48rem, 1.82vw, 1.95rem);

  /*
   * Descripción inferior del hero.
   */

  --subpage-hero-description-size:
    clamp(1rem, 1.08vw, 1.16rem);

  /*
   * Título de la sección descriptiva.
   */

  --subpage-section-title-size:
    clamp(2.15rem, 3.1vw, 3.55rem);

  /*
   * Texto de la descripción principal.
   */

  --subpage-section-text-size:
    clamp(1.08rem, 1.2vw, 1.28rem);

  /*
   * Altura común de los botones.
   */

  --subpage-button-height: 56px;
}


/* =========================================================
   02. BASE GENERAL
   ========================================================= */

.subpage,
.census-research-page {
  width: 100%;

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


.subpage *,
.subpage *::before,
.subpage *::after,
.census-research-page *,
.census-research-page *::before,
.census-research-page *::after {
  box-sizing: border-box;
}


/* =========================================================
   03. HERO GENERAL PARA LAS NUEVAS SUBPÁGINAS

   Uso esperado en HTML:

   <section
     class="subpage-hero"
     style="
       --subpage-hero-image:
       url('/assets/hero_imagenes/.../hero.webp');
     "
   >
   ========================================================= */

.subpage-hero {
  position: relative;
  isolation: isolate;

  width: 100%;

  height:
    calc(100vh - var(--header-height));

  min-height: 700px;
  max-height: 1050px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: var(--subpage-white);

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

  background-image:
    var(--subpage-hero-image);

  background-position:
    var(--subpage-hero-position, center center);

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

  border-bottom:
    1px solid rgba(40, 170, 255, 0.24);
}


/* Degradado oscuro sobre la imagen */

.subpage-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 4, 12, 0.9) 22%,
      rgba(0, 7, 20, 0.72) 42%,
      rgba(0, 7, 20, 0.38) 64%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.1) 65%,
      rgba(0, 0, 0, 0.42) 100%
    );
}


/* Sombra inferior del hero */

.subpage-hero::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: -1;

  height: 30%;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(2, 9, 20, 0.68)
    );
}


/* =========================================================
   04. CONTENEDOR DEL HERO
   ========================================================= */

.subpage-hero-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  height: 100%;

  margin-inline: auto;

  padding-top: 24px;
  padding-bottom: 38px;

  display: flex;
  align-items: center;
}


/* Columna textual */

.subpage-hero-content {
  width: 100%;
  max-width: 900px;

  transform:
    translateY(-18px);
}


/* =========================================================
   05. ETIQUETA SUPERIOR DEL HERO
   ========================================================= */

.subpage-hero-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.subpage-hero-eyebrow-blue {
  color:
    var(--subpage-blue);
}


/* =========================================================
   06. TÍTULO PRINCIPAL DEL HERO
   ========================================================= */

.subpage-hero-title {
  width: 100%;
  max-width: 1000px;

  margin: 0;

  color: var(--subpage-white);

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

  font-size:
    var(--subpage-hero-title-size);

  font-weight: 850;
  line-height: 1.04;

  letter-spacing: -0.04em;
}


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


.subpage-hero-accent-blue {
  color:
    var(--subpage-blue);
}


.subpage-hero-accent-orange {
  color:
    var(--subpage-orange);
}


/* =========================================================
   07. SUBTÍTULO PRINCIPAL DEL HERO
   ========================================================= */

.subpage-hero-subtitle {
  max-width: 850px;

  margin: 30px 0 0;

  color:
    var(--subpage-white);

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

  font-size:
    var(--subpage-hero-subtitle-size);

  font-weight: 800;
  line-height: 1.3;

  letter-spacing: -0.02em;
}


/* =========================================================
   08. DESCRIPCIÓN INFERIOR DEL HERO
   ========================================================= */

.subpage-hero-description {
  max-width: 780px;

  margin: 24px 0 0;

  color:
    var(--subpage-text-light);

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

  font-size:
    var(--subpage-hero-description-size);

  font-weight: 400;
  line-height: 1.55;
}


/* =========================================================
   09. BOTONES DEL HERO
   ========================================================= */

.subpage-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 30px;
}


.subpage-button {
  min-height:
    var(--subpage-button-height);

  padding:
    0 24px;

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

  gap: 20px;

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

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

  font-size:
    clamp(0.98rem, 1vw, 1.08rem);

  font-weight: 750;
  line-height: 1;

  border:
    2px solid transparent;

  border-radius:
    var(--subpage-button-radius);

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


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


/* Botón naranja */

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

  background:
    var(--subpage-orange);

  box-shadow:
    0 12px 30px rgba(255, 122, 0, 0.26);
}


.subpage-button-primary:hover,
.subpage-button-primary:focus-visible {
  color: var(--subpage-white);

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

  background:
    var(--subpage-orange-hover);

  box-shadow:
    0 16px 36px rgba(255, 122, 0, 0.34);
}


/* Botón azul */

.subpage-button-blue {
  border-color:
    var(--subpage-blue);

  background:
    linear-gradient(
      135deg,
      var(--subpage-blue),
      var(--subpage-blue-dark)
    );

  box-shadow:
    0 12px 30px rgba(11, 111, 194, 0.26);
}


.subpage-button-blue:hover,
.subpage-button-blue:focus-visible {
  color: var(--subpage-white);

  background:
    linear-gradient(
      135deg,
      #45b7ff,
      #0e7fd8
    );
}


/* Botón transparente */

.subpage-button-secondary {
  color:
    var(--subpage-white);

  border-color:
    rgba(255, 255, 255, 0.92);

  background:
    rgba(0, 0, 0, 0.42);

  backdrop-filter:
    blur(5px);
}


.subpage-button-secondary:hover,
.subpage-button-secondary:focus-visible {
  color:
    var(--subpage-white);

  border-color:
    var(--subpage-white);

  background:
    rgba(255, 255, 255, 0.12);
}


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


/* =========================================================
   10. SECCIÓN PRINCIPAL DE DESCRIPCIÓN
   ========================================================= */

.subpage-description-section {
  position: relative;

  width: 100%;

  padding:
    clamp(72px, 8vw, 124px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #f8fafc 0%,
      var(--subpage-light-background) 100%
    );
}


/* Decoración circular de fondo */

.subpage-description-section::before {
  content: "";

  position: absolute;

  top: -18rem;
  right: -13rem;

  width: 42rem;
  height: 42rem;

  pointer-events: none;

  border:
    1px solid rgba(40, 170, 255, 0.12);

  border-radius: 50%;

  box-shadow:
    0 0 0 80px rgba(40, 170, 255, 0.025),
    0 0 0 160px rgba(40, 170, 255, 0.014);
}


.subpage-description-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;
}


/* =========================================================
   11. RECUADRO PRINCIPAL
   ========================================================= */

.subpage-description-card {
  width: 100%;

  padding:
    clamp(40px, 5vw, 74px);

  display: grid;

  grid-template-columns:
    minmax(300px, 0.82fr)
    minmax(0, 1.18fr);

  align-items: start;

  gap:
    clamp(42px, 6vw, 90px);

  color:
    var(--subpage-dark-text);

  border:
    1px solid var(--subpage-dark-border);

  border-radius:
    var(--subpage-card-radius);

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 26px 70px rgba(10, 37, 66, 0.12);
}


/* =========================================================
   12. COLUMNA DEL TÍTULO
   ========================================================= */

.subpage-description-heading {
  max-width: 560px;
}


.subpage-description-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.subpage-description-title {
  margin: 0;

  color:
    var(--subpage-dark-text);

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

  font-size:
    var(--subpage-section-title-size);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


/* =========================================================
   13. COLUMNA DEL TEXTO
   ========================================================= */

.subpage-description-content {
  max-width: 780px;
}


.subpage-description-text {
  margin: 0;

  color:
    var(--subpage-body-text);

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

  font-size:
    var(--subpage-section-text-size);

  font-weight: 400;
  line-height: 1.72;
}


/* Caso de estudio dentro del recuadro */

.subpage-case-inline {
  display: block;

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

  color: #173d63;

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

  font-size:
    clamp(1rem, 1.08vw, 1.15rem);

  font-weight: 600;
  line-height: 1.62;

  border-top:
    1px solid var(--subpage-dark-border);
}


.subpage-case-inline strong {
  color:
    var(--subpage-orange);

  font-weight: 850;
}


/* =========================================================
   14. BOTONES DE LA SECCIÓN DESCRIPTIVA
   ========================================================= */

.subpage-description-actions {
  grid-column:
    2 / 3;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: -26px;
}


.subpage-description-link {
  min-height: 50px;

  padding:
    0 19px;

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

  gap: 12px;

  color:
    var(--subpage-dark-text);

  text-decoration: none;

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

  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1;

  border:
    2px solid var(--subpage-dark-text);

  border-radius: 12px;

  background:
    var(--subpage-white);

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


.subpage-description-link:hover,
.subpage-description-link:focus-visible {
  color:
    var(--subpage-white);

  transform:
    translateY(-2px);

  border-color:
    var(--subpage-dark-text);

  background:
    var(--subpage-dark-text);
}


.subpage-description-link-primary {
  color:
    var(--subpage-white);

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

  background:
    var(--subpage-orange);
}


.subpage-description-link-primary:hover,
.subpage-description-link-primary:focus-visible {
  color:
    var(--subpage-white);

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

  background:
    var(--subpage-orange-hover);
}


/* =========================================================
   FIN DE LA PARTE 1
   CONTINÚA INMEDIATAMENTE CON LA PARTE 2
   ========================================================= */
   /* =========================================================
   15. COMPATIBILIDAD CON LA PÁGINA ACTUAL
   ANÁLISIS CENSAL Y TERRITORIAL

   Estas reglas permiten conservar temporalmente el HTML
   antiguo que usa clases census-research-*.
   ========================================================= */


/* Hero antiguo con altura estandarizada */

.census-research-page
.census-research-hero {
  position: relative;

  width: 100%;

  height:
    calc(100vh - var(--header-height));

  min-height: 700px;
  max-height: 1050px;

  display: flex;
  align-items: center;

  overflow: hidden;

  border-bottom:
    1px solid rgba(40, 170, 255, 0.24);
}


/* Imagen del hero antiguo */

.census-research-page
.census-research-hero-background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

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


/* Capa oscura antigua */

.census-research-page
.census-research-hero-overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 4, 12, 0.9) 22%,
      rgba(0, 7, 20, 0.72) 44%,
      rgba(0, 7, 20, 0.38) 65%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.36)
    );
}


/* Contenedor antiguo */

.census-research-page
.census-research-hero-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  height: 100%;

  margin-inline: auto;

  padding:
    24px 0 38px;

  display: flex;
  align-items: center;
}


/* Contenido antiguo */

.census-research-page
.census-research-hero-content {
  width: 100%;
  max-width: 900px;

  transform:
    translateY(-18px);
}


/* Etiqueta antigua */

.census-research-page
.census-research-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


/* Título antiguo */

.census-research-page
.census-research-hero-content h1 {
  width: 100%;
  max-width: 1000px;

  margin: 0;

  color:
    var(--subpage-white);

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

  font-size:
    var(--subpage-hero-title-size) !important;

  font-weight: 850;
  line-height: 1.04;

  letter-spacing: -0.04em;
}


/* Subtítulo antiguo */

.census-research-page
.census-research-hero-subtitle {
  max-width: 850px;

  margin: 30px 0 0;

  color:
    var(--subpage-white);

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

  font-size:
    var(--subpage-hero-subtitle-size);

  font-weight: 800;
  line-height: 1.3;

  letter-spacing: -0.02em;
}


/* Descripción antigua */

.census-research-page
.census-research-hero-description {
  max-width: 780px;

  margin: 24px 0 0;

  color:
    var(--subpage-text-light);

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

  font-size:
    var(--subpage-hero-description-size);

  font-weight: 400;
  line-height: 1.55;
}


/* Botones antiguos */

.census-research-page
.census-research-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 30px;
}


/* =========================================================
   16. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1050px) {

  .subpage-hero,
  .census-research-page
  .census-research-hero {
    height: auto;

    min-height: 680px;
    max-height: none;
  }


  .subpage-hero-container,
  .census-research-page
  .census-research-hero-container {
    width:
      min(
        calc(100% - 40px),
        1000px
      );

    height: auto;

    padding:
      88px 0;
  }


  .subpage-hero-content,
  .census-research-page
  .census-research-hero-content {
    max-width: 800px;

    transform: none;
  }


  .subpage-description-card {
    grid-template-columns:
      minmax(250px, 0.72fr)
      minmax(0, 1.28fr);

    gap: 42px;
  }


  .subpage-description-actions {
    margin-top: -10px;
  }

}


/* =========================================================
   17. TABLET VERTICAL Y MÓVIL
   ========================================================= */

@media (max-width: 820px) {

  .subpage-hero,
  .census-research-page
  .census-research-hero {
    height: auto;

    min-height: 650px;
    max-height: none;
  }


  .subpage-hero {
    background-position:
      var(--subpage-hero-position-mobile, 68% center);
  }


  .census-research-page
  .census-research-hero-background {
    background-position:
      68% center;
  }


  .subpage-hero-container,
  .census-research-page
  .census-research-hero-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );

    height: auto;

    padding:
      68px 0;
  }


  .subpage-hero-content,
  .census-research-page
  .census-research-hero-content {
    max-width: 680px;

    transform: none;
  }


  .subpage-hero-title,
  .census-research-page
  .census-research-hero-content h1 {
    font-size:
      clamp(2.3rem, 8.8vw, 3.25rem) !important;

    line-height: 1.05;
  }


  .subpage-hero-subtitle,
  .census-research-page
  .census-research-hero-subtitle {
    margin-top: 24px;

    font-size:
      clamp(1.28rem, 4.8vw, 1.62rem);

    line-height: 1.34;
  }


  .subpage-hero-description,
  .census-research-page
  .census-research-hero-description {
    max-width: 650px;

    margin-top: 20px;

    font-size:
      clamp(1rem, 3.9vw, 1.12rem);
  }


  .subpage-hero-actions,
  .census-research-page
  .census-research-hero-actions {
    margin-top: 26px;
  }


  .subpage-description-section {
    padding:
      68px 0;
  }


  .subpage-description-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .subpage-description-card {
    grid-template-columns: 1fr;

    gap: 30px;

    padding:
      42px 34px;
  }


  .subpage-description-title {
    max-width: 620px;
  }


  .subpage-description-content {
    max-width: none;
  }


  .subpage-description-actions {
    grid-column: auto;

    margin-top: 0;
  }

}


/* =========================================================
   18. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .subpage-hero,
  .census-research-page
  .census-research-hero {
    min-height: 620px;
  }


  .subpage-hero-container,
  .census-research-page
  .census-research-hero-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );

    padding:
      54px 0;
  }


  .subpage-hero-title,
  .census-research-page
  .census-research-hero-content h1 {
    font-size:
      clamp(2.05rem, 9.5vw, 2.7rem) !important;

    line-height: 1.05;
  }


  .subpage-hero-subtitle,
  .census-research-page
  .census-research-hero-subtitle {
    margin-top: 22px;

    font-size:
      clamp(1.2rem, 5.4vw, 1.45rem);
  }


  .subpage-hero-description,
  .census-research-page
  .census-research-hero-description {
    margin-top: 18px;

    font-size:
      clamp(0.98rem, 4.3vw, 1.08rem);
  }


  .subpage-hero-actions,
  .census-research-page
  .census-research-hero-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 12px;

    margin-top: 25px;
  }


  .subpage-button,
  .subpage-hero-actions .button,
  .census-research-hero-actions .button {
    width: 100%;
    min-height: 54px;
  }


  .subpage-description-section {
    padding:
      52px 0;
  }


  .subpage-description-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .subpage-description-card {
    padding:
      32px 24px;

    border-radius: 22px;
  }


  .subpage-description-title {
    font-size:
      clamp(2rem, 9vw, 2.65rem);
  }


  .subpage-description-text {
    font-size:
      clamp(1.02rem, 4.4vw, 1.13rem);

    line-height: 1.65;
  }


  .subpage-case-inline {
    font-size:
      clamp(0.98rem, 4.2vw, 1.08rem);
  }


  .subpage-description-actions {
    align-items: stretch;
    flex-direction: column;
  }


  .subpage-description-link {
    width: 100%;
  }

}


/* =========================================================
   19. PANTALLAS BAJAS DE ESCRITORIO
   Portátiles con poca altura vertical
   ========================================================= */

@media
  (min-width: 1060px)
  and
  (max-height: 760px) {

  .subpage-hero,
  .census-research-page
  .census-research-hero {
    min-height: 620px;
  }


  .subpage-hero-container,
  .census-research-page
  .census-research-hero-container {
    padding-top: 24px;
    padding-bottom: 28px;
  }


  .subpage-hero-content,
  .census-research-page
  .census-research-hero-content {
    transform:
      translateY(-8px);
  }


  .subpage-hero-title,
  .census-research-page
  .census-research-hero-content h1 {
    font-size:
      clamp(2.55rem, 2.85vw, 3.45rem) !important;
  }


  .subpage-hero-subtitle,
  .census-research-page
  .census-research-hero-subtitle {
    margin-top: 23px;

    font-size:
      clamp(1.28rem, 1.48vw, 1.6rem);
  }


  .subpage-hero-description,
  .census-research-page
  .census-research-hero-description {
    margin-top: 18px;

    font-size:
      clamp(0.98rem, 1.02vw, 1.08rem);
  }


  .subpage-hero-actions,
  .census-research-page
  .census-research-hero-actions {
    margin-top: 24px;
  }


  .subpage-button,
  .subpage-hero-actions .button,
  .census-research-hero-actions .button {
    min-height: 52px;
  }

}


/* =========================================================
   20. PANTALLAS MUY ANCHAS
   ========================================================= */

@media (min-width: 1600px) {

  .subpage-hero-container,
  .subpage-description-container,
  .census-research-page
  .census-research-hero-container {
    width:
      min(
        88%,
        var(--subpage-max-width)
      );
  }

}


/* =========================================================
   21. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .subpage-button,
  .subpage-description-link {
    transition: none;
  }

}
/* =========================================================
   RIESGO OPERATIVO DE EVACUACIÓN
   Página de investigación + dashboard IROE-1

   Componentes:
   - Identidad tecnológica dentro del hero
   - Sección editorial de investigación
   - Sección visual del dashboard
   ========================================================= */


/* =========================================================
   01. IDENTIDAD TECNOLÓGICA EN EL HERO
   Logo primero + nombre de la tecnología
   ========================================================= */

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

  margin-top: 28px;

  padding: 11px 18px;

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

  gap: 15px;

  color: #ffffff;
  text-decoration: none;

  border:
    1px solid rgba(255, 122, 0, 0.72);

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(18, 3, 3, 0.88),
      rgba(4, 8, 15, 0.94)
    );

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22);

  backdrop-filter:
    blur(8px);

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


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

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

  box-shadow:
    0 16px 34px rgba(255, 122, 0, 0.18);
}


/* Logo */

.risk-hero-technology-logo {
  width: 58px;
  height: 58px;

  min-width: 58px;

  flex:
    0 0 58px;

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


/* Contenedor del nombre */

.risk-hero-technology-copy {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


/* Etiqueta pequeña */

.risk-hero-technology-label {
  color:
    rgba(255, 255, 255, 0.7);

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

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Nombre IROE-1 */

.risk-hero-technology-name {
  color: #ffffff;

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

  font-size:
    clamp(1.45rem, 1.55vw, 1.8rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   02. SECCIÓN SIMPLE DE INVESTIGACIÓN
   Sin tarjeta blanca ni recuadro dividido
   ========================================================= */

.risk-research-section {
  position: relative;

  width: 100%;

  padding:
    clamp(82px, 8vw, 132px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #f8fafc 0%,
      #edf3f8 100%
    );
}


/* Decoración tenue */

.risk-research-section::before {
  content: "";

  position: absolute;

  top: -18rem;
  right: -14rem;

  width: 42rem;
  height: 42rem;

  pointer-events: none;

  border:
    1px solid rgba(40, 170, 255, 0.12);

  border-radius: 50%;

  box-shadow:
    0 0 0 85px rgba(40, 170, 255, 0.025),
    0 0 0 170px rgba(40, 170, 255, 0.014);
}


/* Contenedor */

.risk-research-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(300px, 0.78fr)
    minmax(0, 1.22fr);

  align-items: start;

  gap:
    clamp(52px, 7vw, 108px);
}


/* Columna del título */

.risk-research-heading {
  max-width: 560px;
}


.risk-section-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.risk-research-heading h2 {
  margin: 0;

  color:
    var(--subpage-dark-text);

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

  font-size:
    clamp(2.3rem, 3.25vw, 3.8rem);

  font-weight: 850;
  line-height: 1.07;

  letter-spacing: -0.04em;
}


/* Columna de contenido */

.risk-research-content {
  max-width: 790px;
}


.risk-research-content > p:first-child {
  margin: 0;

  color:
    var(--subpage-body-text);

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

  font-size:
    clamp(1.1rem, 1.22vw, 1.3rem);

  font-weight: 400;
  line-height: 1.72;
}


/* Caso de estudio */

.risk-research-case {
  margin:
    28px 0 0;

  padding:
    24px 0 0;

  color: #173d63;

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

  font-size:
    clamp(1.02rem, 1.1vw, 1.17rem);

  font-weight: 600;
  line-height: 1.62;

  border-top:
    1px solid rgba(14, 49, 82, 0.15);
}


.risk-research-case strong {
  color:
    var(--subpage-orange);

  font-weight: 850;
}


/* Botones */

.risk-research-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 30px;
}


/* =========================================================
   03. SECCIÓN DEL DASHBOARD IROE-1
   ========================================================= */

.subpage-dashboard-section {
  position: relative;

  width: 100%;

  padding:
    clamp(86px, 8vw, 140px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 16% 30%,
      rgba(40, 170, 255, 0.16),
      transparent 30rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #092746 100%
    );

  border-top:
    1px solid rgba(40, 170, 255, 0.18);
}


/* Retícula tenue */

.subpage-dashboard-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

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

  background-size:
    58px 58px;
}


/* Contenedor */

.subpage-dashboard-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;
}


/* Tarjeta general */

.subpage-dashboard-card {
  width: 100%;

  padding:
    clamp(34px, 4.6vw, 64px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);

  align-items: center;

  gap:
    clamp(42px, 6vw, 90px);

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius:
    28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);

  backdrop-filter:
    blur(12px);
}


/* =========================================================
   04. IMAGEN DEL DASHBOARD
   ========================================================= */

.subpage-dashboard-visual {
  width: 100%;

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


.subpage-dashboard-visual img {
  display: block;

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

  height: auto;

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

  filter:
    drop-shadow(
      0 28px 38px rgba(0, 0, 0, 0.36)
    );
}


/* =========================================================
   05. CONTENIDO DEL DASHBOARD
   ========================================================= */

.subpage-dashboard-content {
  width: 100%;
  max-width: 590px;
}


.subpage-dashboard-eyebrow {
  margin: 0 0 20px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* Tecnología:
   primero logo y luego nombre */

.subpage-dashboard-technology {
  width: fit-content;
  max-width: 100%;

  margin-bottom: 28px;

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

  gap: 14px;

  color: #ffffff;
  text-decoration: none;

  transition:
    transform 0.2s ease;
}


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


/* Logo */

.subpage-dashboard-technology-logo {
  width: 56px;
  height: 56px;

  min-width: 56px;

  flex:
    0 0 56px;

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


/* Texto junto al logo */

.subpage-dashboard-technology-copy {
  display: flex;
  flex-direction: column;

  gap: 4px;
}


.subpage-dashboard-technology-copy span {
  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.subpage-dashboard-technology-copy strong {
  color: #ffffff;

  font-size:
    clamp(1.5rem, 1.7vw, 1.9rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* Título */

.subpage-dashboard-content h2 {
  max-width: 580px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.15rem, 2.8vw, 3.35rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


/* Descripción */

.subpage-dashboard-description {
  max-width: 570px;

  margin:
    26px 0 0;

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

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

  font-size:
    clamp(1.05rem, 1.14vw, 1.2rem);

  font-weight: 400;
  line-height: 1.65;
}


/* Botones */

.subpage-dashboard-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}


/* =========================================================
   06. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1050px) {

  .risk-research-container {
    grid-template-columns:
      minmax(250px, 0.72fr)
      minmax(0, 1.28fr);

    gap: 46px;
  }


  .subpage-dashboard-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);

    gap: 42px;

    padding:
      42px;
  }


  .subpage-dashboard-content h2 {
    font-size:
      clamp(2rem, 3.6vw, 2.9rem);
  }

}


/* =========================================================
   07. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .risk-hero-technology {
    margin-top: 24px;
  }


  .risk-research-section {
    padding:
      70px 0;
  }


  .risk-research-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );

    grid-template-columns: 1fr;

    gap: 30px;
  }


  .risk-research-heading,
  .risk-research-content {
    max-width: none;
  }


  .risk-research-heading h2 {
    font-size:
      clamp(2.2rem, 7.4vw, 3rem);
  }


  .subpage-dashboard-section {
    padding:
      72px 0;
  }


  .subpage-dashboard-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .subpage-dashboard-card {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      42px 34px;
  }


  .subpage-dashboard-visual {
    order: 1;
  }


  .subpage-dashboard-content {
    order: 2;

    max-width: none;
  }


  .subpage-dashboard-content h2 {
    max-width: 650px;

    font-size:
      clamp(2.1rem, 7vw, 3rem);
  }


  .subpage-dashboard-description {
    max-width: 650px;
  }

}


/* =========================================================
   08. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .risk-hero-technology {
    width: 100%;

    padding:
      10px 14px;
  }


  .risk-hero-technology-logo {
    width: 50px;
    height: 50px;

    min-width: 50px;

    flex-basis: 50px;
  }


  .risk-hero-technology-name {
    font-size:
      clamp(1.3rem, 6vw, 1.6rem);
  }


  .risk-research-section {
    padding:
      54px 0;
  }


  .risk-research-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .risk-research-heading h2 {
    font-size:
      clamp(2rem, 9vw, 2.65rem);
  }


  .risk-research-content > p:first-child {
    font-size:
      clamp(1.02rem, 4.4vw, 1.13rem);

    line-height: 1.66;
  }


  .risk-research-actions {
    align-items: stretch;
    flex-direction: column;
  }


  .risk-research-actions
  .subpage-description-link {
    width: 100%;
  }


  .subpage-dashboard-section {
    padding:
      54px 0;
  }


  .subpage-dashboard-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .subpage-dashboard-card {
    gap: 32px;

    padding:
      30px 22px;

    border-radius: 22px;
  }


  .subpage-dashboard-technology-logo {
    width: 50px;
    height: 50px;

    min-width: 50px;

    flex-basis: 50px;
  }


  .subpage-dashboard-content h2 {
    font-size:
      clamp(1.95rem, 8.8vw, 2.6rem);
  }


  .subpage-dashboard-description {
    font-size:
      clamp(1rem, 4.4vw, 1.1rem);
  }


  .subpage-dashboard-actions {
    align-items: stretch;
    flex-direction: column;
  }


  .subpage-dashboard-actions
  .subpage-button {
    width: 100%;
  }

}


/* =========================================================
   09. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .risk-hero-technology,
  .subpage-dashboard-technology {
    transition: none;
  }

}
/* =========================================================
   TSUNAMIGO — WEB Y APP

   Sección tecnológica de la página:
   /investigacion/evacuacion-tsunami/

   Orden:
   1. TsunamiGo Web
   2. TsunamiGo App

   Cada producto incluye:
   - imagen
   - logo
   - nombre
   - descripción
   - botones
   ========================================================= */


/* =========================================================
   01. SECCIÓN GENERAL
   ========================================================= */

.tsunamigo-showcase-section {
  position: relative;

  width: 100%;

  padding:
    clamp(88px, 8vw, 140px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(40, 170, 255, 0.15),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 72%,
      rgba(255, 122, 0, 0.08),
      transparent 26rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 55%,
      #092746 100%
    );

  border-top:
    1px solid rgba(40, 170, 255, 0.18);
}


/* Retícula tecnológica tenue */

.tsunamigo-showcase-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

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

  background-size:
    58px 58px;
}


/* =========================================================
   02. CONTENEDOR GENERAL
   ========================================================= */

.tsunamigo-showcase-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;
}


/* =========================================================
   03. ENCABEZADO DE LA SECCIÓN
   ========================================================= */

.tsunamigo-showcase-header {
  width: 100%;
  max-width: 940px;

  margin:
    0 auto
    clamp(54px, 6vw, 86px);

  text-align: center;
}


.tsunamigo-showcase-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.tsunamigo-showcase-header h2 {
  max-width: 900px;

  margin: 0 auto;

  color: #ffffff;

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

  font-size:
    clamp(2.5rem, 3.5vw, 4.2rem);

  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.045em;
}


.tsunamigo-showcase-header > p:last-child {
  max-width: 760px;

  margin:
    24px auto 0;

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

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

  font-size:
    clamp(1.06rem, 1.18vw, 1.24rem);

  font-weight: 400;
  line-height: 1.65;
}


/* =========================================================
   04. TARJETA DE CADA PRODUCTO
   ========================================================= */

.tsunamigo-product-card {
  width: 100%;

  margin-top:
    clamp(34px, 4vw, 54px);

  padding:
    clamp(34px, 4.7vw, 66px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);

  align-items: center;

  gap:
    clamp(46px, 6vw, 92px);

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);

  backdrop-filter:
    blur(12px);
}


/* Primera tarjeta sin margen superior extra */

.tsunamigo-showcase-header
+
.tsunamigo-product-card {
  margin-top: 0;
}


/* Tarjeta alternada:
   contenido a la izquierda e imagen a la derecha */

.tsunami-product-card-reverse
.tsunamigo-product-visual {
  order: 2;
}


.tsunami-product-card-reverse
.tsunamigo-product-content {
  order: 1;
}


/* =========================================================
   05. BLOQUE VISUAL
   ========================================================= */

.tsunamigo-product-visual {
  width: 100%;

  min-height: 430px;

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

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(40, 170, 255, 0.11),
      transparent 68%
    ),
    rgba(0, 0, 0, 0.18);
}


/* Imagen general */

.tsunamigo-product-image {
  display: block;

  width: 100%;
  height: auto;

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

  filter:
    drop-shadow(
      0 28px 38px rgba(0, 0, 0, 0.36)
    );
}


/* Imagen del computador */

.tsunami-web-image {
  max-width: 760px;

  padding:
    clamp(16px, 2vw, 28px);
}


/* Imagen vertical del celular */

.tsunami-app-image {
  width: auto;
  max-width: 100%;

  max-height: 620px;

  padding:
    clamp(12px, 1.5vw, 20px);

  object-fit: contain;
}


/* =========================================================
   06. CONTENIDO DE CADA PRODUCTO
   ========================================================= */

.tsunamigo-product-content {
  width: 100%;
  max-width: 600px;
}


.tsunamigo-product-eyebrow {
  margin: 0 0 20px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* =========================================================
   07. LOGO + NOMBRE
   ========================================================= */

.tsunamigo-product-brand {
  width: fit-content;
  max-width: 100%;

  margin-bottom: 28px;

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

  gap: 15px;

  color: #ffffff;
  text-decoration: none;

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


.tsunamigo-product-brand:hover,
.tsunamigo-product-brand:focus-visible {
  transform:
    translateY(-2px);

  opacity: 0.95;
}


/* Logo */

.tsunamigo-product-logo {
  width: 64px;
  height: 64px;

  min-width: 64px;

  flex:
    0 0 64px;

  display: block;

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


/* Texto junto al logo */

.tsunamigo-product-brand-copy {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.tsunamigo-product-brand-copy span {
  color:
    rgba(255, 255, 255, 0.68);

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

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.tsunamigo-product-brand-copy strong {
  color: #ffffff;

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

  font-size:
    clamp(1.55rem, 1.75vw, 2rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   08. TÍTULO DEL PRODUCTO
   ========================================================= */

.tsunamigo-product-content h3 {
  max-width: 590px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.15rem, 2.75vw, 3.3rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


/* =========================================================
   09. DESCRIPCIÓN
   ========================================================= */

.tsunamigo-product-description {
  max-width: 580px;

  margin:
    26px 0 0;

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

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

  font-size:
    clamp(1.04rem, 1.12vw, 1.18rem);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   10. BOTONES
   ========================================================= */

.tsunamigo-product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 31px;
}


/* =========================================================
   11. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1100px) {

  .tsunamigo-product-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);

    gap: 44px;

    padding:
      42px;
  }


  .tsunamigo-product-visual {
    min-height: 380px;
  }


  .tsunamigo-product-content h3 {
    font-size:
      clamp(2rem, 3.6vw, 2.9rem);
  }


  .tsunamigo-product-logo {
    width: 58px;
    height: 58px;

    min-width: 58px;

    flex-basis: 58px;
  }

}


/* =========================================================
   12. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .tsunamigo-showcase-section {
    padding:
      72px 0;
  }


  .tsunamigo-showcase-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .tsunamigo-showcase-header {
    margin-bottom: 50px;
  }


  .tsunamigo-showcase-header h2 {
    font-size:
      clamp(2.35rem, 7vw, 3.3rem);
  }


  .tsunamigo-product-card {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      42px 34px;
  }


  .tsunamigo-product-visual,
  .tsunami-product-card-reverse
  .tsunamigo-product-visual {
    order: 1;
  }


  .tsunamigo-product-content,
  .tsunami-product-card-reverse
  .tsunamigo-product-content {
    order: 2;

    max-width: none;
  }


  .tsunamigo-product-visual {
    min-height: 360px;
  }


  .tsunamigo-product-content h3 {
    max-width: 650px;

    font-size:
      clamp(2.05rem, 7vw, 3rem);
  }


  .tsunamigo-product-description {
    max-width: 650px;
  }


  .tsunami-app-image {
    max-height: 560px;
  }

}


/* =========================================================
   13. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .tsunamigo-showcase-section {
    padding:
      54px 0;
  }


  .tsunamigo-showcase-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .tsunamigo-showcase-header {
    margin-bottom: 40px;

    text-align: left;
  }


  .tsunamigo-showcase-header h2 {
    font-size:
      clamp(2.05rem, 9vw, 2.75rem);
  }


  .tsunamigo-showcase-header > p:last-child {
    margin-top: 20px;

    font-size:
      clamp(1rem, 4.4vw, 1.1rem);
  }


  .tsunamigo-product-card {
    gap: 30px;

    margin-top: 26px;

    padding:
      28px 20px;

    border-radius: 22px;
  }


  .tsunamigo-product-visual {
    min-height: 280px;

    border-radius: 17px;
  }


  .tsunami-web-image {
    padding: 10px;
  }


  .tsunami-app-image {
    max-height: 470px;

    padding: 6px;
  }


  .tsunamigo-product-brand {
    margin-bottom: 24px;
  }


  .tsunamigo-product-logo {
    width: 52px;
    height: 52px;

    min-width: 52px;

    flex-basis: 52px;
  }


  .tsunamigo-product-brand-copy strong {
    font-size:
      clamp(1.38rem, 6.2vw, 1.7rem);
  }


  .tsunamigo-product-content h3 {
    font-size:
      clamp(1.9rem, 8.6vw, 2.55rem);
  }


  .tsunamigo-product-description {
    margin-top: 22px;

    font-size:
      clamp(0.99rem, 4.35vw, 1.08rem);

    line-height: 1.62;
  }


  .tsunamigo-product-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 12px;

    margin-top: 26px;
  }


  .tsunamigo-product-actions
  .subpage-button {
    width: 100%;
  }

}


/* =========================================================
   14. PANTALLAS MUY ANCHAS
   ========================================================= */

@media (min-width: 1600px) {

  .tsunamigo-showcase-container {
    width:
      min(
        88%,
        var(--subpage-max-width)
      );
  }


  .tsunamigo-product-visual {
    min-height: 470px;
  }

}


/* =========================================================
   15. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .tsunamigo-product-brand {
    transition: none;
  }

}
/* =========================================================
   GEOMORFOLOGÍA SUBMARINA
   HISTORIA VISUAL DE LA INVESTIGACIÓN

   Página:
   /investigacion/geomorfologia-submarina/

   Componentes:
   - Encabezado de historia
   - 7 etapas visuales
   - Integración de MorphoFlow
   - MorphoFlow IA Analytics
   - Cierre con enlaces
   ========================================================= */


/* =========================================================
   01. SECCIÓN GENERAL
   ========================================================= */

.morphology-story-section {
  position: relative;

  width: 100%;

  padding:
    clamp(88px, 8vw, 140px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(40, 170, 255, 0.14),
      transparent 30rem
    ),
    radial-gradient(
      circle at 88% 74%,
      rgba(255, 122, 0, 0.08),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 56%,
      #092746 100%
    );

  border-top:
    1px solid rgba(40, 170, 255, 0.18);
}


/* Retícula geoespacial tenue */

.morphology-story-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

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

  background-size:
    58px 58px;
}


/* =========================================================
   02. CONTENEDOR GENERAL
   ========================================================= */

.morphology-story-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;
}


/* =========================================================
   03. ENCABEZADO DE LA HISTORIA
   ========================================================= */

.morphology-story-header {
  width: 100%;
  max-width: 980px;

  margin:
    0 auto
    clamp(58px, 6vw, 90px);

  text-align: center;
}


.morphology-story-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.morphology-story-header h2 {
  max-width: 920px;

  margin: 0 auto;

  color: #ffffff;

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

  font-size:
    clamp(2.55rem, 3.55vw, 4.25rem);

  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.045em;
}


.morphology-story-header > p:last-child {
  max-width: 780px;

  margin:
    24px auto 0;

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

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

  font-size:
    clamp(1.05rem, 1.18vw, 1.24rem);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   04. TARJETAS DE LA HISTORIA
   ========================================================= */

.morphology-story-card {
  width: 100%;

  margin-top:
    clamp(34px, 4vw, 54px);

  padding:
    clamp(34px, 4.7vw, 66px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);

  align-items: center;

  gap:
    clamp(46px, 6vw, 92px);

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);

  backdrop-filter:
    blur(12px);
}


/* Primera tarjeta */

.morphology-story-header
+
.morphology-story-card {
  margin-top: 0;
}


/* Alternar imagen y texto */

.morphology-story-card-reverse
.morphology-story-visual {
  order: 2;
}


.morphology-story-card-reverse
.morphology-story-content {
  order: 1;
}


/* =========================================================
   05. BLOQUE VISUAL
   ========================================================= */

.morphology-story-visual {
  position: relative;

  width: 100%;
  min-height: 390px;

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

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(40, 170, 255, 0.1),
      transparent 68%
    ),
    rgba(0, 0, 0, 0.2);
}


.morphology-story-visual img {
  display: block;

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

  height: auto;
  max-height: 620px;

  padding:
    clamp(14px, 2vw, 28px);

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

  filter:
    drop-shadow(
      0 26px 38px rgba(0, 0, 0, 0.38)
    );
}


/* Figura grande de datos de entrada */

.morphology-product-card
.morphology-story-visual img {
  max-width: 860px;
}


/* =========================================================
   06. CONTENIDO DE LAS TARJETAS
   ========================================================= */

.morphology-story-content {
  width: 100%;
  max-width: 610px;
}


.morphology-story-step {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.morphology-story-content h3 {
  max-width: 600px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.1rem, 2.7vw, 3.25rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


.morphology-story-content > p:not(.morphology-story-step) {
  max-width: 590px;

  margin:
    25px 0 0;

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

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

  font-size:
    clamp(1.03rem, 1.11vw, 1.18rem);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   07. ESTADO DEL MANUSCRITO
   ========================================================= */

.morphology-story-status {
  width: fit-content;

  margin-top: 26px;

  padding:
    10px 15px;

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

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

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

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

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.07);
}


/* =========================================================
   08. INTRODUCCIÓN A MORPHOFLOW
   ========================================================= */

.morphology-technology-intro {
  width: 100%;

  margin:
    clamp(62px, 7vw, 100px)
    0
    clamp(36px, 4vw, 54px);

  padding:
    clamp(34px, 4vw, 58px);

  display: grid;

  grid-template-columns:
    minmax(280px, 0.78fr)
    minmax(0, 1.22fr);

  align-items: center;

  gap:
    clamp(34px, 5vw, 70px);

  border:
    1px solid rgba(255, 122, 0, 0.32);

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 0, 0.08),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26);
}


.morphology-technology-intro > p {
  margin: 0;

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

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

  font-size:
    clamp(1.04rem, 1.14vw, 1.2rem);

  font-weight: 400;
  line-height: 1.66;
}


/* Botón dentro de la introducción */

.morphology-technology-intro
.subpage-button {
  grid-column:
    2 / 3;

  width: fit-content;
}


/* =========================================================
   09. MARCA MORPHOFLOW PRINCIPAL
   ========================================================= */

.morphology-technology-brand {
  width: fit-content;
  max-width: 100%;

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

  gap: 16px;

  color: #ffffff;
  text-decoration: none;

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


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

  opacity: 0.96;
}


.morphology-technology-brand img {
  width: 72px;
  height: 72px;

  min-width: 72px;

  flex:
    0 0 72px;

  object-fit: contain;
}


.morphology-technology-brand > span {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.morphology-technology-brand small {
  color:
    rgba(255, 255, 255, 0.66);

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.morphology-technology-brand strong {
  color: #ffffff;

  font-size:
    clamp(1.65rem, 1.9vw, 2.2rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   10. MARCA MORPHOFLOW DENTRO DE CADA TARJETA
   ========================================================= */

.morphology-inline-brand {
  width: fit-content;
  max-width: 100%;

  margin-bottom: 25px;

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

  gap: 14px;

  color: #ffffff;
  text-decoration: none;

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


.morphology-inline-brand:hover,
.morphology-inline-brand:focus-visible {
  transform:
    translateY(-2px);

  opacity: 0.95;
}


.morphology-inline-brand > img {
  width: 56px;
  height: 56px;

  min-width: 56px;

  flex:
    0 0 56px;

  object-fit: contain;
}


.morphology-inline-brand > strong,
.morphology-inline-brand span > strong {
  color: #ffffff;

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

  font-size:
    clamp(1.45rem, 1.6vw, 1.82rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


.morphology-inline-brand > span {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.morphology-inline-brand small {
  color:
    var(--subpage-orange);

  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.2;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* =========================================================
   11. ENLACES DE TEXTO
   ========================================================= */

.morphology-text-link {
  width: fit-content;

  margin-top: 26px;

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

  gap: 10px;

  color:
    var(--subpage-blue);

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

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

  text-decoration: none;

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


.morphology-text-link:hover,
.morphology-text-link:focus-visible {
  color: #ffffff;

  transform:
    translateX(3px);
}


/* =========================================================
   12. TARJETAS DE PRODUCTOS MORPHOFLOW
   ========================================================= */

.morphology-product-card {
  border-color:
    rgba(40, 170, 255, 0.2);

  background:
    linear-gradient(
      145deg,
      rgba(40, 170, 255, 0.075),
      rgba(255, 255, 255, 0.035)
    );
}


/* =========================================================
   13. MORPHOFLOW IA ANALYTICS
   ========================================================= */

.morphology-ai-card {
  border-color:
    rgba(255, 122, 0, 0.34);

  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 122, 0, 0.12),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 122, 0, 0.08),
      rgba(255, 255, 255, 0.04)
    );
}


.morphology-ai-card
.morphology-story-visual {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 122, 0, 0.1),
      transparent 68%
    ),
    rgba(0, 0, 0, 0.2);
}


/* =========================================================
   14. CIERRE DE LA HISTORIA
   ========================================================= */

.morphology-story-closing {
  width: 100%;

  margin-top:
    clamp(62px, 7vw, 100px);

  padding:
    clamp(40px, 5vw, 72px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(300px, 0.8fr);

  align-items: center;

  gap:
    clamp(40px, 6vw, 90px);

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);
}


.morphology-story-closing h2 {
  max-width: 760px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.25rem, 3vw, 3.65rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


.morphology-story-closing
.morphology-story-eyebrow {
  margin-bottom: 18px;
}


.morphology-story-closing
p:last-child {
  max-width: 750px;

  margin:
    24px 0 0;

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

  font-size:
    clamp(1.04rem, 1.13vw, 1.19rem);

  line-height: 1.65;
}


.morphology-story-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;

  gap: 14px;
}


.morphology-story-actions
.subpage-button {
  width: 100%;
}


/* =========================================================
   15. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1100px) {

  .morphology-story-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);

    gap: 44px;

    padding:
      42px;
  }


  .morphology-story-visual {
    min-height: 350px;
  }


  .morphology-story-content h3 {
    font-size:
      clamp(2rem, 3.5vw, 2.9rem);
  }


  .morphology-technology-intro {
    grid-template-columns:
      minmax(250px, 0.75fr)
      minmax(0, 1.25fr);
  }


  .morphology-story-closing {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);
  }

}


/* =========================================================
   16. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .morphology-story-section {
    padding:
      72px 0;
  }


  .morphology-story-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .morphology-story-header {
    margin-bottom: 50px;
  }


  .morphology-story-header h2 {
    font-size:
      clamp(2.35rem, 7vw, 3.3rem);
  }


  .morphology-story-card {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      42px 34px;
  }


  .morphology-story-visual,
  .morphology-story-card-reverse
  .morphology-story-visual {
    order: 1;
  }


  .morphology-story-content,
  .morphology-story-card-reverse
  .morphology-story-content {
    order: 2;

    max-width: none;
  }


  .morphology-story-visual {
    min-height: 330px;
  }


  .morphology-story-content h3 {
    max-width: 650px;

    font-size:
      clamp(2.05rem, 7vw, 3rem);
  }


  .morphology-story-content > p:not(.morphology-story-step) {
    max-width: 650px;
  }


  .morphology-technology-intro {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .morphology-technology-intro
  .subpage-button {
    grid-column: auto;
  }


  .morphology-story-closing {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  .morphology-story-actions {
    align-items: flex-start;
  }


  .morphology-story-actions
  .subpage-button {
    width: fit-content;
  }

}


/* =========================================================
   17. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .morphology-story-section {
    padding:
      54px 0;
  }


  .morphology-story-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .morphology-story-header {
    margin-bottom: 40px;

    text-align: left;
  }


  .morphology-story-header h2 {
    font-size:
      clamp(2.05rem, 9vw, 2.75rem);
  }


  .morphology-story-header > p:last-child {
    margin-top: 20px;

    font-size:
      clamp(1rem, 4.4vw, 1.1rem);
  }


  .morphology-story-card {
    gap: 30px;

    margin-top: 26px;

    padding:
      28px 20px;

    border-radius: 22px;
  }


  .morphology-story-visual {
    min-height: 260px;

    border-radius: 17px;
  }


  .morphology-story-visual img {
    max-height: 460px;

    padding: 10px;
  }


  .morphology-story-content h3 {
    font-size:
      clamp(1.9rem, 8.6vw, 2.55rem);
  }


  .morphology-story-content > p:not(.morphology-story-step) {
    margin-top: 21px;

    font-size:
      clamp(0.99rem, 4.35vw, 1.08rem);

    line-height: 1.62;
  }


  .morphology-technology-intro {
    margin-top: 42px;

    padding:
      28px 20px;

    border-radius: 22px;
  }


  .morphology-technology-brand img {
    width: 58px;
    height: 58px;

    min-width: 58px;

    flex-basis: 58px;
  }


  .morphology-technology-brand strong {
    font-size:
      clamp(1.45rem, 6.5vw, 1.8rem);
  }


  .morphology-inline-brand > img {
    width: 50px;
    height: 50px;

    min-width: 50px;

    flex-basis: 50px;
  }


  .morphology-story-closing {
    margin-top: 44px;

    padding:
      32px 22px;

    border-radius: 22px;
  }


  .morphology-story-closing h2 {
    font-size:
      clamp(2rem, 8.8vw, 2.65rem);
  }


  .morphology-story-closing
  p:last-child {
    font-size:
      clamp(1rem, 4.35vw, 1.09rem);
  }


  .morphology-story-actions {
    align-items: stretch;
  }


  .morphology-story-actions
  .subpage-button {
    width: 100%;
  }

}


/* =========================================================
   18. PANTALLAS MUY ANCHAS
   ========================================================= */

@media (min-width: 1600px) {

  .morphology-story-container {
    width:
      min(
        88%,
        var(--subpage-max-width)
      );
  }


  .morphology-story-visual {
    min-height: 440px;
  }

}


/* =========================================================
   19. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .morphology-technology-brand,
  .morphology-inline-brand,
  .morphology-text-link {
    transition: none;
  }

}
/* =========================================================
   GEOFÍSICA MARINA — HISTORIA VISUAL SAC HEAD

   Página:
   /investigacion/geofisica-marina/

   Componentes:
   - Historia visual de la investigación
   - Campaña CHIRP
   - Productos ChirpView
   - Integración territorial y portuaria
   ========================================================= */


/* =========================================================
   01. SECCIÓN GENERAL
   ========================================================= */

.marine-story-section {
  position: relative;

  width: 100%;

  padding:
    clamp(88px, 8vw, 140px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 17% 18%,
      rgba(35, 167, 255, 0.15),
      transparent 31rem
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 122, 0, 0.08),
      transparent 28rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 56%,
      #092746 100%
    );

  border-top:
    1px solid rgba(35, 167, 255, 0.18);
}


/* Retícula tecnológica y sísmica tenue */

.marine-story-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.12;

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

  background-size:
    58px 58px;
}


/* Resplandor vertical suave */

.marine-story-section::after {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: 1px;
  height: 100%;

  pointer-events: none;

  opacity: 0.16;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(35, 167, 255, 0.75),
      transparent
    );
}


/* =========================================================
   02. CONTENEDOR GENERAL
   ========================================================= */

.marine-story-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width)
    );

  margin-inline: auto;
}


/* =========================================================
   03. ENCABEZADO DE LA HISTORIA
   ========================================================= */

.marine-story-header {
  width: 100%;
  max-width: 980px;

  margin:
    0 auto
    clamp(58px, 6vw, 90px);

  text-align: center;
}


.marine-story-eyebrow {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.17em;
  text-transform: uppercase;
}


.marine-story-header h2 {
  max-width: 920px;

  margin: 0 auto;

  color: #ffffff;

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

  font-size:
    clamp(2.55rem, 3.55vw, 4.25rem);

  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.045em;
}


.marine-story-header > p:last-child {
  max-width: 790px;

  margin:
    24px auto 0;

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

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

  font-size:
    clamp(1.05rem, 1.18vw, 1.24rem);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   04. TARJETAS GENERALES
   ========================================================= */

.marine-story-card {
  width: 100%;

  margin-top:
    clamp(34px, 4vw, 54px);

  padding:
    clamp(34px, 4.7vw, 66px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(360px, 0.92fr);

  align-items: center;

  gap:
    clamp(46px, 6vw, 92px);

  border:
    1px solid rgba(255, 255, 255, 0.14);

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);

  backdrop-filter:
    blur(12px);
}


/* Primera tarjeta sin margen superior adicional */

.marine-story-header
+
.marine-story-card {
  margin-top: 0;
}


/* Distribución alternada */

.marine-story-card-reverse
.marine-story-visual {
  order: 2;
}


.marine-story-card-reverse
.marine-story-content {
  order: 1;
}


/* =========================================================
   05. ÁREA VISUAL
   ========================================================= */

.marine-story-visual {
  position: relative;

  width: 100%;
  min-height: 390px;

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

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(35, 167, 255, 0.11),
      transparent 68%
    ),
    rgba(0, 0, 0, 0.2);
}


.marine-story-visual::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      transparent 35%,
      rgba(0, 0, 0, 0.08)
    );
}


.marine-story-visual img {
  position: relative;
  z-index: 1;

  display: block;

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

  height: auto;
  max-height: 650px;

  padding:
    clamp(14px, 2vw, 28px);

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

  filter:
    drop-shadow(
      0 26px 38px rgba(0, 0, 0, 0.38)
    );
}


/* =========================================================
   06. CONTENIDO DE LAS TARJETAS
   ========================================================= */

.marine-story-content {
  width: 100%;
  max-width: 610px;
}


.marine-story-step {
  margin: 0 0 18px;

  color:
    var(--subpage-orange);

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

  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.marine-story-content h3 {
  max-width: 600px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.1rem, 2.7vw, 3.25rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


.marine-story-content > p:not(.marine-story-step) {
  max-width: 590px;

  margin:
    25px 0 0;

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

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

  font-size:
    clamp(1.03rem, 1.11vw, 1.18rem);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   07. ESTADOS Y ETIQUETAS
   ========================================================= */

.marine-story-status {
  width: fit-content;

  margin-top: 26px;

  padding:
    10px 15px;

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

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

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

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

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

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.07);
}


/* Indicador visual prudente */

.marine-story-status::before {
  content: "";

  width: 8px;
  height: 8px;

  margin-right: 9px;

  flex: 0 0 8px;

  border-radius: 50%;

  background:
    var(--subpage-orange);

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


/* =========================================================
   08. INTRODUCCIÓN A CHIRPVIEW
   ========================================================= */

.marine-technology-intro {
  width: 100%;

  margin:
    clamp(62px, 7vw, 100px)
    0
    clamp(36px, 4vw, 54px);

  padding:
    clamp(34px, 4vw, 58px);

  display: grid;

  grid-template-columns:
    minmax(280px, 0.78fr)
    minmax(0, 1.22fr);

  align-items: center;

  gap:
    clamp(34px, 5vw, 70px);

  border:
    1px solid rgba(35, 167, 255, 0.32);

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(35, 167, 255, 0.09),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.26);
}


.marine-technology-intro > p {
  margin: 0;

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

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

  font-size:
    clamp(1.04rem, 1.14vw, 1.2rem);

  font-weight: 400;
  line-height: 1.66;
}


.marine-technology-intro
.subpage-button {
  grid-column:
    2 / 3;

  width: fit-content;
}


/* =========================================================
   09. MARCA CHIRPVIEW PRINCIPAL
   ========================================================= */

.marine-technology-brand {
  width: fit-content;
  max-width: 100%;

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

  gap: 16px;

  color: #ffffff;
  text-decoration: none;

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


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

  opacity: 0.96;
}


.marine-technology-brand img {
  width: 72px;
  height: 72px;

  min-width: 72px;

  flex:
    0 0 72px;

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


.marine-technology-brand > span {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.marine-technology-brand small {
  color:
    rgba(255, 255, 255, 0.66);

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

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.marine-technology-brand strong {
  color: #ffffff;

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

  font-size:
    clamp(1.65rem, 1.9vw, 2.2rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   10. MARCA CHIRPVIEW EN LAS TARJETAS
   ========================================================= */

.marine-inline-brand {
  width: fit-content;
  max-width: 100%;

  margin-bottom: 25px;

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

  gap: 14px;

  color: #ffffff;
  text-decoration: none;

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


.marine-inline-brand:hover,
.marine-inline-brand:focus-visible {
  transform:
    translateY(-2px);

  opacity: 0.95;
}


.marine-inline-brand > img {
  width: 56px;
  height: 56px;

  min-width: 56px;

  flex:
    0 0 56px;

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


.marine-inline-brand > strong {
  color: #ffffff;

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

  font-size:
    clamp(1.45rem, 1.6vw, 1.82rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   11. ENLACES DE TEXTO
   ========================================================= */

.marine-text-link {
  width: fit-content;

  margin-top: 26px;

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

  gap: 10px;

  color:
    var(--subpage-blue);

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

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

  text-decoration: none;

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


.marine-text-link:hover,
.marine-text-link:focus-visible {
  color: #ffffff;

  transform:
    translateX(3px);
}


/* =========================================================
   12. TARJETAS DE PRODUCTOS CHIRPVIEW
   ========================================================= */

.marine-product-card {
  border-color:
    rgba(35, 167, 255, 0.22);

  background:
    linear-gradient(
      145deg,
      rgba(35, 167, 255, 0.08),
      rgba(255, 255, 255, 0.035)
    );
}


.marine-product-card
.marine-story-visual {
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(35, 167, 255, 0.13),
      transparent 70%
    ),
    rgba(0, 0, 0, 0.2);
}


/* =========================================================
   13. INTEGRACIÓN TERRITORIAL
   ========================================================= */

.marine-integration-card {
  border-color:
    rgba(255, 122, 0, 0.32);

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(255, 122, 0, 0.1),
      transparent 24rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 122, 0, 0.07),
      rgba(255, 255, 255, 0.04)
    );
}


.marine-integration-card
.marine-story-visual {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 122, 0, 0.1),
      transparent 68%
    ),
    rgba(0, 0, 0, 0.2);
}


/* =========================================================
   14. CIERRE DE LA HISTORIA
   ========================================================= */

.marine-story-closing {
  width: 100%;

  margin-top:
    clamp(62px, 7vw, 100px);

  padding:
    clamp(40px, 5vw, 72px);

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(300px, 0.8fr);

  align-items: center;

  gap:
    clamp(40px, 6vw, 90px);

  border:
    1px solid rgba(255, 255, 255, 0.15);

  border-radius: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.04)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3);
}


.marine-story-closing h2 {
  max-width: 760px;

  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.25rem, 3vw, 3.65rem);

  font-weight: 850;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


.marine-story-closing
.marine-story-eyebrow {
  margin-bottom: 18px;
}


.marine-story-closing
p:last-child {
  max-width: 750px;

  margin:
    24px 0 0;

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

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

  font-size:
    clamp(1.04rem, 1.13vw, 1.19rem);

  line-height: 1.65;
}


.marine-story-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;

  gap: 14px;
}


.marine-story-actions
.subpage-button {
  width: 100%;
}


/* =========================================================
   15. AJUSTES ESPECÍFICOS DE LAS FIGURAS
   ========================================================= */

/* Imagen vertical del mapa de perfiles */

.marine-story-card:nth-of-type(2)
.marine-story-visual img {
  max-height: 690px;
}


/* Fotografía del instrumento */

.marine-story-card:nth-of-type(3)
.marine-story-visual img {
  max-width: 760px;
}


/* Fotografía del equipo de campaña */

.marine-story-card:nth-of-type(4)
.marine-story-visual img {
  max-height: 700px;
}


/* Perfil L58 */

.marine-product-card
.marine-story-visual img {
  max-width: 900px;
}


/* Integración puerto y batimetría */

.marine-integration-card
.marine-story-visual img {
  max-width: 920px;
}


/* =========================================================
   16. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1100px) {

  .marine-story-card {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);

    gap: 44px;

    padding:
      42px;
  }


  .marine-story-visual {
    min-height: 350px;
  }


  .marine-story-content h3 {
    font-size:
      clamp(2rem, 3.5vw, 2.9rem);
  }


  .marine-technology-intro {
    grid-template-columns:
      minmax(250px, 0.75fr)
      minmax(0, 1.25fr);
  }


  .marine-story-closing {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.72fr);
  }

}


/* =========================================================
   17. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .marine-story-section {
    padding:
      72px 0;
  }


  .marine-story-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .marine-story-header {
    margin-bottom: 50px;
  }


  .marine-story-header h2 {
    font-size:
      clamp(2.35rem, 7vw, 3.3rem);
  }


  .marine-story-card {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      42px 34px;
  }


  .marine-story-visual,
  .marine-story-card-reverse
  .marine-story-visual {
    order: 1;
  }


  .marine-story-content,
  .marine-story-card-reverse
  .marine-story-content {
    order: 2;

    max-width: none;
  }


  .marine-story-visual {
    min-height: 330px;
  }


  .marine-story-content h3 {
    max-width: 650px;

    font-size:
      clamp(2.05rem, 7vw, 3rem);
  }


  .marine-story-content > p:not(.marine-story-step) {
    max-width: 650px;
  }


  .marine-technology-intro {
    grid-template-columns: 1fr;

    gap: 28px;
  }


  .marine-technology-intro
  .subpage-button {
    grid-column: auto;
  }


  .marine-story-closing {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  .marine-story-actions {
    align-items: flex-start;
  }


  .marine-story-actions
  .subpage-button {
    width: fit-content;
  }

}


/* =========================================================
   18. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .marine-story-section {
    padding:
      54px 0;
  }


  .marine-story-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .marine-story-header {
    margin-bottom: 40px;

    text-align: left;
  }


  .marine-story-header h2 {
    font-size:
      clamp(2.05rem, 9vw, 2.75rem);
  }


  .marine-story-header > p:last-child {
    margin-top: 20px;

    font-size:
      clamp(1rem, 4.4vw, 1.1rem);
  }


  .marine-story-card {
    gap: 30px;

    margin-top: 26px;

    padding:
      28px 20px;

    border-radius: 22px;
  }


  .marine-story-visual {
    min-height: 260px;

    border-radius: 17px;
  }


  .marine-story-visual img {
    max-height: 470px;

    padding: 10px;
  }


  .marine-story-content h3 {
    font-size:
      clamp(1.9rem, 8.6vw, 2.55rem);
  }


  .marine-story-content > p:not(.marine-story-step) {
    margin-top: 21px;

    font-size:
      clamp(0.99rem, 4.35vw, 1.08rem);

    line-height: 1.62;
  }


  .marine-technology-intro {
    margin-top: 42px;

    padding:
      28px 20px;

    border-radius: 22px;
  }


  .marine-technology-brand img {
    width: 58px;
    height: 58px;

    min-width: 58px;

    flex-basis: 58px;
  }


  .marine-technology-brand strong {
    font-size:
      clamp(1.45rem, 6.5vw, 1.8rem);
  }


  .marine-inline-brand > img {
    width: 50px;
    height: 50px;

    min-width: 50px;

    flex-basis: 50px;
  }


  .marine-story-closing {
    margin-top: 44px;

    padding:
      32px 22px;

    border-radius: 22px;
  }


  .marine-story-closing h2 {
    font-size:
      clamp(2rem, 8.8vw, 2.65rem);
  }


  .marine-story-closing
  p:last-child {
    font-size:
      clamp(1rem, 4.35vw, 1.09rem);
  }


  .marine-story-actions {
    align-items: stretch;
  }


  .marine-story-actions
  .subpage-button {
    width: 100%;
  }

}


/* =========================================================
   19. PANTALLAS MUY ANCHAS
   ========================================================= */

@media (min-width: 1600px) {

  .marine-story-container {
    width:
      min(
        88%,
        var(--subpage-max-width)
      );
  }


  .marine-story-visual {
    min-height: 440px;
  }

}


/* =========================================================
   20. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .marine-technology-brand,
  .marine-inline-brand,
  .marine-text-link {
    transition: none;
  }

}
/* =========================================================
   SOLUCIÓN:
   DIAGNÓSTICO OPERATIVO DE EVACUACIÓN

   Página:
   /soluciones/diagnostico-operativo-evacuacion/

   Componentes:
   - Descripción de la solución
   - Servicios GEOPLOT
   - Entregables
   - Franja tecnológica IROE-1
   - Solicitud de cotización
   ========================================================= */


/* =========================================================
   01. VARIABLES Y AJUSTES GENERALES
   ========================================================= */

/* =========================================================
   VARIABLES COMPARTIDAS DE LAS PÁGINAS DE SOLUCIONES

   Estas variables deben aplicarse a todas las soluciones
   que utilizan la plantilla comercial compartida.
   ========================================================= */

.evacuation-diagnosis-page,
.tsunami-preparation-page,
.morphoflow-solution-page,
.chirpview-solution-page,
.censusanalytics-solution-page {
  --solution-navy: #020914;
  --solution-navy-soft: #06172d;
  --solution-blue: #1ea7ff;
  --solution-blue-soft: #dff3ff;
  --solution-orange: #ff7a00;
  --solution-white: #ffffff;

  --solution-text: #102033;
  --solution-text-soft: #536579;

  --solution-border:
    rgba(10, 42, 75, 0.13);

  --solution-background-soft:
    #f3f7fb;

  --solution-radius-large:
    28px;

  --solution-radius-medium:
    20px;

  --solution-shadow:
    0 24px 70px rgba(4, 23, 45, 0.1);
}

/* =========================================================
   02. DESCRIPCIÓN DE LA SOLUCIÓN
   ========================================================= */

.solution-description-section {
  position: relative;
  overflow: hidden;
}


.solution-description-section::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  pointer-events: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 167, 255, 0.08),
      transparent 70%
    );
}


/* =========================================================
   03. SERVICIOS GEOPLOT
   ========================================================= */

.solution-services-section {
  position: relative;

  width: 100%;

  padding:
    clamp(82px, 8vw, 132px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f7faff 0%,
      #eef5fb 100%
    );

  border-top:
    1px solid rgba(10, 42, 75, 0.08);

  border-bottom:
    1px solid rgba(10, 42, 75, 0.08);
}


.solution-services-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.38;

  background-image:
    linear-gradient(
      rgba(15, 89, 145, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 89, 145, 0.035) 1px,
      transparent 1px
    );

  background-size:
    64px 64px;
}


.solution-services-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width, 1280px)
    );

  margin-inline: auto;
}


/* =========================================================
   04. ENCABEZADOS DE SECCIÓN
   ========================================================= */

.solution-section-header {
  width: 100%;
  max-width: 900px;

  margin:
    0 auto
    clamp(48px, 5vw, 74px);

  text-align: center;
}


.solution-section-header-left {
  max-width: 780px;

  margin-left: 0;

  text-align: left;
}


.solution-section-eyebrow {
  margin: 0 0 16px;

  color:
    var(--subpage-orange, #ff7a00);

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

  font-size: 0.79rem;
  font-weight: 900;
  line-height: 1.35;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}


.solution-section-header h2 {
  margin: 0;

  color:
    var(--solution-text);

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

  font-size:
    clamp(2.45rem, 3.6vw, 4.15rem);

  font-weight: 850;
  line-height: 1.06;

  letter-spacing: -0.045em;
}


.solution-section-header > p:last-child {
  max-width: 760px;

  margin:
    22px auto 0;

  color:
    var(--solution-text-soft);

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

  font-size:
    clamp(1.04rem, 1.14vw, 1.2rem);

  font-weight: 400;
  line-height: 1.66;
}


.solution-section-header-left > p:last-child {
  margin-left: 0;
}


/* =========================================================
   05. GRILLA DE SERVICIOS
   ========================================================= */

.solution-services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(18px, 2vw, 28px);
}


.solution-service-card {
  position: relative;

  min-height: 270px;

  padding:
    clamp(28px, 2.7vw, 38px);

  overflow: hidden;

  border:
    1px solid rgba(11, 65, 105, 0.12);

  border-radius:
    var(--solution-radius-medium);

  background:
    rgba(255, 255, 255, 0.9);

  box-shadow:
    0 16px 42px rgba(6, 39, 70, 0.07);

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


.solution-service-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--subpage-orange, #ff7a00),
      var(--subpage-blue, #28aaff)
    );
}


.solution-service-card::after {
  content: "";

  position: absolute;
  right: -70px;
  bottom: -70px;

  width: 180px;
  height: 180px;

  pointer-events: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 167, 255, 0.08),
      transparent 68%
    );
}


.solution-service-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(30, 167, 255, 0.28);

  box-shadow:
    0 24px 54px rgba(6, 39, 70, 0.12);
}


.solution-service-number {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 28px;

  color:
    var(--subpage-orange, #ff7a00);

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

  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;

  letter-spacing: 0.12em;
}


.solution-service-card h3 {
  position: relative;
  z-index: 2;

  margin: 0;

  color:
    var(--solution-text);

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

  font-size:
    clamp(1.35rem, 1.5vw, 1.7rem);

  font-weight: 850;
  line-height: 1.17;

  letter-spacing: -0.025em;
}


.solution-service-card p {
  position: relative;
  z-index: 2;

  margin:
    18px 0 0;

  color:
    var(--solution-text-soft);

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

  font-size:
    clamp(0.98rem, 1vw, 1.06rem);

  font-weight: 400;
  line-height: 1.62;
}


/* =========================================================
   06. ENTREGABLES
   ========================================================= */

.solution-deliverables-section {
  position: relative;

  width: 100%;

  padding:
    clamp(82px, 8vw, 132px)
    0;

  overflow: hidden;

  background:
    #ffffff;
}


.solution-deliverables-section::before {
  content: "";

  position: absolute;
  top: -220px;
  left: -180px;

  width: 500px;
  height: 500px;

  pointer-events: none;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 167, 255, 0.07),
      transparent 70%
    );
}


.solution-deliverables-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width, 1280px)
    );

  margin-inline: auto;
}


.solution-deliverables-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(24px, 3vw, 40px);
}


.solution-deliverable-panel {
  position: relative;

  padding:
    clamp(34px, 4vw, 54px);

  overflow: hidden;

  border:
    1px solid var(--solution-border);

  border-radius:
    var(--solution-radius-large);

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #f6faff 100%
    );

  box-shadow:
    var(--solution-shadow);
}


.solution-deliverable-panel:nth-child(2) {
  background:
    linear-gradient(
      145deg,
      #06172d 0%,
      #092947 100%
    );

  border-color:
    rgba(30, 167, 255, 0.22);
}


.solution-deliverable-panel::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 5px;

  background:
    linear-gradient(
      90deg,
      var(--subpage-orange, #ff7a00),
      var(--subpage-blue, #28aaff)
    );
}


.solution-deliverable-label {
  margin: 0 0 15px;

  color:
    var(--subpage-orange, #ff7a00);

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

  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


.solution-deliverable-panel h3 {
  margin: 0;

  color:
    var(--solution-text);

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

  font-size:
    clamp(1.8rem, 2.2vw, 2.7rem);

  font-weight: 850;
  line-height: 1.1;

  letter-spacing: -0.04em;
}


.solution-deliverable-panel:nth-child(2) h3 {
  color: #ffffff;
}


.solution-deliverable-list {
  margin:
    30px 0 0;

  padding: 0;

  display: grid;

  gap: 15px;

  list-style: none;
}


.solution-deliverable-list li {
  position: relative;

  padding-left: 30px;

  color:
    var(--solution-text-soft);

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

  font-size:
    clamp(0.99rem, 1.03vw, 1.08rem);

  font-weight: 500;
  line-height: 1.5;
}


.solution-deliverable-list li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  color:
    var(--subpage-blue, #28aaff);

  font-weight: 900;
}


.solution-deliverable-panel:nth-child(2)
.solution-deliverable-list li {
  color:
    rgba(255, 255, 255, 0.82);
}


.solution-deliverable-panel:nth-child(2)
.solution-deliverable-list li::before {
  color:
    var(--subpage-orange, #ff7a00);
}


/* =========================================================
   07. FRANJA TECNOLÓGICA IROE-1
   ========================================================= */

.solution-technology-strip {
  position: relative;

  width: 100%;

  padding:
    clamp(28px, 3vw, 42px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    linear-gradient(
      110deg,
      #020914 0%,
      #061b33 55%,
      #08345a 100%
    );

  border-top:
    1px solid rgba(30, 167, 255, 0.2);

  border-bottom:
    1px solid rgba(30, 167, 255, 0.2);
}


.solution-technology-strip::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(30, 167, 255, 0.13),
      transparent 24rem
    ),
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.025),
      transparent
    );
}


.solution-technology-strip-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width, 1280px)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(260px, 0.72fr)
    minmax(0, 1.1fr)
    auto;

  align-items: center;

  gap:
    clamp(24px, 4vw, 56px);
}


/* Marca tecnológica */

.solution-technology-brand {
  width: fit-content;
  max-width: 100%;

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

  gap: 15px;

  color: #ffffff;
  text-decoration: none;

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


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

  opacity: 0.95;
}


.solution-technology-brand img {
  width: 66px;
  height: 66px;

  min-width: 66px;

  flex:
    0 0 66px;

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


.solution-technology-brand > span {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.solution-technology-brand small {
  color:
    rgba(255, 255, 255, 0.62);

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

  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.solution-technology-brand strong {
  color: #ffffff;

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

  font-size:
    clamp(1.45rem, 1.75vw, 2rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


.solution-technology-strip-container > p {
  max-width: 650px;

  margin: 0;

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

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

  font-size:
    clamp(0.98rem, 1.05vw, 1.1rem);

  font-weight: 400;
  line-height: 1.58;
}


.solution-technology-strip
.subpage-button {
  white-space: nowrap;
}


/* =========================================================
   08. SOLICITAR COTIZACIÓN
   ========================================================= */

.solution-quote-section {
  position: relative;

  width: 100%;

  padding:
    clamp(68px, 7vw, 110px)
    0;

  overflow: hidden;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 17% 50%,
      rgba(30, 167, 255, 0.18),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 122, 0, 0.1),
      transparent 23rem
    ),
    linear-gradient(
      135deg,
      #031122 0%,
      #072744 62%,
      #0a395e 100%
    );
}


.solution-quote-section::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;
}


.solution-quote-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--subpage-max-width, 1280px)
    );

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.2fr)
    auto;

  align-items: center;

  gap:
    clamp(36px, 6vw, 90px);
}


.solution-quote-content {
  max-width: 820px;
}


.solution-quote-content
.solution-section-eyebrow {
  color:
    var(--subpage-orange, #ff7a00);
}


.solution-quote-content h2 {
  margin: 0;

  color: #ffffff;

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

  font-size:
    clamp(2.4rem, 3.7vw, 4.3rem);

  font-weight: 850;
  line-height: 1.05;

  letter-spacing: -0.045em;
}


.solution-quote-content > p:last-child {
  max-width: 730px;

  margin:
    23px 0 0;

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

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

  font-size:
    clamp(1.02rem, 1.12vw, 1.18rem);

  font-weight: 400;
  line-height: 1.65;
}


.solution-quote-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.solution-quote-actions
.subpage-button {
  min-width: 220px;
}


/* =========================================================
   09. AJUSTES DEL HERO PARA ESTA SOLUCIÓN
   ========================================================= */

.evacuation-diagnosis-page
.subpage-hero-content {
  max-width: 760px;
}


.evacuation-diagnosis-page
.risk-hero-technology {
  margin-top: 28px;
}


/* =========================================================
   10. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1100px) {

  .solution-services-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .solution-service-card {
    min-height: 245px;
  }


  .solution-technology-strip-container {
    grid-template-columns:
      minmax(240px, 0.78fr)
      minmax(0, 1.22fr);
  }


  .solution-technology-strip
  .subpage-button {
    grid-column:
      1 / -1;

    width: fit-content;
  }


  .solution-quote-container {
    grid-template-columns:
      minmax(0, 1fr)
      auto;
  }

}


/* =========================================================
   11. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .solution-services-section,
  .solution-deliverables-section {
    padding:
      72px 0;
  }


  .solution-services-container,
  .solution-deliverables-container,
  .solution-technology-strip-container,
  .solution-quote-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .solution-section-header,
  .solution-section-header-left {
    max-width: 680px;

    margin-left: 0;

    text-align: left;
  }


  .solution-section-header > p:last-child {
    margin-left: 0;
  }


  .solution-services-grid {
    grid-template-columns: 1fr;
  }


  .solution-service-card {
    min-height: auto;
  }


  .solution-deliverables-grid {
    grid-template-columns: 1fr;
  }


  .solution-technology-strip-container {
    grid-template-columns: 1fr;

    gap: 22px;
  }


  .solution-technology-strip
  .subpage-button {
    grid-column: auto;
  }


  .solution-quote-container {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  .solution-quote-actions {
    justify-content: flex-start;
  }

}


/* =========================================================
   12. CELULAR
   ========================================================= */

@media (max-width: 520px) {

  .solution-services-section,
  .solution-deliverables-section {
    padding:
      56px 0;
  }


  .solution-services-container,
  .solution-deliverables-container,
  .solution-technology-strip-container,
  .solution-quote-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .solution-section-header {
    margin-bottom: 38px;
  }


  .solution-section-header h2 {
    font-size:
      clamp(2rem, 9vw, 2.7rem);
  }


  .solution-service-card {
    padding:
      28px 22px;

    border-radius: 18px;
  }


  .solution-service-number {
    margin-bottom: 22px;
  }


  .solution-deliverable-panel {
    padding:
      30px 22px;

    border-radius: 22px;
  }


  .solution-deliverable-panel h3 {
    font-size:
      clamp(1.7rem, 7vw, 2.25rem);
  }


  .solution-technology-strip {
    padding:
      28px 0;
  }


  .solution-technology-brand img {
    width: 56px;
    height: 56px;

    min-width: 56px;

    flex-basis: 56px;
  }


  .solution-technology-brand strong {
    font-size:
      clamp(1.35rem, 6vw, 1.7rem);
  }


  .solution-technology-strip
  .subpage-button {
    width: 100%;
  }


  .solution-quote-section {
    padding:
      58px 0;
  }


  .solution-quote-content h2 {
    font-size:
      clamp(2.05rem, 9vw, 2.8rem);
  }


  .solution-quote-actions {
    align-items: stretch;
  }


  .solution-quote-actions
  .subpage-button {
    width: 100%;
    min-width: 0;
  }

}


/* =========================================================
   13. PANTALLAS MUY ANCHAS
   ========================================================= */

@media (min-width: 1600px) {

  .solution-services-container,
  .solution-deliverables-container,
  .solution-technology-strip-container,
  .solution-quote-container {
    width:
      min(
        88%,
        var(--subpage-max-width, 1280px)
      );
  }


  .solution-service-card {
    min-height: 285px;
  }

}


/* =========================================================
   14. ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .solution-service-card,
  .solution-technology-brand {
    transition: none;
  }

}
/* =========================================================
   CENSUSANALYTICS — PLANTILLA COMPARTIDA DE SOLUCIONES

   Página:
   /soluciones/inteligencia-censal-territorial/
   ========================================================= */


/* HERO */

.censusanalytics-solution-page
.subpage-hero-content {
  max-width: 760px;
}


.censusanalytics-solution-page
.risk-hero-technology {
  margin-top: 28px;
}


.censusanalytics-solution-page
.risk-hero-technology-logo {
  object-fit: contain;
}


/* CONTENEDORES GENERALES */

.censusanalytics-solution-page
.solution-services-container,

.censusanalytics-solution-page
.solution-deliverables-container,

.censusanalytics-solution-page
.solution-technology-strip-container,

.censusanalytics-solution-page
.solution-quote-container {
  width:
    min(
      88%,
      var(--subpage-max-width, 1440px)
    );

  max-width:
    var(--subpage-max-width, 1440px);

  margin-inline: auto;
}


/* SERVICIOS */

.censusanalytics-solution-page
.solution-services-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(18px, 2vw, 28px);
}


.censusanalytics-solution-page
.solution-service-card {
  width: 100%;
  min-width: 0;
  min-height: 270px;

  color:
    var(--solution-text, #102033);

  border-radius:
    var(--solution-radius-medium, 20px);
}


.censusanalytics-solution-page
.solution-service-card h3 {
  color:
    var(--solution-text, #102033);
}


.censusanalytics-solution-page
.solution-service-card p {
  color:
    var(--solution-text-soft, #536579);
}


.censusanalytics-solution-page
.solution-service-number {
  color:
    var(--subpage-orange, #ff7a00);
}


.censusanalytics-solution-page
.solution-service-card::before {
  background:
    linear-gradient(
      90deg,
      #ff7a00 0%,
      #28aaff 50%,
      #78d5ff 100%
    );
}


/* ENTREGABLES */

.censusanalytics-solution-page
.solution-deliverables-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    clamp(24px, 3vw, 40px);
}


.censusanalytics-solution-page
.solution-deliverable-panel {
  width: 100%;
  min-width: 0;

  border-radius:
    var(--solution-radius-large, 28px);

  box-shadow:
    var(
      --solution-shadow,
      0 24px 70px rgba(4, 23, 45, 0.1)
    );
}


.censusanalytics-solution-page
.solution-deliverable-panel:first-child h3 {
  color:
    var(--solution-text, #102033);
}


.censusanalytics-solution-page
.solution-deliverable-panel:first-child
.solution-deliverable-list li {
  color:
    var(--solution-text-soft, #536579);
}


.censusanalytics-solution-page
.solution-deliverable-panel::before {
  background:
    linear-gradient(
      90deg,
      #ff7a00 0%,
      #28aaff 50%,
      #78d5ff 100%
    );
}


.censusanalytics-solution-page
.solution-deliverable-panel:nth-child(2) {
  background:
    linear-gradient(
      145deg,
      #020914 0%,
      #061b33 55%,
      #0a3f63 100%
    );

  border-color:
    rgba(120, 213, 255, 0.24);
}


/* FRANJA TECNOLÓGICA */

.censusanalytics-solution-page
.solution-technology-strip {
  background:
    radial-gradient(
      circle at 18% 50%,
      rgba(40, 170, 255, 0.15),
      transparent 25rem
    ),
    radial-gradient(
      circle at 76% 50%,
      rgba(120, 213, 255, 0.08),
      transparent 28rem
    ),
    linear-gradient(
      110deg,
      #020914 0%,
      #061b33 55%,
      #0a3f63 100%
    );

  border-top:
    1px solid rgba(120, 213, 255, 0.22);

  border-bottom:
    1px solid rgba(120, 213, 255, 0.22);
}


.censusanalytics-solution-page
.solution-technology-brand img {
  width: 68px;
  height: 68px;

  min-width: 68px;

  flex:
    0 0 68px;

  object-fit: contain;
}


/* COTIZACIÓN */

.censusanalytics-solution-page
.solution-quote-section {
  background:
    radial-gradient(
      circle at 17% 50%,
      rgba(40, 170, 255, 0.18),
      transparent 30rem
    ),
    radial-gradient(
      circle at 84% 20%,
      rgba(120, 213, 255, 0.08),
      transparent 23rem
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(255, 122, 0, 0.07),
      transparent 20rem
    ),
    linear-gradient(
      135deg,
      #031122 0%,
      #07304e 60%,
      #0a4a72 100%
    );
}


/* TABLET */

@media (max-width: 1100px) {

  .censusanalytics-solution-page
  .solution-services-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .censusanalytics-solution-page
  .solution-service-card {
    min-height: 245px;
  }

}


/* TABLET VERTICAL */

@media (max-width: 820px) {

  .censusanalytics-solution-page
  .solution-services-container,

  .censusanalytics-solution-page
  .solution-deliverables-container,

  .censusanalytics-solution-page
  .solution-technology-strip-container,

  .censusanalytics-solution-page
  .solution-quote-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .censusanalytics-solution-page
  .solution-services-grid,

  .censusanalytics-solution-page
  .solution-deliverables-grid {
    grid-template-columns: 1fr;
  }


  .censusanalytics-solution-page
  .solution-service-card {
    min-height: auto;
  }

}


/* CELULAR */

@media (max-width: 520px) {

  .censusanalytics-solution-page
  .solution-services-container,

  .censusanalytics-solution-page
  .solution-deliverables-container,

  .censusanalytics-solution-page
  .solution-technology-strip-container,

  .censusanalytics-solution-page
  .solution-quote-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .censusanalytics-solution-page
  .solution-technology-brand img {
    width: 54px;
    height: 54px;

    min-width: 54px;

    flex-basis: 54px;
  }

}
/* =========================================================
   ANÁLISIS CENSAL — RESULTADOS BOCA SUR
   Tabla única sin imagen duplicada
   ========================================================= */

.census-research-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);

  width: 100%;
}


.census-research-table-wrapper {
  width: 100%;
  max-width: 920px;

  margin-inline: auto;
}
/* =========================================================
   PÁGINA NOSOTROS
   Ruta: /nosotros/
   ========================================================= */


/* =========================================================
   01. VARIABLES GENERALES
   ========================================================= */

.census-research-page,
.about-page {
  --about-bg-dark: #020914;
  --about-bg-dark-soft: #06172d;
  --about-bg-blue: #0a2c4c;

  --about-blue: #1ea7ff;
  --about-blue-soft: #8fd6ff;
  --about-orange: #ff7a00;

  --about-white: #ffffff;
  --about-text: #102033;
  --about-text-soft: #5b6d80;

  --about-border-dark: rgba(255, 255, 255, 0.12);
  --about-border-light: rgba(10, 42, 75, 0.13);

  --about-radius-large: 28px;
  --about-radius-medium: 20px;

  --about-shadow:
    0 24px 70px rgba(4, 23, 45, 0.12);
}


/* =========================================================
   02. CONTENEDOR GENERAL
   ========================================================= */

.about-container {
  width: min(88%, 1440px);
  margin-inline: auto;
}


/* =========================================================
   03. ELEMENTOS DE SECCIÓN
   ========================================================= */

.about-section-number {
  margin: 0 0 10px;

  color: var(--about-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}


.about-section-eyebrow {
  margin: 0 0 18px;

  color: var(--about-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* =========================================================
   04. QUIÉNES SOMOS
   ========================================================= */

.about-introduction-section {
  position: relative;

  padding:
    clamp(90px, 9vw, 150px)
    0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(30, 167, 255, 0.12),
      transparent 28rem
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 122, 0, 0.05),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 55%,
      #0a2c4c 100%
    );
}


.about-introduction-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

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

  background-size: 48px 48px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 15%,
      black 85%,
      transparent
    );
}


.about-introduction-layout {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns:
    minmax(260px, 0.8fr)
    minmax(0, 1.45fr);

  align-items: start;

  gap:
    clamp(50px, 7vw, 110px);
}


.about-section-heading h2 {
  max-width: 540px;

  margin: 0;

  color: var(--about-white);

  font-size:
    clamp(2.5rem, 4.5vw, 4.7rem);

  line-height: 0.98;
  letter-spacing: -0.055em;
}


.about-introduction-content {
  max-width: 900px;
}


.about-introduction-content p {
  margin: 0;

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

  font-size:
    clamp(1.08rem, 1.35vw, 1.34rem);

  line-height: 1.78;
}


.about-introduction-content p + p {
  margin-top: 26px;
}


/* =========================================================
   05. FILOSOFÍA
   ========================================================= */

.about-philosophy-section {
  position: relative;

  min-height: 680px;

  display: flex;
  align-items: center;

  padding:
    clamp(100px, 10vw, 160px)
    0;

  overflow: hidden;

  background: #020914;
}


.about-philosophy-background {
  position: absolute;
  inset: 0;

  background-image:
    url("/assets/images/nosotros/imagenfilosofiafondo_resultado.webp");

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

  transform: scale(1.015);
}


.about-philosophy-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 9, 20, 0.98) 0%,
      rgba(2, 9, 20, 0.93) 30%,
      rgba(2, 9, 20, 0.68) 58%,
      rgba(2, 9, 20, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 9, 20, 0.18) 0%,
      rgba(2, 9, 20, 0.48) 100%
    );
}

.about-philosophy-content {
  width: min(100%, 980px);
}


.about-philosophy-content h2 {
  max-width: 980px;

  margin:
    0
    0
    30px;

  color: var(--about-white);

  font-size:
    clamp(2.4rem, 3.6vw, 4.2rem);

  line-height: 1.04;
  letter-spacing: -0.045em;
}



.about-philosophy-content p {
  margin: 0;

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

  font-size:
    clamp(1.06rem, 1.25vw, 1.28rem);

  line-height: 1.78;
}


.about-philosophy-content p + p {
  margin-top: 24px;
}


/* =========================================================
   06. FUNDADOR
   ========================================================= */

.about-founder-section {
  padding:
    clamp(90px, 9vw, 150px)
    0;

  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef4f8 100%
    );
}


.about-founder-header {
  max-width: 850px;

  margin-bottom:
    clamp(42px, 5vw, 70px);
}


.about-founder-header h2 {
  margin: 0;

  color: var(--about-text);

  font-size:
    clamp(2.4rem, 4vw, 4.4rem);

  line-height: 1.05;
  letter-spacing: -0.05em;
}


.about-founder-card {
  display: grid;

  grid-template-columns:
    minmax(310px, 430px)
    minmax(0, 1fr);

  gap:
    clamp(42px, 6vw, 90px);

  align-items: start;

  padding:
    clamp(28px, 4vw, 54px);

  border:
    1px solid var(--about-border-light);

  border-radius:
    var(--about-radius-large);

  background: #ffffff;

  box-shadow:
    var(--about-shadow);
}


/* =========================================================
   07. IMÁGENES DE PERSONAS
   ========================================================= */

.about-person-image {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  border-radius:
    var(--about-radius-medium);

  background: #ffffff;

  border:
    1px solid rgba(10, 42, 75, 0.1);
}


.about-person-image img {
  width: 100%;
  height: 100%;

  display: block;

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


/*
  IMPORTANTE:
  Felipe y Leandro tienen figuras recortadas con transparencia.
  Este fondo blanco rellena completamente el espacio transparente.
*/

.about-team-grid
.about-person-card:nth-child(1)
.about-person-image,

.about-team-grid
.about-person-card:nth-child(3)
.about-person-image {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fb 100%
    );
}


.about-team-grid
.about-person-card:nth-child(1)
.about-person-image img,

.about-team-grid
.about-person-card:nth-child(3)
.about-person-image img {
  object-fit: contain;
  object-position: center bottom;

  padding:
    16px 14px 0;
}


/* Fundador */

.about-founder-image {
  max-width: 430px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f2f6f9 100%
    );
}


.about-founder-image img {
  object-fit: contain;
  object-position: center bottom;
}


/* =========================================================
   08. CONTENIDO DEL FUNDADOR
   ========================================================= */

.about-founder-content {
  min-width: 0;
}


.about-person-header {
  margin-bottom: 28px;
}


.about-person-role {
  margin:
    0
    0
    10px;

  color: var(--about-orange);

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


.about-person-header h3,
.about-person-content h3 {
  margin: 0;

  color: var(--about-text);

  font-size:
    clamp(1.9rem, 3vw, 3.25rem);

  line-height: 1.05;
  letter-spacing: -0.045em;
}


.about-person-profession {
  margin:
    12px
    0
    0;

  color: var(--about-blue);

  font-size:
    clamp(1rem, 1.2vw, 1.18rem);

  font-weight: 700;
}


.about-founder-description p {
  margin: 0;

  color: var(--about-text-soft);

  font-size:
    clamp(1rem, 1.08vw, 1.14rem);

  line-height: 1.75;
}


.about-founder-description p + p {
  margin-top: 20px;
}


/* Formación */

.about-founder-credentials {
  margin-top: 34px;
  padding-top: 30px;

  border-top:
    1px solid rgba(10, 42, 75, 0.12);
}


.about-founder-credentials h4 {
  margin:
    0
    0
    18px;

  color: var(--about-text);

  font-size: 1.16rem;
}


.about-founder-credentials ul {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    12px 26px;

  margin: 0;
  padding: 0;

  list-style: none;
}


.about-founder-credentials li {
  position: relative;

  padding-left: 22px;

  color: var(--about-text-soft);

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


.about-founder-credentials li::before {
  content: "";

  position: absolute;

  top: 0.68em;
  left: 0;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--about-orange);

  box-shadow:
    0 0 0 5px rgba(255, 122, 0, 0.1);
}


/* Etiquetas */

.about-founder-areas,
.about-person-areas {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}


.about-founder-areas span,
.about-person-areas span {
  display: inline-flex;
  align-items: center;

  min-height: 34px;

  padding:
    7px
    13px;

  border:
    1px solid rgba(30, 167, 255, 0.2);

  border-radius: 999px;

  color: #116995;

  background:
    rgba(30, 167, 255, 0.07);

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


/* Enlaces */

.about-person-links {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 32px;
}


.about-person-links a {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  min-height: 46px;

  padding:
    11px
    18px;

  border:
    1px solid rgba(10, 42, 75, 0.14);

  border-radius: 999px;

  color: var(--about-text);

  background: #ffffff;

  font-weight: 700;

  text-decoration: none;

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


.about-person-links a:hover {
  transform: translateY(-2px);

  color: #0875b4;

  border-color:
    rgba(30, 167, 255, 0.45);

  box-shadow:
    0 12px 30px rgba(4, 23, 45, 0.09);
}


/* =========================================================
   09. NUESTRO EQUIPO
   ========================================================= */

.about-team-section {
  padding:
    clamp(90px, 9vw, 150px)
    0;

  background:
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #0a2c4c 100%
    );
}


.about-team-header {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.75fr);

  gap:
    clamp(45px, 7vw, 100px);

  align-items: end;

  margin-bottom:
    clamp(44px, 5vw, 70px);
}


.about-team-header h2 {
  max-width: 900px;

  margin: 0;

  color: var(--about-white);

  font-size:
    clamp(2.5rem, 4.3vw, 4.8rem);

  line-height: 1.04;
  letter-spacing: -0.055em;
}


.about-team-introduction {
  margin: 0;

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

  font-size:
    clamp(1rem, 1.15vw, 1.14rem);

  line-height: 1.7;
}


.about-team-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(20px, 2.4vw, 32px);
}


/* Tarjetas */

.about-person-card {
  min-width: 0;

  overflow: hidden;

  border:
    1px solid rgba(255, 255, 255, 0.11);

  border-radius:
    var(--about-radius-large);

  background:
    rgba(255, 255, 255, 0.055);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(12px);

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


.about-person-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(30, 167, 255, 0.38);

  background:
    rgba(255, 255, 255, 0.075);
}


.about-person-card > .about-person-image {
  border: 0;
  border-radius:
    var(--about-radius-large)
    var(--about-radius-large)
    0
    0;
}


.about-person-content {
  padding:
    clamp(24px, 3vw, 34px);
}


.about-person-content
.about-person-role {
  color: var(--about-orange);
}


.about-person-content h3 {
  color: var(--about-white);

  font-size:
    clamp(1.55rem, 2.2vw, 2.35rem);
}


.about-person-content
.about-person-profession {
  color: var(--about-blue-soft);
}


.about-person-description {
  margin:
    22px
    0
    0;

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

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


.about-person-card
.about-person-areas span {
  color: #b9e8ff;

  border-color:
    rgba(30, 167, 255, 0.22);

  background:
    rgba(30, 167, 255, 0.09);
}


/* =========================================================
   10. CONTACTO
   ========================================================= */

.about-contact-section {
  padding:
    clamp(80px, 8vw, 125px)
    0;

  background:
    radial-gradient(
      circle at 15% 35%,
      rgba(30, 167, 255, 0.18),
      transparent 28rem
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(255, 122, 0, 0.07),
      transparent 22rem
    ),
    linear-gradient(
      135deg,
      #031122 0%,
      #07304e 60%,
      #0a4a72 100%
    );
}


.about-contact-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(300px, 0.75fr);

  gap:
    clamp(45px, 7vw, 100px);

  align-items: center;
}


.about-contact-layout h2 {
  max-width: 850px;

  margin: 0;

  color: var(--about-white);

  font-size:
    clamp(2.3rem, 4vw, 4.3rem);

  line-height: 1.05;
  letter-spacing: -0.05em;
}


.about-contact-content p {
  margin:
    0
    0
    28px;

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

  font-size:
    clamp(1rem, 1.15vw, 1.16rem);

  line-height: 1.7;
}


/* =========================================================
   11. RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .about-introduction-layout,
  .about-founder-card,
  .about-team-header,
  .about-contact-layout {
    grid-template-columns: 1fr;
  }


  .about-founder-image {
    width: min(100%, 430px);
  }


  .about-team-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }


  .about-founder-credentials ul {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 820px) {

  .about-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .about-introduction-section,
  .about-founder-section,
  .about-team-section,
  .about-contact-section {
    padding:
      85px
      0;
  }


  .about-philosophy-section {
    min-height: 620px;

    padding:
      95px
      0;
  }


  .about-philosophy-background {
    background-position: 62% center;
  }


  .about-philosophy-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 9, 20, 0.97) 0%,
        rgba(2, 9, 20, 0.88) 72%,
        rgba(2, 9, 20, 0.58) 100%
      );
  }


  .about-team-grid {
    grid-template-columns: 1fr;
  }


  .about-person-card {
    max-width: 620px;
    margin-inline: auto;
  }

}


@media (max-width: 520px) {

  .about-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .about-section-heading h2,
  .about-philosophy-content h2,
  .about-founder-header h2,
  .about-team-header h2,
  .about-contact-layout h2 {
    letter-spacing: -0.04em;
  }


  .about-founder-card {
    padding: 18px;
  }


  .about-founder-content {
    padding:
      4px
      2px
      8px;
  }


  .about-person-image {
    border-radius: 18px;
  }


  .about-team-grid
  .about-person-card:nth-child(1)
  .about-person-image img,

  .about-team-grid
  .about-person-card:nth-child(3)
  .about-person-image img {
    padding:
      12px
      10px
      0;
  }


  .about-person-links {
    flex-direction: column;
  }


  .about-person-links a {
    width: 100%;
    justify-content: center;
  }

}
.about-philosophy-content h2 span {
  display: block;
}
/* =========================================================
   AJUSTE TIPOGRÁFICO — FILOSOFÍA
   ========================================================= */

.about-philosophy-content {
  width: min(100%, 980px);
}


.about-philosophy-content h2 {
  max-width: 980px;

  margin:
    0
    0
    30px;

  color: var(--about-white);

  font-size:
    clamp(2.4rem, 3.6vw, 4.2rem);

  line-height: 1.04;
  letter-spacing: -0.045em;
}


.about-philosophy-content h2 span {
  display: block;
}


.about-philosophy-content p {
  max-width: 800px;

  margin: 0;

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

  font-size:
    clamp(0.1rem, 0.5vw, 1rem);

  line-height: 1.72;
}


@media (max-width: 820px) {

  .about-philosophy-content {
    width: 100%;
  }


  .about-philosophy-content h2 {
    max-width: 680px;

    font-size:
      clamp(2.1rem, 7vw, 3.2rem);
  }


  .about-philosophy-content p {
    max-width: 650px;
  }

}
/* =========================================================
   CORRECCIÓN DEFINITIVA — SECCIÓN NUESTRA FILOSOFÍA
   ========================================================= */

.about-philosophy-section {
  position: relative;
  isolation: isolate;

  min-height: 680px;

  display: flex;
  align-items: center;

  padding:
    clamp(90px, 9vw, 145px)
    0;

  overflow: hidden;

  background: #020914;
}


/* Imagen de fondo */

.about-philosophy-background {
  position: absolute;
  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;

  background-image:
    url("/assets/images/nosotros/imagenfilosofiafondo_resultado.webp");

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

  pointer-events: none;
}


/* Oscurecimiento */

.about-philosophy-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      rgba(2, 9, 20, 0.98) 0%,
      rgba(2, 9, 20, 0.94) 28%,
      rgba(2, 9, 20, 0.72) 55%,
      rgba(2, 9, 20, 0.34) 100%
    );

  pointer-events: none;
}


/* Contenido sobre las capas */

.about-philosophy-container {
  position: relative;

  z-index: 5;

  width: min(88%, 1440px);

  margin-inline: auto;
}


.about-philosophy-content {
  position: relative;

  z-index: 6;

  display: block;

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

  opacity: 1;
  visibility: visible;
}


/* Etiquetas superiores */

.about-philosophy-content
.about-section-number {
  display: block;

  margin: 0 0 8px;

  color: #ff7a00;
}


.about-philosophy-content
.about-section-eyebrow {
  display: block;

  margin: 0 0 20px;

  color: #28aaff;

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

  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/* Título más pequeño y ancho */

.about-philosophy-content h2 {
  display: block;

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

  margin:
    0
    0
    32px;

  color: #ffffff;

  font-size:
    clamp(2.5rem, 3.4vw, 4rem);

  font-weight: 850;
  line-height: 1.05;

  letter-spacing: -0.045em;

  opacity: 1;
  visibility: visible;
}


.about-philosophy-content h2 span {
  display: block;
}


/* Texto descriptivo más ancho */

.about-philosophy-content p {
  display: block;

  max-width: 930px;

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

  font-size:
    clamp(1.05rem, 1.15vw, 1.22rem);

  line-height: 1.72;

  opacity: 1;
  visibility: visible;
}


.about-philosophy-content p + p {
  margin-top: 22px;
}


/* Tablet */

@media (max-width: 820px) {

  .about-philosophy-section {
    min-height: 620px;

    padding:
      85px
      0;
  }


  .about-philosophy-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .about-philosophy-content h2 {
    max-width: 680px;

    font-size:
      clamp(2.1rem, 7vw, 3.2rem);
  }


  .about-philosophy-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 9, 20, 0.97) 0%,
        rgba(2, 9, 20, 0.91) 70%,
        rgba(2, 9, 20, 0.64) 100%
      );
  }

}


/* Celular */

@media (max-width: 520px) {

  .about-philosophy-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .about-philosophy-content h2 {
    font-size:
      clamp(2rem, 9vw, 2.75rem);
  }


  .about-philosophy-content h2 span {
    display: inline;
  }


  .about-philosophy-content h2 span:first-child::after {
    content: " ";
  }

}
/* =========================================================
   AJUSTE SECCIÓN FUNDADOR
   Fondo azul oscuro + título blanco en una línea
   ========================================================= */

.about-founder-section {
  padding:
    clamp(70px, 6vw, 105px)
    0;

  background:
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #0a2c4c 100%
    );
}


/* Encabezado más compacto */

.about-founder-header {
  max-width: 1200px;

  margin-bottom:
    clamp(30px, 3vw, 44px);
}


/* Número */

.about-founder-header
.about-section-number {
  color: #ff7a00;
}


/* Etiqueta FUNDADOR */

.about-founder-header
.about-section-eyebrow {
  color: #28aaff;
}


/* Título más pequeño, blanco y en una sola línea */

.about-founder-header h2 {
  width: 100%;
  max-width: none;

  margin: 0;

  color: #ffffff;

  font-size:
    clamp(2rem, 3vw, 3.35rem);

  line-height: 1.05;
  letter-spacing: -0.04em;

  white-space: nowrap;
}


/* La tarjeta se mantiene blanca */

.about-founder-card {
  background: #ffffff;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28);
}


/* Tablet: permitir salto si no cabe */

@media (max-width: 900px) {

  .about-founder-header h2 {
    white-space: normal;

    font-size:
      clamp(2rem, 6vw, 3rem);
  }

}


/* Celular */

@media (max-width: 520px) {

  .about-founder-section {
    padding:
      58px
      0;
  }


  .about-founder-header {
    margin-bottom: 28px;
  }


  .about-founder-header h2 {
    font-size:
      clamp(1.9rem, 8vw, 2.5rem);
  }

}
/* =========================================================
   FILOSOFÍA SIN IMAGEN
   Texto a todo el ancho y tipografía más grande
   ========================================================= */

.about-philosophy-section {
  position: relative;

  min-height: auto;

  padding:
    clamp(80px, 8vw, 130px)
    0;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 58%,
      #0a2c4c 100%
    );
}


/* Ocultar completamente la imagen y el overlay anteriores */

.about-philosophy-background,
.about-philosophy-overlay {
  display: none;
}


/* Usar todo el ancho disponible */

.about-philosophy-container {
  position: relative;
  z-index: 2;

  width:
    min(
      92%,
      1500px
    );

  margin-inline: auto;
}


.about-philosophy-content {
  width: 100%;
  max-width: none;
}


/* Título */

.about-philosophy-content h2 {
  width: 100%;
  max-width: none;

  margin:
    0
    0
    34px;

  color: #ffffff;

  font-size:
    clamp(3rem, 4vw, 4.8rem);

  line-height: 1;
  letter-spacing: -0.045em;
}


/* Texto a todo el ancho */

.about-philosophy-content p {
  width: 100%;
  max-width: none;

  margin: 0;

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

  font-size:
    clamp(1.55rem, 1.9vw, 2rem);

  line-height: 1.62;
}


.about-philosophy-content p + p {
  margin-top: 26px;
}


/* Tablet */

@media (max-width: 820px) {

  .about-philosophy-container {
    width:
      min(
        calc(100% - 30px),
        680px
      );
  }


  .about-philosophy-content h2 {
    font-size:
      clamp(2.5rem, 7vw, 3.5rem);
  }


  .about-philosophy-content p {
    font-size:
      clamp(1.25rem, 4.5vw, 1.55rem);

    line-height: 1.58;
  }

}


/* Celular */

@media (max-width: 520px) {

  .about-philosophy-section {
    padding:
      65px
      0;
  }


  .about-philosophy-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .about-philosophy-content h2 {
    font-size:
      clamp(2.2rem, 9vw, 3rem);
  }


  .about-philosophy-content p {
    font-size:
      clamp(1.12rem, 5vw, 1.35rem);

    line-height: 1.55;
  }

}
/* =========================================================
   TIPOGRAFÍA MAESTRA GLOBAL DE SUBPÁGINAS
   PARTE 1 DE 2

   SE APLICA A:
   - Investigación
   - Soluciones
   - Páginas censales antiguas compatibles
   - Riesgo operativo e IROE-1
   - Evacuación por tsunami
   - Geomorfología submarina
   - Geofísica marina
   - Soluciones TsunamiGo
   - Soluciones MorphoFlow
   - Soluciones ChirpView
   - Soluciones CensusAnalytics

   NO SE APLICA A:
   - Inicio
   - Nosotros
   - Contacto
   - GEOPLOT Campus
   - Cursos de GEOPLOT Campus
========================================================= */


/* =========================================================
   01. VARIABLES TIPOGRÁFICAS
========================================================= */

:root {
  --subpage-master-font:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  --subpage-master-eyebrow:
    0.72rem;

  --subpage-master-hero-title:
    clamp(2.1rem, 2.65vw, 2.85rem);

  --subpage-master-hero-subtitle:
    clamp(1.3rem, 1.75vw, 1.75rem);

  --subpage-master-hero-description:
    1.03rem;

  --subpage-master-section-title:
    clamp(1.65rem, 2.55vw, 2.35rem);

  --subpage-master-section-description:
    1.05rem;

  --subpage-master-subsection-title:
    clamp(1.45rem, 2.4vw, 2.2rem);

  --subpage-master-card-title:
    clamp(1rem, 1.5vw, 1.28rem);

  --subpage-master-card-description:
    1rem;

  --subpage-master-button:
    0.94rem;
}


/* =========================================================
   02. FUENTE GENERAL

   No se incluyen:
   .about-page
   .campus-page
   .course-page
   .contact-page
   .home-page
========================================================= */

.census-research-page,
.evacuation-diagnosis-page,
.censusanalytics-solution-page,
.tsunami-preparation-page,
.morphoflow-solution-page,
.chirpview-solution-page,
.risk-research-section,
.subpage-dashboard-section,
.tsunamigo-showcase-section,
.morphology-story-section,
.marine-story-section {
  font-family:
    var(--subpage-master-font);
}


/* Plantilla general solo cuando no pertenece
   a Inicio, Nosotros, Contacto o Campus */

body.subpage:not(.about-page)
:not(.home-page)
:not(.inicio-page)
:not(.contact-page)
:not(.contacto-page)
:not(.campus-page)
:not(.course-page) {
  font-family:
    var(--subpage-master-font);
}


/* =========================================================
   03. EYEBROWS Y ETIQUETAS
========================================================= */

.subpage-hero-eyebrow,
.subpage-description-eyebrow,

.census-research-eyebrow,

.risk-section-eyebrow,
.risk-hero-technology-label,

.subpage-dashboard-eyebrow,
.subpage-dashboard-technology-copy span,

.tsunamigo-showcase-eyebrow,
.tsunamigo-product-eyebrow,
.tsunamigo-product-brand-copy span,

.morphology-story-eyebrow,
.morphology-story-step,

.marine-story-eyebrow,
.marine-story-step,

.solution-section-eyebrow,
.solution-service-eyebrow,
.solution-technology-label {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-eyebrow);

  font-weight: 850;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* =========================================================
   04. TÍTULOS PRINCIPALES DEL HERO
========================================================= */

body.subpage:not(.about-page)
:not(.home-page)
:not(.inicio-page)
:not(.contact-page)
:not(.contacto-page)
:not(.campus-page)
:not(.course-page)
.subpage-hero-title,

.census-research-page
.census-research-hero-content h1,

.evacuation-diagnosis-page
.subpage-hero-title,

.censusanalytics-solution-page
.subpage-hero-title,

.tsunami-preparation-page
.subpage-hero-title,

.morphoflow-solution-page
.subpage-hero-title,

.chirpview-solution-page
.subpage-hero-title {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-hero-title) !important;

  font-weight: 900;
  line-height: 1.06;

  letter-spacing: -0.048em;

  text-wrap: balance;
}


/* =========================================================
   05. SUBTÍTULOS DEL HERO
========================================================= */

body.subpage:not(.about-page)
:not(.home-page)
:not(.inicio-page)
:not(.contact-page)
:not(.contacto-page)
:not(.campus-page)
:not(.course-page)
.subpage-hero-subtitle,

.census-research-page
.census-research-hero-subtitle,

.evacuation-diagnosis-page
.subpage-hero-subtitle,

.censusanalytics-solution-page
.subpage-hero-subtitle,

.tsunami-preparation-page
.subpage-hero-subtitle,

.morphoflow-solution-page
.subpage-hero-subtitle,

.chirpview-solution-page
.subpage-hero-subtitle {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-hero-subtitle);

  font-weight: 800;
  line-height: 1.28;

  letter-spacing: -0.025em;

  text-wrap: balance;
}


/* =========================================================
   06. DESCRIPCIONES DEL HERO
========================================================= */

body.subpage:not(.about-page)
:not(.home-page)
:not(.inicio-page)
:not(.contact-page)
:not(.contacto-page)
:not(.campus-page)
:not(.course-page)
.subpage-hero-description,

.census-research-page
.census-research-hero-description,

.evacuation-diagnosis-page
.subpage-hero-description,

.censusanalytics-solution-page
.subpage-hero-description,

.tsunami-preparation-page
.subpage-hero-description,

.morphoflow-solution-page
.subpage-hero-description,

.chirpview-solution-page
.subpage-hero-description {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-hero-description);

  font-weight: 400;
  line-height: 1.68;

  letter-spacing: 0;
}


/* =========================================================
   07. TÍTULOS PRINCIPALES DE SECCIÓN
========================================================= */

.subpage-description-title,

.risk-research-heading h2,

.subpage-dashboard-content h2,

.tsunamigo-showcase-header h2,

.morphology-story-header h2,

.marine-story-header h2,

.solution-section-header h2,
.solution-introduction-heading h2 {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-section-title);

  font-weight: 900;
  line-height: 1.1;

  letter-spacing: -0.042em;

  text-wrap: balance;
}


/* =========================================================
   08. DESCRIPCIONES DE SECCIÓN
========================================================= */

.subpage-description-text,

.risk-research-content > p:first-child,

.subpage-dashboard-description,

.tsunamigo-showcase-header > p:last-child,

.morphology-story-header > p:last-child,

.marine-story-header > p:last-child,

.solution-section-header > p:last-child,
.solution-introduction-text {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-section-description);

  font-weight: 400;
  line-height: 1.72;
}


/* =========================================================
   09. CASOS DE ESTUDIO Y DESTACADOS
========================================================= */

.subpage-case-inline,
.risk-research-case,
.solution-case-inline,
.morphology-story-case,
.marine-story-case {
  font-family:
    var(--subpage-master-font);

  font-size: 1rem;

  font-weight: 600;
  line-height: 1.66;
}


/* =========================================================
   10. BOTONES Y ENLACES PRINCIPALES
========================================================= */

.subpage-button,
.subpage-description-link,

.risk-research-actions a,

.subpage-dashboard-actions a,

.tsunamigo-product-actions a,

.morphology-story-actions a,

.marine-story-actions a,

.solution-actions a {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-button);

  font-weight: 800;
  line-height: 1.2;
}
/* =========================================================
   TIPOGRAFÍA MAESTRA GLOBAL DE SUBPÁGINAS
   PARTE 2 DE 2

   Exclusiones:
   - Inicio
   - Nosotros
   - Contacto
   - Campus
========================================================= */


/* =========================================================
   11. TÍTULOS DE PRODUCTOS Y TARJETAS GRANDES
========================================================= */

.tsunamigo-product-content h3,

.morphology-story-content h3,

.marine-story-content h3,

.solution-service-card h3,
.solution-product-content h3,
.solution-technology-card h3 {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-subsection-title);

  font-weight: 900;
  line-height: 1.1;

  letter-spacing: -0.038em;

  text-wrap: balance;
}


/* =========================================================
   12. DESCRIPCIONES DE PRODUCTOS Y TARJETAS GRANDES
========================================================= */

.tsunamigo-product-description,

.morphology-story-description,
.morphology-story-content > p,

.marine-story-description,
.marine-story-content > p,

.solution-service-card p,
.solution-product-description,
.solution-technology-card p {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-card-description);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   13. NOMBRES DE TECNOLOGÍAS
========================================================= */

.risk-hero-technology-name,

.subpage-dashboard-technology-copy strong,

.tsunamigo-product-brand-copy strong,

.morphology-technology-name,

.marine-technology-name,

.solution-technology-name,
.solution-brand-name {
  font-family:
    var(--subpage-master-font);

  font-size:
    clamp(1.35rem, 1.65vw, 1.75rem);

  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.035em;
}


/* =========================================================
   14. TÍTULOS DE TARJETAS PEQUEÑAS
========================================================= */

.solution-feature-card h3,
.solution-benefit-card h3,
.solution-process-card h3,

.morphology-feature-card h3,
.morphology-metric-card h3,

.marine-feature-card h3,
.marine-product-card h3 {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-card-title);

  font-weight: 850;
  line-height: 1.28;

  letter-spacing: -0.018em;

  text-wrap: balance;
}


/* =========================================================
   15. TEXTOS DE TARJETAS PEQUEÑAS
========================================================= */

.solution-feature-card p,
.solution-benefit-card p,
.solution-process-card p,

.morphology-feature-card p,
.morphology-metric-card p,

.marine-feature-card p,
.marine-product-card p {
  font-family:
    var(--subpage-master-font);

  font-size:
    var(--subpage-master-card-description);

  font-weight: 400;
  line-height: 1.66;
}


/* =========================================================
   16. LISTAS DE INVESTIGACIÓN Y SOLUCIONES
========================================================= */

.census-research-page ul,
.census-research-page ol,

.risk-research-section ul,
.risk-research-section ol,

.subpage-dashboard-section ul,
.subpage-dashboard-section ol,

.tsunamigo-showcase-section ul,
.tsunamigo-showcase-section ol,

.morphology-story-section ul,
.morphology-story-section ol,

.marine-story-section ul,
.marine-story-section ol,

.evacuation-diagnosis-page ul,
.evacuation-diagnosis-page ol,

.censusanalytics-solution-page ul,
.censusanalytics-solution-page ol,

.tsunami-preparation-page ul,
.tsunami-preparation-page ol,

.morphoflow-solution-page ul,
.morphoflow-solution-page ol,

.chirpview-solution-page ul,
.chirpview-solution-page ol {
  font-family:
    var(--subpage-master-font);
}


/* =========================================================
   17. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 820px) {

  body.subpage:not(.about-page)
  :not(.home-page)
  :not(.inicio-page)
  :not(.contact-page)
  :not(.contacto-page)
  :not(.campus-page)
  :not(.course-page)
  .subpage-hero-title,

  .census-research-page
  .census-research-hero-content h1,

  .evacuation-diagnosis-page
  .subpage-hero-title,

  .censusanalytics-solution-page
  .subpage-hero-title,

  .tsunami-preparation-page
  .subpage-hero-title,

  .morphoflow-solution-page
  .subpage-hero-title,

  .chirpview-solution-page
  .subpage-hero-title {
    font-size:
      clamp(2rem, 7vw, 2.75rem) !important;
  }


  .subpage-hero-subtitle,
  .census-research-hero-subtitle {
    font-size:
      clamp(1.25rem, 4.7vw, 1.65rem);
  }


  .subpage-description-title,
  .risk-research-heading h2,
  .subpage-dashboard-content h2,
  .tsunamigo-showcase-header h2,
  .morphology-story-header h2,
  .marine-story-header h2,
  .solution-section-header h2,
  .solution-introduction-heading h2 {
    font-size:
      clamp(1.55rem, 5.8vw, 2.2rem);
  }


  .tsunamigo-product-content h3,
  .morphology-story-content h3,
  .marine-story-content h3,
  .solution-product-content h3 {
    font-size:
      clamp(1.4rem, 5vw, 2rem);
  }

}


/* =========================================================
   18. RESPONSIVE — CELULAR
========================================================= */

@media (max-width: 520px) {

  .subpage-hero-eyebrow,
  .subpage-description-eyebrow,
  .census-research-eyebrow,
  .risk-section-eyebrow,
  .subpage-dashboard-eyebrow,
  .tsunamigo-showcase-eyebrow,
  .tsunamigo-product-eyebrow,
  .morphology-story-eyebrow,
  .morphology-story-step,
  .marine-story-eyebrow,
  .marine-story-step,
  .solution-section-eyebrow {
    font-size: 0.68rem;
  }


  body.subpage:not(.about-page)
  :not(.home-page)
  :not(.inicio-page)
  :not(.contact-page)
  :not(.contacto-page)
  :not(.campus-page)
  :not(.course-page)
  .subpage-hero-title,

  .census-research-page
  .census-research-hero-content h1,

  .evacuation-diagnosis-page
  .subpage-hero-title,

  .censusanalytics-solution-page
  .subpage-hero-title,

  .tsunami-preparation-page
  .subpage-hero-title,

  .morphoflow-solution-page
  .subpage-hero-title,

  .chirpview-solution-page
  .subpage-hero-title {
    font-size:
      clamp(1.95rem, 8vw, 2.55rem) !important;

    line-height: 1.06;

    letter-spacing: -0.045em;
  }


  .subpage-hero-subtitle,
  .census-research-hero-subtitle {
    font-size:
      clamp(1.18rem, 5.4vw, 1.45rem);

    line-height: 1.3;
  }


  .subpage-hero-description,
  .census-research-hero-description {
    font-size: 0.98rem;
    line-height: 1.68;
  }


  .subpage-description-title,
  .risk-research-heading h2,
  .subpage-dashboard-content h2,
  .tsunamigo-showcase-header h2,
  .morphology-story-header h2,
  .marine-story-header h2,
  .solution-section-header h2,
  .solution-introduction-heading h2 {
    font-size:
      clamp(1.55rem, 6.8vw, 2.1rem);

    line-height: 1.1;
  }


  .subpage-description-text,
  .risk-research-content > p:first-child,
  .subpage-dashboard-description,
  .tsunamigo-showcase-header > p:last-child,
  .morphology-story-header > p:last-child,
  .marine-story-header > p:last-child,
  .solution-section-header > p:last-child,
  .solution-introduction-text {
    font-size: 0.98rem;
    line-height: 1.68;
  }


  .tsunamigo-product-content h3,
  .morphology-story-content h3,
  .marine-story-content h3,
  .solution-product-content h3,
  .solution-service-card h3 {
    font-size:
      clamp(1.35rem, 6vw, 1.85rem);

    line-height: 1.15;
  }


  .tsunamigo-product-description,
  .morphology-story-description,
  .marine-story-description,
  .solution-product-description,
  .solution-service-card p {
    font-size: 0.96rem;
    line-height: 1.64;
  }


  .subpage-button,
  .subpage-description-link,
  .subpage-dashboard-actions a,
  .tsunamigo-product-actions a,
  .morphology-story-actions a,
  .marine-story-actions a,
  .solution-actions a {
    font-size: 0.92rem;
  }

}


/* =========================================================
   19. PROTECCIÓN FINAL

   Solo Investigación y Soluciones.
   No incluye Nosotros, Inicio, Contacto ni Campus.
========================================================= */

.census-research-page h1,
.census-research-page h2,
.census-research-page h3,

.evacuation-diagnosis-page h1,
.evacuation-diagnosis-page h2,
.evacuation-diagnosis-page h3,

.censusanalytics-solution-page h1,
.censusanalytics-solution-page h2,
.censusanalytics-solution-page h3,

.tsunami-preparation-page h1,
.tsunami-preparation-page h2,
.tsunami-preparation-page h3,

.morphoflow-solution-page h1,
.morphoflow-solution-page h2,
.morphoflow-solution-page h3,

.chirpview-solution-page h1,
.chirpview-solution-page h2,
.chirpview-solution-page h3,

.risk-research-section h2,
.risk-research-section h3,

.subpage-dashboard-section h2,
.subpage-dashboard-section h3,

.tsunamigo-showcase-section h2,
.tsunamigo-showcase-section h3,

.morphology-story-section h2,
.morphology-story-section h3,

.marine-story-section h2,
.marine-story-section h3 {
  font-family:
    var(--subpage-master-font);

  text-rendering:
    optimizeLegibility;

  -webkit-font-smoothing:
    antialiased;
}
/* =========================================================
   CORRECCIÓN DE TÍTULOS
   Investigación / Análisis censal y territorial
   ========================================================= */


/* POE1 BOCA SUR */

body[data-page="investigacion"]
.census-research-results-header h2 {
  max-width: 520px;

  margin:
    8px 0 0;

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

  font-size:
    clamp(1.65rem, 2.5vw, 2.35rem);

  font-weight: 900;
  line-height: 1.08;

  letter-spacing: -0.04em;

  text-wrap: balance;
}


/* CENSO CON PYTHON */

body[data-page="investigacion"]
.census-research-course-content h2 {
  max-width: 620px;

  margin:
    8px 0 0;

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

  font-size:
    clamp(1.65rem, 2.5vw, 2.35rem);

  font-weight: 900;
  line-height: 1.08;

  letter-spacing: -0.04em;

  text-wrap: balance;
}


/* TABLET */

@media (max-width: 820px) {

  body[data-page="investigacion"]
  .census-research-results-header h2,

  body[data-page="investigacion"]
  .census-research-course-content h2 {
    font-size:
      clamp(1.55rem, 5vw, 2rem);

    line-height: 1.1;
  }

}


/* CELULAR */

@media (max-width: 540px) {

  body[data-page="investigacion"]
  .census-research-results-header h2,

  body[data-page="investigacion"]
  .census-research-course-content h2 {
    font-size:
      clamp(1.4rem, 7vw, 1.8rem);

    line-height: 1.12;
  }

}
/* =========================================================
   TÍTULO: CUÁNTAS PERSONAS EVACUARÍAN
   Mismo tamaño que POE1 Boca Sur
   ========================================================= */

body[data-page="investigacion"]
#evacuation-routes-question-title {
  max-width: 720px;

  margin:
    8px 0 0;

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

  font-size:
    clamp(1.5rem, 2.1vw, 2rem);

  font-weight: 900;
  line-height: 1.12;

  letter-spacing: -0.035em;

  text-wrap: balance;
}


/* TABLET */

@media (max-width: 820px) {

  body[data-page="investigacion"]
  #evacuation-routes-question-title {
    font-size:
      clamp(1.45rem, 5vw, 1.9rem);
  }

}


/* CELULAR */

@media (max-width: 540px) {

  body[data-page="investigacion"]
  #evacuation-routes-question-title {
    font-size:
      clamp(1.35rem, 7vw, 1.7rem);

    line-height: 1.14;
  }

}
/* =========================================================
   CORRECCIÓN GLOBAL
   CTA FINAL DE TODAS LAS SUBPÁGINAS DE SOLUCIONES
   ========================================================= */

body[data-page="soluciones"]
.solution-quote-content h2 {
  max-width: 760px;

  margin: 8px 0 0;

  color: #ffffff;

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

  font-size:
    clamp(1.55rem, 2.25vw, 2.15rem);

  font-weight: 900;
  line-height: 1.12;

  letter-spacing: -0.035em;

  text-wrap: balance;
}


/* TABLET */

@media (max-width: 820px) {

  body[data-page="soluciones"]
  .solution-quote-content h2 {
    max-width: 680px;

    font-size:
      clamp(1.5rem, 4.6vw, 2rem);

    line-height: 1.12;
  }

}


/* CELULAR */

@media (max-width: 520px) {

  body[data-page="soluciones"]
  .solution-quote-content h2 {
    max-width: none;

    font-size:
      clamp(1.35rem, 6.8vw, 1.75rem);

    line-height: 1.14;

    letter-spacing: -0.025em;
  }

}