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

   Sistema visual compartido para las páginas individuales:

   - CensusAnalytics
   - IROE-1
   - TsunamiGo
   - MorphoFlow
   - ChirpView

   Estructura general:

   01. Variables
   02. Base
   03. Hero tecnológico
   04. Identidad de marca
   05. Botones
   06. Presentación del software
   07. Capacidades
   08. Flujo de trabajo
   09. Visualización del software
   10. Aplicaciones
   11. Ecosistema GEOPLOT
   12. Llamado a la acción
   13. Responsive
   14. Accesibilidad
   ========================================================= */


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

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

  --technology-black: #000000;
  --technology-dark: #020914;
  --technology-dark-blue: #06172d;
  --technology-deep-blue: #092746;

  --technology-white: #f4f4f4;
  --technology-pure-white: #ffffff;

  --technology-blue: #37a3f8;
  --technology-blue-bright: #0fa3f7;
  --technology-blue-dark: #0b6fc2;

  --technology-orange: #f88e06;
  --technology-orange-hover: #ff9d26;

  --technology-light-background: #f2f6fa;
  --technology-light-background-alt: #eaf1f7;

  --technology-card-background: #ffffff;

  --technology-heading-dark: #102344;
  --technology-body-dark: #425970;
  --technology-body-medium: #173d63;

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

  --technology-text-muted:
    rgba(255, 255, 255, 0.76);

  --technology-border-light:
    rgba(255, 255, 255, 0.15);

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

  --technology-card-radius: 28px;
  --technology-small-radius: 14px;

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

  --technology-shadow-dark:
    0 28px 80px rgba(0, 0, 0, 0.32);

  --technology-hero-title-size:
    clamp(3.1rem, 5vw, 5.8rem);

  --technology-hero-subtitle-size:
    clamp(1.45rem, 1.9vw, 2rem);

  --technology-section-title-size:
    clamp(2.25rem, 3.2vw, 3.8rem);

  --technology-section-text-size:
    clamp(1.06rem, 1.18vw, 1.25rem);

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


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

.technology-page {
  width: 100%;

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

  color:
    var(--technology-heading-dark);

  background:
    var(--technology-pure-white);
}


.technology-page *,
.technology-page *::before,
.technology-page *::after {
  box-sizing: border-box;
}


.technology-page img {
  max-width: 100%;
}


.technology-section-container {
  position: relative;
  z-index: 2;

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

  margin-inline: auto;
}


/* =========================================================
   03. HERO TECNOLÓGICO
   ========================================================= */

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

  width: 100%;

  height:
    calc(100vh - var(--header-height, 88px));

  min-height: 720px;
  max-height: 1080px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color:
    var(--technology-pure-white);

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

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

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

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

  border-bottom:
    1px solid rgba(55, 163, 248, 0.25);
}


/* Capa oscura horizontal */

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

  position: absolute;
  inset: 0;

  z-index: -2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 3, 10, 0.94) 20%,
      rgba(0, 7, 20, 0.82) 38%,
      rgba(0, 7, 20, 0.48) 60%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.08) 60%,
      rgba(2, 9, 20, 0.64) 100%
    );
}


/* Sombra inferior */

.technology-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.74)
    );
}


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

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

  height: 100%;

  margin-inline: auto;

  padding:
    36px 0 42px;

  display: flex;
  align-items: center;
}


.technology-hero-content {
  width: 100%;
  max-width: 930px;

  transform:
    translateY(-12px);
}


/* =========================================================
   04. IDENTIDAD DE MARCA
   ========================================================= */

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

  display: flex;
  align-items: center;

  gap:
    clamp(18px, 2vw, 30px);
}


.technology-brand-logo {
  display: block;

  width:
    clamp(92px, 8.5vw, 142px);

  height:
    clamp(92px, 8.5vw, 142px);

  flex:
    0 0 auto;

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


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

  display: flex;
  flex-direction: column;

  gap: 7px;
}


.technology-eyebrow {
  margin: 0;

  color:
    var(--technology-orange);

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

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

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


.technology-brand-name {
  margin: 0;

  color:
    var(--technology-white);

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

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

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

  letter-spacing: -0.06em;

  white-space: nowrap;
}


.technology-name-white {
  color:
    var(--technology-white);
}


.technology-name-blue {
  color:
    var(--technology-blue);
}


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


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

  margin: 34px 0 0;

  color:
    var(--technology-pure-white);

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

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

  letter-spacing: -0.025em;
}


.technology-hero-description {
  max-width: 760px;

  margin: 23px 0 0;

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

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

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


/* =========================================================
   05. BOTONES
   ========================================================= */

.technology-hero-actions,
.technology-software-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 15px;

  margin-top: 30px;
}


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

  padding:
    0 24px;

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

  gap: 16px;

  color:
    var(--technology-pure-white);

  text-decoration: none;

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

  font-size:
    clamp(0.96rem, 1vw, 1.07rem);

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

  border:
    2px solid transparent;

  border-radius:
    var(--technology-small-radius);

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


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


.technology-button-primary {
  color:
    var(--technology-pure-white);

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

  background:
    var(--technology-orange);

  box-shadow:
    0 14px 34px rgba(248, 142, 6, 0.28);
}


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

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

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

  box-shadow:
    0 18px 38px rgba(248, 142, 6, 0.34);
}


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

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

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

  backdrop-filter:
    blur(7px);
}


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

  border-color:
    var(--technology-pure-white);

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


.technology-button-dark {
  color:
    var(--technology-pure-white);

  border-color:
    var(--technology-heading-dark);

  background:
    var(--technology-heading-dark);
}


.technology-button-dark:hover,
.technology-button-dark:focus-visible {
  color:
    var(--technology-pure-white);

  border-color:
    var(--technology-blue-dark);

  background:
    var(--technology-blue-dark);
}


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


/* =========================================================
   06. QUÉ HACE EL SOFTWARE
   ========================================================= */

.technology-introduction-section {
  position: relative;

  width: 100%;

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

  overflow: hidden;

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


/* Decoración circular */

.technology-introduction-section::before {
  content: "";

  position: absolute;

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

  width: 42rem;
  height: 42rem;

  pointer-events: none;

  border:
    1px solid rgba(55, 163, 248, 0.12);

  border-radius: 50%;

  box-shadow:
    0 0 0 85px rgba(55, 163, 248, 0.025),
    0 0 0 170px rgba(55, 163, 248, 0.014);
}


.technology-introduction-container {
  position: relative;
  z-index: 2;

  width:
    min(
      88%,
      var(--technology-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);
}


.technology-introduction-heading {
  max-width: 560px;
}


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

  color:
    var(--technology-orange);

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

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


.technology-introduction-heading h2,
.technology-section-header h2,
.technology-software-content h2,
.technology-cta-content h2 {
  margin: 0;

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

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

  letter-spacing: -0.045em;
}


.technology-introduction-heading h2 {
  color:
    var(--technology-heading-dark);
}


.technology-introduction-content {
  max-width: 800px;
}


.technology-introduction-text {
  margin: 0;

  color:
    var(--technology-body-dark);

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

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


.technology-application-inline {
  margin:
    28px 0 0;

  padding:
    23px 0 0;

  color:
    var(--technology-body-medium);

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

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

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


.technology-application-inline strong {
  color:
    var(--technology-orange);

  font-weight: 850;
}


.technology-introduction-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 13px;

  margin-top: 30px;
}


.technology-section-link {
  min-height: 50px;

  padding:
    0 19px;

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

  gap: 12px;

  color:
    var(--technology-heading-dark);

  text-decoration: none;

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

  border:
    2px solid var(--technology-heading-dark);

  border-radius: 12px;

  background:
    var(--technology-pure-white);

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


.technology-section-link:hover,
.technology-section-link:focus-visible {
  color:
    var(--technology-pure-white);

  transform:
    translateY(-2px);

  border-color:
    var(--technology-heading-dark);

  background:
    var(--technology-heading-dark);
}


.technology-section-link-primary {
  color:
    var(--technology-pure-white);

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

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


.technology-section-link-primary:hover,
.technology-section-link-primary:focus-visible {
  color:
    var(--technology-pure-white);

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

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


/* =========================================================
   07. CAPACIDADES
   ========================================================= */

.technology-capabilities-section {
  position: relative;

  width: 100%;

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

  background:
    var(--technology-pure-white);
}


.technology-section-header {
  width: 100%;
  max-width: 900px;

  margin:
    0 auto
    clamp(46px, 5vw, 72px);

  text-align: center;
}


.technology-section-header h2 {
  color:
    var(--technology-heading-dark);
}


.technology-section-header > p:last-child {
  max-width: 760px;

  margin:
    22px auto 0;

  color:
    var(--technology-body-dark);

  font-size:
    clamp(1.03rem, 1.12vw, 1.2rem);

  line-height: 1.66;
}


.technology-capabilities-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(20px, 2.5vw, 34px);
}


.technology-capability-card {
  position: relative;

  min-height: 270px;

  padding:
    34px 30px;

  overflow: hidden;

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

  border-radius:
    22px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7fafc
    );

  box-shadow:
    0 18px 48px rgba(10, 37, 66, 0.08);

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


.technology-capability-card::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 110px;
  height: 110px;

  pointer-events: none;

  background:
    radial-gradient(
      circle at top right,
      rgba(55, 163, 248, 0.13),
      transparent 70%
    );
}


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

  border-color:
    rgba(55, 163, 248, 0.34);

  box-shadow:
    0 24px 56px rgba(10, 37, 66, 0.13);
}


.technology-card-number {
  display: block;

  margin-bottom: 26px;

  color:
    var(--technology-orange);

  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;

  letter-spacing: 0.16em;
}


.technology-capability-card h3 {
  margin: 0;

  color:
    var(--technology-heading-dark);

  font-size:
    clamp(1.35rem, 1.55vw, 1.7rem);

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

  letter-spacing: -0.03em;
}


.technology-capability-card p {
  margin:
    18px 0 0;

  color:
    var(--technology-body-dark);

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

  line-height: 1.65;
}


/* =========================================================
   08. FLUJO DE TRABAJO
   ========================================================= */

.technology-workflow-section {
  position: relative;

  width: 100%;

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

  overflow: hidden;

  color:
    var(--technology-pure-white);

  background:
    radial-gradient(
      circle at 18% 26%,
      rgba(55, 163, 248, 0.17),
      transparent 30rem
    ),
    linear-gradient(
      135deg,
      var(--technology-dark) 0%,
      var(--technology-dark-blue) 56%,
      var(--technology-deep-blue) 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


.technology-workflow-section::before,
.technology-ecosystem-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;
}


.technology-section-header-dark h2 {
  color:
    var(--technology-pure-white);
}


.technology-section-header-dark > p:last-child {
  color:
    var(--technology-text-muted);
}


.technology-workflow-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  gap:
    clamp(18px, 2.4vw, 34px);
}


.technology-workflow-card {
  min-height: 330px;

  padding:
    36px 30px;

  border:
    1px solid var(--technology-border-light);

  border-radius:
    22px;

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

  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.25);

  backdrop-filter:
    blur(10px);
}


.technology-workflow-number {
  display: block;

  color:
    var(--technology-orange);

  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;

  letter-spacing: 0.16em;
}


.technology-workflow-label {
  margin:
    22px 0 0;

  color:
    var(--technology-blue);

  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;

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


.technology-workflow-card h3 {
  margin:
    12px 0 0;

  color:
    var(--technology-pure-white);

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

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

  letter-spacing: -0.03em;
}


.technology-workflow-card ul {
  margin:
    22px 0 0;

  padding-left: 20px;

  color:
    var(--technology-text-muted);

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


.technology-workflow-card li + li {
  margin-top: 7px;
}


.technology-workflow-arrow {
  color:
    var(--technology-blue);

  font-size:
    clamp(2rem, 3vw, 3.2rem);

  font-weight: 300;
  line-height: 1;
}


/* =========================================================
   09. VISUALIZACIÓN DEL SOFTWARE
   ========================================================= */

.technology-software-section {
  position: relative;

  width: 100%;

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

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #f8fafc,
      var(--technology-light-background)
    );
}


.technology-software-container {
  width:
    min(
      88%,
      var(--technology-max-width)
    );

  margin-inline: auto;

  display: grid;

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

  align-items: center;

  gap:
    clamp(44px, 6vw, 90px);
}


.technology-software-visual {
  width: 100%;

  min-height: 500px;

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

  padding:
    clamp(20px, 3vw, 40px);

  overflow: hidden;

  border:
    1px solid rgba(14, 49, 82, 0.12);

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

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(55, 163, 248, 0.12),
      transparent 64%
    ),
    #eef4f8;

  box-shadow:
    var(--technology-shadow-light);
}


.technology-software-visual img {
  display: block;

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

  height: auto;

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

  filter:
    drop-shadow(
      0 28px 34px rgba(0, 0, 0, 0.25)
    );
}


.technology-software-content {
  width: 100%;
  max-width: 600px;
}


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

  margin-bottom: 26px;

  display: flex;
  align-items: center;

  gap: 15px;
}


.technology-inline-brand-logo {
  width: 62px;
  height: 62px;

  flex:
    0 0 62px;

  object-fit: contain;
}


.technology-inline-brand-name {
  margin: 0;

  font-size:
    clamp(1.8rem, 2.4vw, 2.65rem);

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

  letter-spacing: -0.05em;
}


.technology-software-content h2 {
  color:
    var(--technology-heading-dark);
}


.technology-software-description {
  margin:
    25px 0 0;

  color:
    var(--technology-body-dark);

  font-size:
    clamp(1.03rem, 1.13vw, 1.2rem);

  line-height: 1.68;
}


/* En fondo claro, el nombre blanco debe verse oscuro */

.technology-software-section
.technology-name-white {
  color:
    var(--technology-heading-dark);
}


/* =========================================================
   10. APLICACIONES
   ========================================================= */

.technology-applications-section {
  position: relative;

  width: 100%;

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

  background:
    var(--technology-pure-white);
}


.technology-application-tags {
  width: 100%;

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

  gap: 14px;
}


.technology-application-tags span {
  min-height: 52px;

  padding:
    0 22px;

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

  color:
    var(--technology-heading-dark);

  font-size:
    clamp(0.95rem, 1vw, 1.06rem);

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

  border:
    1px solid rgba(14, 49, 82, 0.16);

  border-radius: 999px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f4f8fb
    );

  box-shadow:
    0 10px 28px rgba(10, 37, 66, 0.07);

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


.technology-application-tags span:hover {
  color:
    var(--technology-blue-dark);

  transform:
    translateY(-2px);

  border-color:
    rgba(55, 163, 248, 0.42);
}


/* =========================================================
   11. ECOSISTEMA GEOPLOT
   ========================================================= */

.technology-ecosystem-section {
  position: relative;

  width: 100%;

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

  overflow: hidden;

  color:
    var(--technology-pure-white);

  background:
    radial-gradient(
      circle at 16% 24%,
      rgba(55, 163, 248, 0.15),
      transparent 30rem
    ),
    linear-gradient(
      135deg,
      var(--technology-dark) 0%,
      var(--technology-dark-blue) 56%,
      var(--technology-deep-blue) 100%
    );
}


.technology-ecosystem-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap:
    clamp(22px, 2.6vw, 36px);
}


.technology-ecosystem-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  min-height: 560px;

  border:
    1px solid var(--technology-border-light);

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

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

  box-shadow:
    var(--technology-shadow-dark);

  backdrop-filter:
    blur(12px);

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


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

  border-color:
    rgba(55, 163, 248, 0.36);
}


.technology-ecosystem-image {
  width: 100%;
  height: 245px;

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

  overflow: hidden;

  background:
    #092746;
}


.technology-ecosystem-image img {
  display: block;

  width: 100%;
  height: 100%;

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


.technology-ecosystem-image-placeholder {
  position: relative;

  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(55, 163, 248, 0.35),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      #0b3157,
      #092746 55%,
      #06172d
    );
}


.technology-ecosystem-image-placeholder::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.22;

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

  background-size:
    34px 34px;
}


.technology-ecosystem-image-placeholder span {
  position: relative;
  z-index: 2;

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

  font-size: 0.78rem;
  font-weight: 850;

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


.technology-ecosystem-card-content {
  flex: 1;

  padding:
    30px 28px 32px;

  display: flex;
  flex-direction: column;
}


.technology-ecosystem-label {
  margin: 0;

  color:
    var(--technology-orange);

  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;

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


.technology-ecosystem-card h3 {
  margin:
    17px 0 0;

  color:
    var(--technology-pure-white);

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

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

  letter-spacing: -0.035em;
}


.technology-ecosystem-card-content > p:not(.technology-ecosystem-label) {
  margin:
    18px 0 0;

  color:
    var(--technology-text-muted);

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


.technology-ecosystem-link {
  width: fit-content;

  margin-top: auto;
  padding-top: 28px;

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

  gap: 10px;

  color:
    var(--technology-blue);

  text-decoration: none;

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

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


.technology-ecosystem-link:hover,
.technology-ecosystem-link:focus-visible {
  color:
    var(--technology-pure-white);

  transform:
    translateX(3px);
}


.technology-campus-brand {
  width: 100%;

  margin-bottom: 20px;
}


.technology-campus-brand img {
  display: block;

  width: auto;
  max-width: 220px;

  height: 58px;

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


/* =========================================================
   12. LLAMADO A LA ACCIÓN
   ========================================================= */

.technology-cta-section {
  position: relative;

  width: 100%;

  padding:
    clamp(72px, 7vw, 110px)
    0;

  overflow: hidden;

  color:
    var(--technology-pure-white);

  background:
    linear-gradient(
      135deg,
      #071d35,
      #092f54 58%,
      #0b3c68
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.22);
}


.technology-cta-section::before {
  content: "";

  position: absolute;

  top: -16rem;
  right: -11rem;

  width: 34rem;
  height: 34rem;

  pointer-events: none;

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

  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.02),
    0 0 0 140px rgba(255, 255, 255, 0.012);
}


.technology-cta-container {
  position: relative;
  z-index: 2;

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

  margin-inline: auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap:
    clamp(36px, 6vw, 90px);
}


.technology-cta-content {
  max-width: 900px;
}


.technology-cta-content h2 {
  color:
    var(--technology-pure-white);
}


.technology-cta-content > p:last-child {
  max-width: 760px;

  margin:
    23px 0 0;

  color:
    var(--technology-text-muted);

  font-size:
    clamp(1.03rem, 1.12vw, 1.2rem);

  line-height: 1.66;
}


.technology-cta-actions {
  display: flex;
  justify-content: flex-end;
}


/* =========================================================
   13. AJUSTES PARTICULARES CENSUSANALYTICS
   ========================================================= */

.censusanalytics-page
.technology-hero {
  background-position:
    var(--technology-hero-position, center center);
}


.censusanalytics-page
.technology-brand-logo {
  filter:
    drop-shadow(
      0 16px 24px rgba(0, 0, 0, 0.34)
    );
}


/* =========================================================
   14. TABLET HORIZONTAL
   ========================================================= */

@media (max-width: 1100px) {

  .technology-hero {
    height: auto;

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


  .technology-hero-container {
    height: auto;

    padding:
      90px 0;
  }


  .technology-hero-content {
    transform: none;
  }


  .technology-brand-name {
    font-size:
      clamp(2.8rem, 6vw, 4.6rem);
  }


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


  .technology-workflow-grid {
    grid-template-columns:
      1fr;

    gap: 22px;
  }


  .technology-workflow-arrow {
    transform:
      rotate(90deg);

    justify-self: center;
  }


  .technology-workflow-card {
    min-height: 0;
  }


  .technology-software-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);

    gap: 42px;
  }


  .technology-ecosystem-grid {
    gap: 22px;
  }

}


/* =========================================================
   15. TABLET VERTICAL
   ========================================================= */

@media (max-width: 820px) {

  .technology-hero {
    min-height: 680px;

    background-position:
      var(--technology-hero-position-mobile, 70% center);
  }


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

    padding:
      72px 0;
  }


  .technology-brand {
    gap: 18px;
  }


  .technology-brand-logo {
    width: 92px;
    height: 92px;
  }


  .technology-brand-name {
    font-size:
      clamp(2.35rem, 8vw, 3.6rem);
  }


  .technology-hero-subtitle {
    margin-top: 28px;

    font-size:
      clamp(1.3rem, 4.7vw, 1.7rem);
  }


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


  .technology-introduction-section,
  .technology-capabilities-section,
  .technology-applications-section {
    padding:
      70px 0;
  }


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

    grid-template-columns: 1fr;

    gap: 32px;
  }


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


  .technology-capabilities-grid {
    grid-template-columns: 1fr;
  }


  .technology-capability-card {
    min-height: 0;
  }


  .technology-workflow-section,
  .technology-ecosystem-section {
    padding:
      72px 0;
  }


  .technology-software-section {
    padding:
      72px 0;
  }


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

    grid-template-columns: 1fr;

    gap: 46px;
  }


  .technology-software-visual {
    min-height: 380px;
  }


  .technology-software-content {
    max-width: none;
  }


  .technology-ecosystem-grid {
    grid-template-columns: 1fr;
  }


  .technology-ecosystem-card {
    min-height: 0;
  }


  .technology-ecosystem-image {
    height: 300px;
  }


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

    grid-template-columns: 1fr;

    gap: 34px;
  }


  .technology-cta-actions {
    justify-content: flex-start;
  }

}


/* =========================================================
   16. CELULAR
   ========================================================= */

@media (max-width: 540px) {

  .technology-hero {
    min-height: 680px;
  }


  .technology-hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.94) 0%,
        rgba(0, 5, 15, 0.88) 65%,
        rgba(0, 0, 0, 0.48) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.22),
        rgba(2, 9, 20, 0.72)
      );
  }


  .technology-hero-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );

    padding:
      58px 0;
  }


  .technology-brand {
    width: 100%;

    align-items: center;

    gap: 14px;
  }


  .technology-brand-logo {
    width: 72px;
    height: 72px;

    flex-basis: 72px;
  }


  .technology-brand-name {
    font-size:
      clamp(2rem, 10vw, 2.85rem);

    white-space: normal;
  }


  .technology-eyebrow {
    font-size: 0.7rem;
  }


  .technology-hero-subtitle {
    margin-top: 24px;

    font-size:
      clamp(1.2rem, 5.6vw, 1.5rem);
  }


  .technology-hero-description {
    margin-top: 18px;

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


  .technology-hero-actions,
  .technology-software-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 12px;

    margin-top: 26px;
  }


  .technology-button {
    width: 100%;

    min-height: 54px;
  }


  .technology-introduction-section,
  .technology-capabilities-section,
  .technology-applications-section,
  .technology-workflow-section,
  .technology-software-section,
  .technology-ecosystem-section {
    padding:
      54px 0;
  }


  .technology-introduction-container,
  .technology-section-container,
  .technology-software-container {
    width:
      min(
        calc(100% - 24px),
        500px
      );
  }


  .technology-introduction-heading h2,
  .technology-section-header h2,
  .technology-software-content h2,
  .technology-cta-content h2 {
    font-size:
      clamp(2rem, 9vw, 2.65rem);
  }


  .technology-introduction-text {
    font-size:
      clamp(1rem, 4.35vw, 1.12rem);

    line-height: 1.68;
  }


  .technology-introduction-actions {
    align-items: stretch;
    flex-direction: column;
  }


  .technology-section-link {
    width: 100%;
  }


  .technology-capability-card {
    padding:
      30px 24px;
  }


  .technology-workflow-card {
    padding:
      30px 24px;
  }


  .technology-software-visual {
    min-height: 300px;

    padding: 18px;

    border-radius: 22px;
  }


  .technology-inline-brand-logo {
    width: 52px;
    height: 52px;

    flex-basis: 52px;
  }


  .technology-inline-brand-name {
    font-size:
      clamp(1.55rem, 7vw, 2.1rem);
  }


  .technology-application-tags {
    align-items: stretch;
    flex-direction: column;
  }


  .technology-application-tags span {
    width: 100%;

    justify-content: flex-start;

    border-radius: 14px;
  }


  .technology-ecosystem-image {
    height: 230px;
  }


  .technology-ecosystem-card-content {
    padding:
      26px 23px 28px;
  }


  .technology-campus-brand img {
    max-width: 190px;
    height: 52px;
  }


  .technology-cta-section {
    padding:
      58px 0;
  }


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


  .technology-cta-actions {
    align-items: stretch;
  }

}


/* =========================================================
   17. PANTALLAS BAJAS DE ESCRITORIO
   ========================================================= */

@media
  (min-width: 1101px)
  and
  (max-height: 780px) {

  .technology-hero {
    min-height: 640px;
  }


  .technology-hero-container {
    padding:
      28px 0 32px;
  }


  .technology-brand-logo {
    width: 100px;
    height: 100px;
  }


  .technology-brand-name {
    font-size:
      clamp(2.8rem, 4.4vw, 4.8rem);
  }


  .technology-hero-subtitle {
    margin-top: 25px;

    font-size:
      clamp(1.3rem, 1.6vw, 1.72rem);
  }


  .technology-hero-description {
    margin-top: 18px;

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


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


  .technology-button {
    min-height: 52px;
  }

}


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

@media (min-width: 1600px) {

  .technology-hero-container,
  .technology-introduction-container,
  .technology-section-container,
  .technology-software-container,
  .technology-cta-container {
    width:
      min(
        88%,
        var(--technology-max-width)
      );
  }

}


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

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

  .technology-button,
  .technology-section-link,
  .technology-capability-card,
  .technology-application-tags span,
  .technology-ecosystem-card,
  .technology-ecosystem-link {
    transition: none;
  }

}
/* =========================================================
   TSUNAMIGO — AJUSTES ESPECÍFICOS

   Corrige:
   - Fondo oscuro de App y Plataforma Web
   - Tamaño de logo TsunamiGo
   - Tamaño del icono Google Play
   - Tamaño del celular y computador
   - Colores de textos y botones
   ========================================================= */


/* =========================================================
   01. FONDO OSCURO PARA LAS DOS SECCIONES
   ========================================================= */

.tsunamigo-page .technology-software-section {
  position: relative;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 18% 36%,
      rgba(55, 163, 248, 0.17),
      transparent 31rem
    ),
    radial-gradient(
      circle at 84% 72%,
      rgba(248, 142, 6, 0.07),
      transparent 26rem
    ),
    linear-gradient(
      135deg,
      #00050c 0%,
      #020914 42%,
      #06172d 72%,
      #092746 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);
}


/* Segunda sección web ligeramente diferenciada */

.tsunamigo-page
.technology-software-section-web {
  background:
    radial-gradient(
      circle at 82% 36%,
      rgba(55, 163, 248, 0.18),
      transparent 32rem
    ),
    radial-gradient(
      circle at 16% 74%,
      rgba(248, 142, 6, 0.06),
      transparent 25rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 54%,
      #092746 100%
    );

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

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* Retícula tecnológica tenue */

.tsunamigo-page
.technology-software-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* El contenido queda encima de la retícula */

.tsunamigo-page
.technology-software-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   02. COLORES DE TEXTOS SOBRE FONDO OSCURO
   ========================================================= */

.tsunamigo-page
.technology-software-content h2 {
  color: #ffffff;
}


.tsunamigo-page
.technology-software-description {
  color:
    rgba(255, 255, 255, 0.79);
}


.tsunamigo-page
.technology-software-section
.technology-name-white {
  color: #f4f4f4;
}


.tsunamigo-page
.technology-software-section
.technology-section-eyebrow {
  color: #f88e06;
}


/* =========================================================
   03. LOGO Y NOMBRE TSUNAMIGO MÁS GRANDES
   ========================================================= */

.tsunamigo-page
.technology-inline-brand {
  width: fit-content;

  margin-bottom: 30px;

  gap: 18px;
}


.tsunamigo-page
.technology-inline-brand-logo {
  width: 86px;
  height: 86px;

  min-width: 86px;

  flex:
    0 0 86px;

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

  filter:
    drop-shadow(
      0 14px 22px rgba(0, 0, 0, 0.35)
    );
}


.tsunamigo-page
.technology-inline-brand-name {
  margin: 0;

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

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

  letter-spacing: -0.055em;
}


/* Símbolo de marca pequeño y elevado */

.tsunamigo-page
.technology-trademark {
  position: relative;

  top: -0.72em;

  margin-left: 5px;

  color: #ffffff;

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


/* =========================================================
   04. RECUADROS VISUALES OSCUROS
   ========================================================= */

.tsunamigo-page
.technology-software-visual {
  min-height: 570px;

  padding:
    clamp(18px, 2.2vw, 30px);

  border:
    1px solid rgba(55, 163, 248, 0.23);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(55, 163, 248, 0.15),
      transparent 63%
    ),
    linear-gradient(
      145deg,
      rgba(8, 31, 56, 0.94),
      rgba(1, 9, 20, 0.98)
    );

  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}


/* =========================================================
   05. IMAGEN DEL CELULAR
   ========================================================= */

.tsunamigo-page
#visualizacion-tsunamigo
.technology-software-visual {
  min-height: 670px;

  padding:
    12px 24px;
}


.tsunamigo-page
#visualizacion-tsunamigo
.technology-software-visual img {
  display: block;

  width: auto;
  max-width: 100%;

  height: min(670px, 72vh);
  max-height: 670px;

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

  filter:
    drop-shadow(
      0 32px 40px rgba(0, 0, 0, 0.48)
    );
}


/* =========================================================
   06. IMAGEN DEL COMPUTADOR MÁS GRANDE
   ========================================================= */

.tsunamigo-page
#plataforma-web-tsunamigo
.technology-software-container {
  grid-template-columns:
    minmax(350px, 0.82fr)
    minmax(0, 1.18fr);
}


.tsunamigo-page
#plataforma-web-tsunamigo
.technology-software-visual {
  min-height: 590px;

  padding:
    18px;
}


.tsunamigo-page
#plataforma-web-tsunamigo
.technology-software-visual img {
  display: block;

  width: 112%;
  max-width: 940px;

  height: auto;

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

  transform:
    scale(1.08);

  filter:
    drop-shadow(
      0 34px 42px rgba(0, 0, 0, 0.5)
    );
}


/* =========================================================
   07. GOOGLE PLAY — EVITAR ÍCONO GIGANTE
   ========================================================= */

.tsunamigo-page
.technology-mobile-availability {
  width: 100%;

  margin-top: 28px;
}


.tsunamigo-page
.technology-google-play-status {
  width: 100%;
  max-width: 610px;

  padding:
    18px 20px;

  display: flex;
  align-items: center;

  gap: 18px;

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

  border-radius: 16px;

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

  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.2);

  backdrop-filter:
    blur(10px);
}


/* Regla crucial:
   limita exclusivamente el icono de Google Play */

.tsunamigo-page
.technology-google-play-status > img {
  display: block;

  width: 58px;
  height: 58px;

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

  flex:
    0 0 58px;

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


.tsunamigo-page
.technology-google-play-status > div {
  min-width: 0;
}


.tsunamigo-page
.technology-google-play-status strong {
  display: block;

  margin: 0;

  color: #ffffff;

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

  font-weight: 850;
  line-height: 1.3;
}


.tsunamigo-page
.technology-google-play-status p {
  margin:
    7px 0 0;

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

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

  line-height: 1.55;
}


/* =========================================================
   08. BOTÓN OSCURO SOBRE FONDO OSCURO
   ========================================================= */

.tsunamigo-page
.technology-software-section
.technology-button-dark {
  color: #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.tsunamigo-page
.technology-software-section
.technology-button-dark:hover,
.tsunamigo-page
.technology-software-section
.technology-button-dark:focus-visible {
  color: #ffffff;

  border-color: #37a3f8;

  background:
    rgba(55, 163, 248, 0.18);
}


/* =========================================================
   09. TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-container {
    grid-template-columns:
      minmax(310px, 0.88fr)
      minmax(0, 1.12fr);
  }


  .tsunamigo-page
  .technology-software-visual {
    min-height: 500px;
  }


  .tsunamigo-page
  #visualizacion-tsunamigo
  .technology-software-visual {
    min-height: 600px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual {
    min-height: 500px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual img {
    width: 108%;

    transform:
      scale(1.04);
  }

}


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

@media (max-width: 820px) {

  .tsunamigo-page
  .technology-software-container,
  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-container {
    grid-template-columns: 1fr;
  }


  /* En móvil, imagen primero y texto después */

  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual {
    order: 1;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-content {
    order: 2;
  }


  .tsunamigo-page
  .technology-inline-brand-logo {
    width: 74px;
    height: 74px;

    min-width: 74px;

    flex-basis: 74px;
  }


  .tsunamigo-page
  .technology-inline-brand-name {
    font-size:
      clamp(2rem, 7vw, 2.8rem);
  }


  .tsunamigo-page
  #visualizacion-tsunamigo
  .technology-software-visual {
    min-height: 560px;
  }


  .tsunamigo-page
  #visualizacion-tsunamigo
  .technology-software-visual img {
    height: 540px;
    max-height: 540px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual {
    min-height: 430px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual img {
    width: 108%;
    max-width: 760px;

    transform:
      scale(1.03);
  }

}


/* =========================================================
   11. CELULAR
   ========================================================= */

@media (max-width: 540px) {

  .tsunamigo-page
  .technology-inline-brand {
    gap: 13px;
  }


  .tsunamigo-page
  .technology-inline-brand-logo {
    width: 62px;
    height: 62px;

    min-width: 62px;

    flex-basis: 62px;
  }


  .tsunamigo-page
  .technology-inline-brand-name {
    font-size:
      clamp(1.72rem, 8vw, 2.3rem);
  }


  .tsunamigo-page
  #visualizacion-tsunamigo
  .technology-software-visual {
    min-height: 480px;

    padding:
      12px;
  }


  .tsunamigo-page
  #visualizacion-tsunamigo
  .technology-software-visual img {
    height: 460px;
    max-height: 460px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual {
    min-height: 310px;

    padding: 10px;
  }


  .tsunamigo-page
  #plataforma-web-tsunamigo
  .technology-software-visual img {
    width: 112%;

    transform:
      scale(1.04);
  }


  .tsunamigo-page
  .technology-google-play-status {
    padding:
      15px;

    align-items: flex-start;

    gap: 14px;
  }


  .tsunamigo-page
  .technology-google-play-status > img {
    width: 48px;
    height: 48px;

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

    flex-basis: 48px;
  }

}
/* =========================================================
   TSUNAMIGO — APLICACIONES CON FONDO OSCURO
   ========================================================= */

.tsunamigo-page
.technology-applications-section {
  position: relative;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(55, 163, 248, 0.16),
      transparent 30rem
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(248, 142, 6, 0.06),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 55%,
      #092746 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* Retícula tenue */

.tsunamigo-page
.technology-applications-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* Contenido encima de la retícula */

.tsunamigo-page
.technology-applications-section
.technology-section-container {
  position: relative;
  z-index: 2;
}


/* Título y texto */

.tsunamigo-page
.technology-applications-section
.technology-section-header h2 {
  color: #ffffff;
}


.tsunamigo-page
.technology-applications-section
.technology-section-header > p:last-child {
  color:
    rgba(255, 255, 255, 0.76);
}


/* Etiqueta superior naranja */

.tsunamigo-page
.technology-applications-section
.technology-section-eyebrow {
  color: #f88e06;
}


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

.tsunamigo-page
.technology-applications-section
.technology-application-tags span {
  color: #ffffff;

  border:
    1px solid rgba(55, 163, 248, 0.34);

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

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24);

  backdrop-filter:
    blur(8px);
}


/* Hover */

.tsunamigo-page
.technology-applications-section
.technology-application-tags span:hover {
  color: #ffffff;

  transform:
    translateY(-3px);

  border-color:
    #37a3f8;

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.26),
      rgba(11, 111, 194, 0.16)
    );

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3);
}
/* =========================================================
   TSUNAMIGO — CAPACIDADES CON FONDO OSCURO
   ========================================================= */

.tsunamigo-page
.technology-capabilities-section {
  position: relative;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(55, 163, 248, 0.16),
      transparent 30rem
    ),
    radial-gradient(
      circle at 84% 76%,
      rgba(248, 142, 6, 0.06),
      transparent 25rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 56%,
      #092746 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* Retícula tecnológica tenue */

.tsunamigo-page
.technology-capabilities-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* Contenido por encima del fondo */

.tsunamigo-page
.technology-capabilities-section
.technology-section-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.tsunamigo-page
.technology-capabilities-section
.technology-section-header h2 {
  color: #ffffff;
}


.tsunamigo-page
.technology-capabilities-section
.technology-section-header > p:last-child {
  color:
    rgba(255, 255, 255, 0.76);
}


.tsunamigo-page
.technology-capabilities-section
.technology-section-eyebrow {
  color: #f88e06;
}


/* =========================================================
   TARJETAS DE CAPACIDADES
   ========================================================= */

.tsunamigo-page
.technology-capabilities-section
.technology-capability-card {
  color: #ffffff;

  border:
    1px solid rgba(55, 163, 248, 0.26);

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

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.26);

  backdrop-filter:
    blur(10px);
}


/* Luz decorativa de esquina */

.tsunamigo-page
.technology-capabilities-section
.technology-capability-card::before {
  background:
    radial-gradient(
      circle at top right,
      rgba(55, 163, 248, 0.18),
      transparent 70%
    );
}


/* Número */

.tsunamigo-page
.technology-capabilities-section
.technology-card-number {
  color: #f88e06;
}


/* Título de cada tarjeta */

.tsunamigo-page
.technology-capabilities-section
.technology-capability-card h3 {
  color: #ffffff;
}


/* Texto de cada tarjeta */

.tsunamigo-page
.technology-capabilities-section
.technology-capability-card p {
  color:
    rgba(255, 255, 255, 0.74);
}


/* Hover */

.tsunamigo-page
.technology-capabilities-section
.technology-capability-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(55, 163, 248, 0.62);

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.18),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.34);
}
/* =========================================================
   TSUNAMIGO — INTRODUCCIÓN / QUÉ HACE LA TECNOLOGÍA
   Fondo oscuro + aumento de tamaño de texto
   ========================================================= */

.tsunamigo-page
.technology-introduction-section {
  position: relative;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(55, 163, 248, 0.16),
      transparent 30rem
    ),
    radial-gradient(
      circle at 84% 26%,
      rgba(248, 142, 6, 0.05),
      transparent 22rem
    ),
    linear-gradient(
      135deg,
      #020914 0%,
      #06172d 56%,
      #092746 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* Retícula tenue */

.tsunamigo-page
.technology-introduction-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* Decoración circular más suave sobre fondo oscuro */

.tsunamigo-page
.technology-introduction-section::after {
  content: "";

  position: absolute;
  top: -14rem;
  right: -10rem;

  width: 34rem;
  height: 34rem;

  border-radius: 50%;

  pointer-events: none;

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

  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.015),
    0 0 0 130px rgba(255, 255, 255, 0.008);
}


/* Contenido sobre el fondo */

.tsunamigo-page
.technology-introduction-container {
  position: relative;
  z-index: 2;
}


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

.tsunamigo-page
.technology-introduction-section
.technology-section-eyebrow {
  color: #f88e06;
}


.tsunamigo-page
.technology-introduction-heading h2 {
  color: #ffffff;
}


/* =========================================================
   COLUMNA DERECHA — DESCRIPCIÓN
   Aumenta tamaño de letra
   ========================================================= */

.tsunamigo-page
.technology-introduction-text {
  color:
    rgba(255, 255, 255, 0.82);

  font-size:
    clamp(1.18rem, 1.28vw, 1.4rem);

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


/* =========================================================
   CASO DE ESTUDIO
   Más grande y más visible
   ========================================================= */

.tsunamigo-page
.technology-application-inline {
  margin-top: 32px;
  padding-top: 26px;

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

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

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

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


.tsunamigo-page
.technology-application-inline strong {
  color: #f88e06;

  font-weight: 850;
}


/* =========================================================
   BOTONES EN ESTA SECCIÓN
   ========================================================= */

.tsunamigo-page
.technology-introduction-actions {
  margin-top: 34px;
}


.tsunamigo-page
.technology-introduction-section
.technology-section-link {
  color: #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.tsunamigo-page
.technology-introduction-section
.technology-section-link:hover,
.tsunamigo-page
.technology-introduction-section
.technology-section-link:focus-visible {
  color: #ffffff;

  border-color: #37a3f8;

  background:
    rgba(55, 163, 248, 0.18);
}


.tsunamigo-page
.technology-introduction-section
.technology-section-link-primary {
  color: #ffffff;

  border-color: #f88e06;

  background: #f88e06;
}


.tsunamigo-page
.technology-introduction-section
.technology-section-link-primary:hover,
.tsunamigo-page
.technology-introduction-section
.technology-section-link-primary:focus-visible {
  color: #ffffff;

  border-color: #ff9d26;

  background: #ff9d26;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {

  .tsunamigo-page
  .technology-introduction-text {
    font-size:
      clamp(1.08rem, 2.4vw, 1.22rem);

    line-height: 1.76;
  }


  .tsunamigo-page
  .technology-application-inline {
    font-size:
      clamp(1.04rem, 2.2vw, 1.16rem);

    line-height: 1.72;
  }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 540px) {

  .tsunamigo-page
  .technology-introduction-text {
    font-size:
      clamp(1.04rem, 4.35vw, 1.14rem);

    line-height: 1.72;
  }


  .tsunamigo-page
  .technology-application-inline {
    font-size:
      clamp(1rem, 4.1vw, 1.1rem);

    line-height: 1.68;
  }

}
/* =========================================================
   MORPHOFLOW — PLANTILLA OSCURA TIPO TSUNAMIGO

   Ajustes:
   - Primera sección después del hero oscura
   - Capacidades oscuras
   - Visualización del software oscura
   - Aplicaciones oscuras
   - Textos y subtítulos más grandes
   - Tarjetas translúcidas
   - Imagen del computador más grande
   ========================================================= */


/* =========================================================
   01. VARIABLES ESPECÍFICAS MORPHOFLOW
   ========================================================= */

.morphoflow-page {
  --morphoflow-dark: #020914;
  --morphoflow-dark-blue: #06172d;
  --morphoflow-deep-blue: #092746;

  --morphoflow-blue: #37a3f8;
  --morphoflow-orange: #f88e06;

  --morphoflow-white: #ffffff;

  --morphoflow-text:
    rgba(255, 255, 255, 0.84);

  --morphoflow-text-strong:
    rgba(255, 255, 255, 0.94);

  --morphoflow-border:
    rgba(55, 163, 248, 0.26);
}


/* =========================================================
   02. FONDO OSCURO COMPARTIDO
   ========================================================= */

.morphoflow-page
.technology-introduction-section,

.morphoflow-page
.technology-capabilities-section,

.morphoflow-page
.technology-software-section,

.morphoflow-page
.technology-applications-section {
  position: relative;

  overflow: hidden;

  color:
    var(--morphoflow-white);

  background:
    radial-gradient(
      circle at 17% 26%,
      rgba(55, 163, 248, 0.17),
      transparent 31rem
    ),
    radial-gradient(
      circle at 85% 72%,
      rgba(248, 142, 6, 0.065),
      transparent 25rem
    ),
    linear-gradient(
      135deg,
      var(--morphoflow-dark) 0%,
      var(--morphoflow-dark-blue) 56%,
      var(--morphoflow-deep-blue) 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* =========================================================
   03. RETÍCULA GEOMÉTRICA TENUE
   ========================================================= */

.morphoflow-page
.technology-introduction-section::before,

.morphoflow-page
.technology-capabilities-section::before,

.morphoflow-page
.technology-software-section::before,

.morphoflow-page
.technology-applications-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* Contenido por encima del fondo */

.morphoflow-page
.technology-introduction-container,

.morphoflow-page
.technology-capabilities-section
.technology-section-container,

.morphoflow-page
.technology-software-container,

.morphoflow-page
.technology-applications-section
.technology-section-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   04. TÍTULOS Y SUBTÍTULOS GENERALES
   ========================================================= */

.morphoflow-page
.technology-introduction-heading h2,

.morphoflow-page
.technology-capabilities-section
.technology-section-header h2,

.morphoflow-page
.technology-software-content h2,

.morphoflow-page
.technology-applications-section
.technology-section-header h2 {
  color:
    var(--morphoflow-white);
}


/* Aumentar títulos de sección */

.morphoflow-page
.technology-section-header h2,

.morphoflow-page
.technology-software-content h2 {
  font-size:
    clamp(2.45rem, 3.45vw, 4rem);

  line-height: 1.07;

  letter-spacing: -0.045em;
}


/* Etiquetas superiores */

.morphoflow-page
.technology-section-eyebrow {
  color:
    var(--morphoflow-orange);

  font-size:
    clamp(0.8rem, 0.86vw, 0.92rem);

  font-weight: 900;

  letter-spacing: 0.17em;
}


/* Texto introductorio de los encabezados */

.morphoflow-page
.technology-section-header > p:last-child {
  max-width: 800px;

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

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

  line-height: 1.72;
}


/* =========================================================
   05. PRIMERA SECCIÓN DESPUÉS DEL HERO
   ========================================================= */

.morphoflow-page
.technology-introduction-section {
  padding:
    clamp(90px, 8vw, 138px)
    0;
}


/* Título de columna izquierda */

.morphoflow-page
.technology-introduction-heading h2 {
  color:
    var(--morphoflow-white);

  font-size:
    clamp(2.65rem, 3.65vw, 4.25rem);

  line-height: 1.06;

  letter-spacing: -0.05em;
}


/* Párrafo principal más grande */

.morphoflow-page
.technology-introduction-text {
  color:
    var(--morphoflow-text);

  font-size:
    clamp(1.18rem, 1.28vw, 1.4rem);

  font-weight: 400;

  line-height: 1.8;
}


/* Caso de estudio */

.morphoflow-page
.technology-application-inline {
  margin-top: 32px;

  padding-top: 26px;

  color:
    var(--morphoflow-text-strong);

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

  font-weight: 600;

  line-height: 1.78;

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


.morphoflow-page
.technology-application-inline strong {
  color:
    var(--morphoflow-orange);

  font-weight: 850;
}


/* Botones de esta sección */

.morphoflow-page
.technology-introduction-section
.technology-section-link {
  color:
    #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.morphoflow-page
.technology-introduction-section
.technology-section-link:hover,
.morphoflow-page
.technology-introduction-section
.technology-section-link:focus-visible {
  color:
    #ffffff;

  border-color:
    var(--morphoflow-blue);

  background:
    rgba(55, 163, 248, 0.18);
}


.morphoflow-page
.technology-introduction-section
.technology-section-link-primary {
  color:
    #ffffff;

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

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


.morphoflow-page
.technology-introduction-section
.technology-section-link-primary:hover,
.morphoflow-page
.technology-introduction-section
.technology-section-link-primary:focus-visible {
  border-color:
    #ff9d26;

  background:
    #ff9d26;
}


/* =========================================================
   06. CAPACIDADES PRINCIPALES
   ========================================================= */

.morphoflow-page
.technology-capability-card {
  color:
    #ffffff;

  border:
    1px solid var(--morphoflow-border);

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

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.28);

  backdrop-filter:
    blur(10px);
}


.morphoflow-page
.technology-capability-card::before {
  background:
    radial-gradient(
      circle at top right,
      rgba(55, 163, 248, 0.19),
      transparent 70%
    );
}


.morphoflow-page
.technology-capability-card h3 {
  color:
    #ffffff;

  font-size:
    clamp(1.48rem, 1.65vw, 1.82rem);
}


.morphoflow-page
.technology-capability-card p {
  color:
    rgba(255, 255, 255, 0.74);

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

  line-height: 1.68;
}


.morphoflow-page
.technology-card-number {
  color:
    var(--morphoflow-orange);
}


.morphoflow-page
.technology-capability-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(55, 163, 248, 0.65);

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.18),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.36);
}


/* =========================================================
   07. VISUALIZACIÓN DEL SOFTWARE
   ========================================================= */

.morphoflow-page
.technology-software-section {
  padding:
    clamp(92px, 8vw, 145px)
    0;
}


.morphoflow-page
.technology-software-container {
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);

  gap:
    clamp(52px, 6vw, 96px);
}


/* Recuadro oscuro de la imagen */

.morphoflow-page
.technology-software-visual {
  min-height: 590px;

  padding:
    clamp(18px, 2.4vw, 32px);

  border:
    1px solid rgba(55, 163, 248, 0.25);

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(55, 163, 248, 0.16),
      transparent 64%
    ),
    linear-gradient(
      145deg,
      rgba(8, 31, 56, 0.95),
      rgba(1, 9, 20, 0.98)
    );

  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.42);

  backdrop-filter:
    blur(10px);
}


/* Computador más grande */

.morphoflow-page
.technology-software-visual img {
  width: 112%;
  max-width: 940px;

  height: auto;

  object-fit: contain;

  transform:
    scale(1.08);

  filter:
    drop-shadow(
      0 34px 42px rgba(0, 0, 0, 0.52)
    );
}


/* Marca MorphoFlow más grande */

.morphoflow-page
.technology-inline-brand {
  gap: 18px;

  margin-bottom: 30px;
}


.morphoflow-page
.technology-inline-brand-logo {
  width: 86px;
  height: 86px;

  min-width: 86px;

  flex:
    0 0 86px;

  filter:
    drop-shadow(
      0 14px 22px rgba(0, 0, 0, 0.35)
    );
}


.morphoflow-page
.technology-inline-brand-name {
  font-size:
    clamp(2.25rem, 3vw, 3.45rem);

  font-weight: 900;

  line-height: 0.96;

  letter-spacing: -0.055em;
}


.morphoflow-page
.technology-software-description {
  color:
    rgba(255, 255, 255, 0.81);

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

  line-height: 1.75;
}


/* En fondo oscuro, Morpho debe ir blanco */

.morphoflow-page
.technology-software-section
.technology-name-white {
  color:
    #ffffff;
}


/* Botón secundario visible */

.morphoflow-page
.technology-software-section
.technology-button-dark {
  color:
    #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.morphoflow-page
.technology-software-section
.technology-button-dark:hover,
.morphoflow-page
.technology-software-section
.technology-button-dark:focus-visible {
  border-color:
    var(--morphoflow-blue);

  background:
    rgba(55, 163, 248, 0.18);
}


/* =========================================================
   08. APLICACIONES GEOMORFOLÓGICAS
   ========================================================= */

.morphoflow-page
.technology-application-tags span {
  color:
    #ffffff;

  border:
    1px solid rgba(55, 163, 248, 0.34);

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

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.25);

  backdrop-filter:
    blur(8px);
}


.morphoflow-page
.technology-application-tags span:hover {
  color:
    #ffffff;

  transform:
    translateY(-3px);

  border-color:
    var(--morphoflow-blue);

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.26),
      rgba(11, 111, 194, 0.16)
    );

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


/* =========================================================
   09. RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .morphoflow-page
  .technology-software-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);
  }


  .morphoflow-page
  .technology-software-visual {
    min-height: 500px;
  }


  .morphoflow-page
  .technology-software-visual img {
    width: 108%;

    transform:
      scale(1.04);
  }

}


@media (max-width: 820px) {

  .morphoflow-page
  .technology-introduction-heading h2 {
    font-size:
      clamp(2.35rem, 7.5vw, 3.2rem);
  }


  .morphoflow-page
  .technology-introduction-text {
    font-size:
      clamp(1.08rem, 2.5vw, 1.24rem);

    line-height: 1.76;
  }


  .morphoflow-page
  .technology-application-inline {
    font-size:
      clamp(1.04rem, 2.3vw, 1.17rem);

    line-height: 1.72;
  }


  .morphoflow-page
  .technology-software-container {
    grid-template-columns: 1fr;
  }


  .morphoflow-page
  .technology-software-visual {
    min-height: 430px;
  }


  .morphoflow-page
  .technology-software-visual img {
    width: 108%;
    max-width: 760px;

    transform:
      scale(1.03);
  }


  .morphoflow-page
  .technology-inline-brand-logo {
    width: 74px;
    height: 74px;

    min-width: 74px;

    flex-basis: 74px;
  }

}


@media (max-width: 540px) {

  .morphoflow-page
  .technology-introduction-heading h2 {
    font-size:
      clamp(2rem, 9vw, 2.7rem);
  }


  .morphoflow-page
  .technology-introduction-text {
    font-size:
      clamp(1.04rem, 4.35vw, 1.14rem);

    line-height: 1.72;
  }


  .morphoflow-page
  .technology-application-inline {
    font-size:
      clamp(1rem, 4.1vw, 1.1rem);

    line-height: 1.68;
  }


  .morphoflow-page
  .technology-software-visual {
    min-height: 310px;

    padding: 12px;
  }


  .morphoflow-page
  .technology-software-visual img {
    width: 112%;

    transform:
      scale(1.04);
  }


  .morphoflow-page
  .technology-inline-brand-logo {
    width: 62px;
    height: 62px;

    min-width: 62px;

    flex-basis: 62px;
  }


  .morphoflow-page
  .technology-inline-brand-name {
    font-size:
      clamp(1.72rem, 8vw, 2.3rem);
  }

}
/* =========================================================
   CHIRPVIEW — PLANTILLA OSCURA
   Fondo negro azulado + contraste alto
   ========================================================= */


/* =========================================================
   01. VARIABLES ESPECÍFICAS
   ========================================================= */

.chirpview-page {
  --chirp-dark: #020914;
  --chirp-dark-blue: #06172d;
  --chirp-deep-blue: #092746;

  --chirp-blue: #37a3f8;
  --chirp-orange: #f88e06;

  --chirp-white: #ffffff;

  --chirp-text:
    rgba(255, 255, 255, 0.82);

  --chirp-text-strong:
    rgba(255, 255, 255, 0.94);

  --chirp-border:
    rgba(55, 163, 248, 0.28);
}


/* =========================================================
   02. SECCIONES CON FONDO NEGRO AZULADO
   ========================================================= */

.chirpview-page
.technology-introduction-section,

.chirpview-page
.technology-capabilities-section,

.chirpview-page
.technology-software-section,

.chirpview-page
.technology-applications-section {
  position: relative;

  overflow: hidden;

  color:
    var(--chirp-white);

  background:
    radial-gradient(
      circle at 17% 24%,
      rgba(55, 163, 248, 0.17),
      transparent 31rem
    ),
    radial-gradient(
      circle at 85% 74%,
      rgba(248, 142, 6, 0.06),
      transparent 25rem
    ),
    linear-gradient(
      135deg,
      var(--chirp-dark) 0%,
      var(--chirp-dark-blue) 56%,
      var(--chirp-deep-blue) 100%
    );

  border-top:
    1px solid rgba(55, 163, 248, 0.18);

  border-bottom:
    1px solid rgba(55, 163, 248, 0.18);
}


/* =========================================================
   03. RETÍCULA TECNOLÓGICA TENUE
   ========================================================= */

.chirpview-page
.technology-introduction-section::before,

.chirpview-page
.technology-capabilities-section::before,

.chirpview-page
.technology-software-section::before,

.chirpview-page
.technology-applications-section::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.11;

  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;
}


/* Contenido sobre el fondo */

.chirpview-page
.technology-introduction-container,

.chirpview-page
.technology-capabilities-section
.technology-section-container,

.chirpview-page
.technology-software-container,

.chirpview-page
.technology-applications-section
.technology-section-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   04. ENCABEZADOS Y TEXTOS GENERALES
   ========================================================= */

.chirpview-page
.technology-introduction-heading h2,

.chirpview-page
.technology-capabilities-section
.technology-section-header h2,

.chirpview-page
.technology-software-content h2,

.chirpview-page
.technology-applications-section
.technology-section-header h2 {
  color:
    var(--chirp-white);
}


.chirpview-page
.technology-section-eyebrow {
  color:
    var(--chirp-orange);
}


.chirpview-page
.technology-section-header > p:last-child {
  color:
    rgba(255, 255, 255, 0.76);
}


/* =========================================================
   05. PRIMERA SECCIÓN DESPUÉS DEL HERO
   ========================================================= */

.chirpview-page
.technology-introduction-section {
  padding:
    clamp(90px, 8vw, 138px)
    0;
}


/* Título izquierdo */

.chirpview-page
.technology-introduction-heading h2 {
  font-size:
    clamp(2.6rem, 3.65vw, 4.2rem);

  line-height: 1.06;

  letter-spacing: -0.05em;
}


/* Párrafo principal más grande */

.chirpview-page
.technology-introduction-text {
  color:
    var(--chirp-text);

  font-size:
    clamp(1.18rem, 1.28vw, 1.4rem);

  font-weight: 400;

  line-height: 1.8;
}


/* Caso de estudio */

.chirpview-page
.technology-application-inline {
  margin-top: 32px;

  padding-top: 26px;

  color:
    var(--chirp-text-strong);

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

  font-weight: 600;

  line-height: 1.78;

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


.chirpview-page
.technology-application-inline strong {
  color:
    var(--chirp-orange);

  font-weight: 850;
}


/* Botones de la introducción */

.chirpview-page
.technology-introduction-section
.technology-section-link {
  color: #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.chirpview-page
.technology-introduction-section
.technology-section-link:hover,
.chirpview-page
.technology-introduction-section
.technology-section-link:focus-visible {
  color: #ffffff;

  border-color:
    var(--chirp-blue);

  background:
    rgba(55, 163, 248, 0.18);
}


.chirpview-page
.technology-introduction-section
.technology-section-link-primary {
  color: #ffffff;

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

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


.chirpview-page
.technology-introduction-section
.technology-section-link-primary:hover,
.chirpview-page
.technology-introduction-section
.technology-section-link-primary:focus-visible {
  border-color: #ff9d26;

  background: #ff9d26;
}


/* =========================================================
   06. CAPACIDADES
   ========================================================= */

.chirpview-page
.technology-capability-card {
  color: #ffffff;

  border:
    1px solid var(--chirp-border);

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

  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.28);

  backdrop-filter:
    blur(10px);
}


.chirpview-page
.technology-capability-card::before {
  background:
    radial-gradient(
      circle at top right,
      rgba(55, 163, 248, 0.19),
      transparent 70%
    );
}


.chirpview-page
.technology-card-number {
  color:
    var(--chirp-orange);
}


.chirpview-page
.technology-capability-card h3 {
  color: #ffffff;

  font-size:
    clamp(1.46rem, 1.62vw, 1.82rem);
}


.chirpview-page
.technology-capability-card p {
  color:
    rgba(255, 255, 255, 0.74);

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

  line-height: 1.68;
}


.chirpview-page
.technology-capability-card:hover {
  transform:
    translateY(-5px);

  border-color:
    rgba(55, 163, 248, 0.65);

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.18),
      rgba(255, 255, 255, 0.045)
    );

  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.36);
}


/* =========================================================
   07. VISUALIZACIÓN DEL SOFTWARE
   ========================================================= */

.chirpview-page
.technology-software-section {
  padding:
    clamp(92px, 8vw, 145px)
    0;
}


.chirpview-page
.technology-software-container {
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(360px, 0.85fr);

  gap:
    clamp(52px, 6vw, 96px);
}


/* Recuadro oscuro */

.chirpview-page
.technology-software-visual {
  min-height: 590px;

  padding:
    clamp(18px, 2.4vw, 32px);

  border:
    1px solid rgba(55, 163, 248, 0.25);

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(55, 163, 248, 0.16),
      transparent 64%
    ),
    linear-gradient(
      145deg,
      rgba(8, 31, 56, 0.95),
      rgba(1, 9, 20, 0.98)
    );

  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.42);

  backdrop-filter:
    blur(10px);
}


/* Computador más grande */

.chirpview-page
.technology-software-visual img {
  width: 112%;
  max-width: 940px;

  height: auto;

  object-fit: contain;

  transform:
    scale(1.08);

  filter:
    drop-shadow(
      0 34px 42px rgba(0, 0, 0, 0.52)
    );
}


/* Logo y nombre más grandes */

.chirpview-page
.technology-inline-brand {
  gap: 18px;

  margin-bottom: 30px;
}


.chirpview-page
.technology-inline-brand-logo {
  width: 86px;
  height: 86px;

  min-width: 86px;

  flex:
    0 0 86px;

  filter:
    drop-shadow(
      0 14px 22px rgba(0, 0, 0, 0.35)
    );
}


.chirpview-page
.technology-inline-brand-name {
  font-size:
    clamp(2.25rem, 3vw, 3.45rem);

  font-weight: 900;

  line-height: 0.96;

  letter-spacing: -0.055em;
}


/* Chirp blanco y View azul */

.chirpview-page
.technology-software-section
.technology-name-white {
  color: #ffffff;
}


.chirpview-page
.technology-software-description {
  color:
    rgba(255, 255, 255, 0.81);

  font-size:
    clamp(1.12rem, 1.2vw, 1.3rem);

  line-height: 1.75;
}


/* Botón oscuro con contraste */

.chirpview-page
.technology-software-section
.technology-button-dark {
  color: #ffffff;

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

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

  backdrop-filter:
    blur(8px);
}


.chirpview-page
.technology-software-section
.technology-button-dark:hover,
.chirpview-page
.technology-software-section
.technology-button-dark:focus-visible {
  border-color:
    var(--chirp-blue);

  background:
    rgba(55, 163, 248, 0.18);
}


/* =========================================================
   08. APLICACIONES
   ========================================================= */

.chirpview-page
.technology-application-tags span {
  color: #ffffff;

  border:
    1px solid rgba(55, 163, 248, 0.34);

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

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.25);

  backdrop-filter:
    blur(8px);
}


.chirpview-page
.technology-application-tags span:hover {
  color: #ffffff;

  transform:
    translateY(-3px);

  border-color:
    var(--chirp-blue);

  background:
    linear-gradient(
      145deg,
      rgba(55, 163, 248, 0.26),
      rgba(11, 111, 194, 0.16)
    );

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


/* =========================================================
   09. RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

  .chirpview-page
  .technology-software-container {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);
  }


  .chirpview-page
  .technology-software-visual {
    min-height: 500px;
  }


  .chirpview-page
  .technology-software-visual img {
    width: 108%;

    transform:
      scale(1.04);
  }

}


@media (max-width: 820px) {

  .chirpview-page
  .technology-introduction-heading h2 {
    font-size:
      clamp(2.35rem, 7.5vw, 3.2rem);
  }


  .chirpview-page
  .technology-introduction-text {
    font-size:
      clamp(1.08rem, 2.5vw, 1.24rem);

    line-height: 1.76;
  }


  .chirpview-page
  .technology-application-inline {
    font-size:
      clamp(1.04rem, 2.3vw, 1.17rem);

    line-height: 1.72;
  }


  .chirpview-page
  .technology-software-container {
    grid-template-columns: 1fr;
  }


  .chirpview-page
  .technology-software-visual {
    min-height: 430px;
  }


  .chirpview-page
  .technology-software-visual img {
    width: 108%;
    max-width: 760px;

    transform:
      scale(1.03);
  }


  .chirpview-page
  .technology-inline-brand-logo {
    width: 74px;
    height: 74px;

    min-width: 74px;

    flex-basis: 74px;
  }

}


@media (max-width: 540px) {

  .chirpview-page
  .technology-introduction-heading h2 {
    font-size:
      clamp(2rem, 9vw, 2.7rem);
  }


  .chirpview-page
  .technology-introduction-text {
    font-size:
      clamp(1.04rem, 4.35vw, 1.14rem);

    line-height: 1.72;
  }


  .chirpview-page
  .technology-application-inline {
    font-size:
      clamp(1rem, 4.1vw, 1.1rem);

    line-height: 1.68;
  }


  .chirpview-page
  .technology-software-visual {
    min-height: 310px;

    padding: 12px;
  }


  .chirpview-page
  .technology-software-visual img {
    width: 112%;

    transform:
      scale(1.04);
  }


  .chirpview-page
  .technology-inline-brand-logo {
    width: 62px;
    height: 62px;

    min-width: 62px;

    flex-basis: 62px;
  }


  .chirpview-page
  .technology-inline-brand-name {
    font-size:
      clamp(1.72rem, 8vw, 2.3rem);
  }

}
/* =========================================================
   TSUNAMIGO DASHBOARD
   Franja institucional de acceso al panel
========================================================= */

.technology-dashboard-strip {
  position: relative;

  padding: 92px 0;

  overflow: hidden;

  border-top: 1px solid rgba(34, 197, 246, 0.16);
  border-bottom: 1px solid rgba(34, 197, 246, 0.16);

  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(34, 197, 246, 0.11),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #04101c 0%,
      #071a2d 48%,
      #061522 100%
    );
}

.technology-dashboard-strip::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

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

  background-size: 44px 44px;

  mask-image:
    linear-gradient(
      to right,
      transparent,
      black 22%,
      black 78%,
      transparent
    );
}

.technology-dashboard-strip__container {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(0, 1.32fr)
    minmax(360px, 0.68fr);

  align-items: center;
  gap: 62px;

  width: min(
    calc(100% - 48px),
    1240px
  );

  margin-inline: auto;
}


/* =========================================================
   IMAGEN DEL DASHBOARD
========================================================= */

.technology-dashboard-strip__visual {
  position: relative;

  min-width: 0;

  margin: 0;

  overflow: hidden;

  border: 1px solid rgba(34, 197, 246, 0.24);
  border-radius: 22px;

  background: #061522;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.025);
}

.technology-dashboard-strip__visual::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.technology-dashboard-strip__visual img {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

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

  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.technology-dashboard-strip__visual:hover img {
  transform: scale(1.012);
  filter: brightness(1.04);
}


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

.technology-dashboard-strip__content {
  min-width: 0;

  color: #ffffff;
}

.technology-dashboard-strip__content .technology-section-eyebrow {
  margin-bottom: 12px;

  color: #22c5f6;
}

.technology-dashboard-strip__content h2 {
  max-width: 520px;

  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;

  letter-spacing: -0.045em;
}

.technology-dashboard-strip__content > p {
  max-width: 560px;

  margin: 0 0 14px;

  color: rgba(220, 232, 240, 0.82);

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

.technology-dashboard-strip__content > p:last-of-type {
  margin-bottom: 26px;
}


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

.technology-dashboard-strip__content
.technology-software-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 26px;
}

.technology-dashboard-strip__content
.technology-button {
  min-height: 48px;

  padding: 12px 20px;

  border-radius: 9px;
}

.technology-dashboard-strip__content
.technology-button-primary {
  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      #f58220,
      #ff9b1a
    );

  border-color: #f58220;

  box-shadow:
    0 12px 28px rgba(245, 130, 32, 0.24);
}

.technology-dashboard-strip__content
.technology-button-primary:hover {
  background:
    linear-gradient(
      90deg,
      #e97713,
      #f58a0a
    );

  border-color: #e97713;

  box-shadow:
    0 16px 34px rgba(245, 130, 32, 0.32);

  transform: translateY(-2px);
}


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

@media (max-width: 1060px) {
  .technology-dashboard-strip__container {
    grid-template-columns:
      minmax(0, 1.15fr)
      minmax(320px, 0.85fr);

    gap: 42px;
  }

  .technology-dashboard-strip__content h2 {
    font-size: clamp(1.65rem, 3vw, 2.35rem);
  }
}


@media (max-width: 860px) {
  .technology-dashboard-strip {
    padding: 72px 0;
  }

  .technology-dashboard-strip__container {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .technology-dashboard-strip__visual {
    order: 1;
  }

  .technology-dashboard-strip__content {
    order: 2;

    max-width: 760px;
  }

  .technology-dashboard-strip__content h2,
  .technology-dashboard-strip__content > p {
    max-width: 100%;
  }
}


@media (max-width: 640px) {
  .technology-dashboard-strip {
    padding: 58px 0;
  }

  .technology-dashboard-strip__container {
    width: min(
      calc(100% - 28px),
      1240px
    );

    gap: 28px;
  }

  .technology-dashboard-strip__visual {
    border-radius: 15px;
  }

  .technology-dashboard-strip__visual img {
    aspect-ratio: 16 / 10;
  }

  .technology-dashboard-strip__content h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .technology-dashboard-strip__content > p {
    font-size: 0.9rem;
  }

  .technology-dashboard-strip__content
  .technology-button {
    width: 100%;

    justify-content: center;
  }
}
/* =========================================================
   20. AJUSTE TIPOGRÁFICO MAESTRO
   SUBPÁGINAS DE TECNOLOGÍA

   No cambia:
   - colores
   - fondos
   - bordes
   - sombras
   - estructura general
   ========================================================= */

:root {
  --technology-type-eyebrow:
    0.72rem;

  --technology-type-hero-title:
    clamp(2.1rem, 2.65vw, 2.85rem);

  --technology-type-hero-subtitle:
    clamp(1.3rem, 1.75vw, 1.75rem);

  --technology-type-hero-description:
    1.03rem;

  --technology-type-section-title:
    clamp(1.65rem, 2.55vw, 2.35rem);

  --technology-type-section-description:
    1.05rem;

  --technology-type-card-title:
    clamp(1rem, 1.5vw, 1.28rem);

  --technology-type-card-text:
    1rem;

  --technology-type-button:
    0.94rem;
}


/* FUENTE GENERAL */

.technology-page,
.technology-page button,
.technology-page input,
.technology-page select,
.technology-page textarea {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;
}


/* ANTETÍTULOS */

.technology-page .technology-eyebrow,
.technology-page .technology-section-eyebrow,
.technology-page .technology-ecosystem-label,
.technology-page .technology-workflow-label {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-eyebrow);

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

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


/* NOMBRE PRINCIPAL DE LA TECNOLOGÍA */

.technology-page .technology-brand-name {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-hero-title);

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

  letter-spacing: -0.048em;
}


/* SUBTÍTULO DEL HERO */

.technology-page .technology-hero-subtitle {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-hero-subtitle);

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

  letter-spacing: -0.025em;

  text-wrap: balance;
}


/* DESCRIPCIÓN DEL HERO */

.technology-page .technology-hero-description {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-hero-description);

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


/* TÍTULOS PRINCIPALES DE SECCIÓN */

.technology-page
.technology-introduction-heading h2,

.technology-page
.technology-section-header h2,

.technology-page
.technology-software-content h2,

.technology-page
.technology-cta-content h2 {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-section-title);

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

  letter-spacing: -0.042em;

  text-wrap: balance;
}


/* DESCRIPCIONES PRINCIPALES DE SECCIÓN */

.technology-page
.technology-section-header > p:last-child,

.technology-page
.technology-introduction-text,

.technology-page
.technology-software-description,

.technology-page
.technology-cta-content > p:last-child {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-section-description);

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


/* TÍTULOS DE TARJETAS */

.technology-page
.technology-capability-card h3,

.technology-page
.technology-workflow-card h3,

.technology-page
.technology-ecosystem-card h3 {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-card-title);

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

  letter-spacing: -0.018em;

  text-wrap: balance;
}


/* TEXTOS DE TARJETAS */

.technology-page
.technology-capability-card p,

.technology-page
.technology-workflow-card li,

.technology-page
.technology-ecosystem-card-content
> p:not(.technology-ecosystem-label) {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-card-text);

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


/* BOTONES Y ENLACES */

.technology-page .technology-button,
.technology-page .technology-section-link,
.technology-page .technology-ecosystem-link {
  font-family:
    "Inter",
    Arial,
    Helvetica,
    sans-serif;

  font-size:
    var(--technology-type-button);

  font-weight: 800;
  line-height: 1.2;
}
/* =========================================================
   21. ECOSISTEMA GEOPLOT
   INVESTIGACIÓN · SOLUCIÓN · FORMACIÓN

   Correcciones:
   - imágenes cuadradas
   - tarjetas de la misma altura
   - títulos ordenados
   - descripciones alineadas
   - enlaces alineados abajo
   ========================================================= */


/* LAS TRES TARJETAS SE ESTIRAN POR IGUAL */

.technology-page
.technology-ecosystem-grid {
  align-items: stretch;
}


/* TARJETA COMPLETA */

.technology-page
.technology-ecosystem-card {
  height: 100%;
  min-height: 0;

  display: flex;
  flex-direction: column;
}


/* =========================================================
   IMAGEN CUADRADA
   Sobrescribe los antiguos 245px, 300px y 230px
   ========================================================= */

.technology-page
.technology-ecosystem-image {
  position: relative;

  width: 100%;
  height: auto !important;

  aspect-ratio: 1 / 1;

  flex:
    0 0 auto;

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

  overflow: hidden;
}


/* IMAGEN DENTRO DEL CUADRADO */

.technology-page
.technology-ecosystem-image img {
  display: block;

  width: 100%;
  height: 100%;

  max-width: none;

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


/* =========================================================
   CONTENIDO DE LA TARJETA
   ========================================================= */

.technology-page
.technology-ecosystem-card-content {
  flex: 1;

  min-height: 0;

  padding:
    26px 28px 28px;

  display: grid;

  grid-template-rows:
    auto
    minmax(62px, auto)
    1fr
    auto;

  align-content: start;
}


/* ETIQUETA INVESTIGACIÓN, SOLUCIÓN O FORMACIÓN */

.technology-page
.technology-ecosystem-label {
  margin: 0;

  align-self: start;
}


/* =========================================================
   TÍTULO DE CADA TARJETA
   Reserva la misma altura en las tres columnas
   ========================================================= */

.technology-page
.technology-ecosystem-card h3 {
  min-height: 62px;

  margin:
    14px 0 0;

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


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.technology-page
.technology-ecosystem-card-content
> p:not(.technology-ecosystem-label) {
  margin:
    12px 0 0;

  min-height: 0;
}


/* =========================================================
   ENLACE INFERIOR
   Queda alineado en la parte baja de cada tarjeta
   ========================================================= */

.technology-page
.technology-ecosystem-link {
  width: fit-content;

  align-self: end;

  margin-top: 18px;
  padding-top: 0;
}


/* =========================================================
   LOGO DE GEOPLOT CAMPUS
   ========================================================= */

.technology-page
.technology-campus-brand {
  width: 100%;

  margin-bottom: 16px;

  align-self: start;
}


.technology-page
.technology-campus-brand img {
  display: block;

  width: auto;
  max-width: 200px;

  height: 50px;

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


/* =========================================================
   TARJETA DE FORMACIÓN

   El logo Campus aparece antes de la etiqueta.
   Se mantiene el flujo vertical sin alterar el HTML.
   ========================================================= */

.technology-page
.technology-ecosystem-card-content:
has(.technology-campus-brand) {
  grid-template-rows:
    auto
    auto
    minmax(62px, auto)
    1fr
    auto;
}


/* EVITA QUE EL TEXTO O EL ENLACE SE DESBORDEN */

.technology-page
.technology-ecosystem-card-content > * {
  min-width: 0;
}


.technology-page
.technology-ecosystem-link {
  flex-shrink: 0;
}