/* =========================================================
   GEOPLOT WEB — HEROES.CSS
   Sistema visual unificado para los heroes principales

   Páginas principales:
   - Nosotros
   - Investigación
   - Tecnología
   - Soluciones
   - Campus
   - Campus / Cursos

   Características:
   - Tipografía Inter
   - Títulos con máximo de tres líneas
   - Descripciones amplias y legibles
   - Botones institucionales comunes
   - Variantes oscuras y claras
   - Paneles, productos y capacidades
   ========================================================= */


/* =========================================================
   01. VARIABLES DEL SISTEMA
   ========================================================= */

:root {
  --hero-system-max-width: 1440px;

  --hero-system-dark: #020914;
  --hero-system-dark-blue: #06172d;
  --hero-system-deep-blue: #092746;

  --hero-system-white: #ffffff;

  --hero-system-text-light:
    rgba(255, 255, 255, 0.94);

  --hero-system-text-muted:
    rgba(239, 246, 252, 0.72);

  --hero-system-orange: #ff7a00;
  --hero-system-orange-hover: #ff9138;

  --hero-system-blue: #28aaff;
  --hero-system-blue-dark: #0b6fc2;
  --hero-system-cyan: #24c6f5;

  --hero-system-border:
    rgba(255, 255, 255, 0.14);

  --hero-system-radius: 22px;
  --hero-system-radius-small: 13px;

  /*
   * Título principal equilibrado.
   * Máximo aproximado: 56 px.
   */

  --hero-system-title-size:
    clamp(2.4rem, 2.85vw, 3.5rem);

  /*
   * Descripción principal más grande.
   * Máximo aproximado: 24 px.
   */

  --hero-system-description-size:
    clamp(1.18rem, 1.38vw, 1.5rem);

  /*
   * Altura de botones.
   */

  --hero-system-button-height: 58px;

  /*
   * Tamaño de texto de botones.
   */

  --hero-system-button-font-size:
    clamp(1.05rem, 1.08vw, 1.16rem);
}


/* =========================================================
   02. HERO BASE
   ========================================================= */

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

  width: 100%;

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

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

  display: flex;
  align-items: center;

  overflow: hidden;

  color:
    var(--hero-system-white);

  border-bottom:
    1px solid rgba(35, 171, 255, 0.22);

  background:
    radial-gradient(
      circle at 84% 34%,
      rgba(30, 151, 255, 0.19),
      transparent 33rem
    ),
    linear-gradient(
      120deg,
      var(--hero-system-dark) 0%,
      var(--hero-system-dark-blue) 58%,
      var(--hero-system-deep-blue) 100%
    );
}


/* Retícula geoespacial tenue */

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

  position: absolute;
  inset: 0;

  z-index: -2;

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


/* Círculos geoespaciales */

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

  position: absolute;

  right: -18rem;
  bottom: -29rem;

  z-index: -1;

  width: 58rem;
  height: 58rem;

  pointer-events: none;

  border:
    1px solid rgba(46, 177, 255, 0.19);

  border-radius: 50%;

  box-shadow:
    0 0 0 100px rgba(46, 177, 255, 0.033),
    0 0 0 210px rgba(46, 177, 255, 0.018);
}


/* =========================================================
   03. VARIANTES DE FONDO
   ========================================================= */


/* Fondo oscuro estándar */

.geoplot-hero-dark {
  color: #ffffff;
}


/* Fondo claro para Campus */

.geoplot-hero-light {
  color: #102344;

  background:
    radial-gradient(
      circle at 87% 34%,
      rgba(58, 155, 255, 0.19),
      transparent 31rem
    ),
    linear-gradient(
      120deg,
      #ffffff 0%,
      #f6faff 60%,
      #e7f2ff 100%
    );
}


/* Hero con imagen de fondo */

.geoplot-hero-image-background {
  background-color: #020914;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Capa oscura para fondos fotográficos */

.geoplot-hero-image-background
.geoplot-hero-overlay {
  position: absolute;
  inset: 0;

  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(0, 0, 0, 0.24) 67%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.28)
    );
}


/* =========================================================
   04. CONTENEDOR GENERAL
   ========================================================= */

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

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

  height: 100%;

  margin-inline: auto;

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

  display: grid;

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

  gap:
    clamp(3rem, 6vw, 6rem);

  align-items: center;
}


/* Hero sin panel derecho */

.geoplot-hero-container-single {
  grid-template-columns:
    minmax(0, 1080px);
}


/* =========================================================
   05. COLUMNA DE CONTENIDO
   ========================================================= */

.geoplot-hero-content {
  width: 100%;
  max-width: 1080px;
}


/* Etiqueta superior */

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

  color:
    var(--hero-system-blue);

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

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

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


/* Etiqueta naranja */

.geoplot-hero-eyebrow-orange {
  color:
    var(--hero-system-orange);
}


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

.geoplot-hero-title {
  width: 100%;
  max-width: 1040px;

  margin: 0;

  color: #ffffff;

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

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

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

  letter-spacing: -0.035em;
}


/* Cada span representa una línea */

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


/* Colores de énfasis */

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


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


.geoplot-hero-accent-white {
  color: #ffffff;
}


/* Fondo claro */

.geoplot-hero-light
.geoplot-hero-title {
  color: #102344;
}


/*
 * Mantiene las líneas controladas en escritorio.
 * Cada span del HTML equivale a una línea.
 */

@media (min-width: 1200px) {

  .geoplot-hero-title > span,
  .geoplot-hero-title > strong {
    white-space: nowrap;
  }

}


/* =========================================================
   07. DESCRIPCIÓN PRINCIPAL
   ========================================================= */

.geoplot-hero-description {
  max-width: 820px;

  margin:
    clamp(28px, 3.2vh, 40px)
    0
    0;

  color:
    var(--hero-system-text-light);

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

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

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


/* Texto en hero claro */

.geoplot-hero-light
.geoplot-hero-description {
  color: #536981;
}


/* =========================================================
   08. BOTONES GENERALES
   ========================================================= */

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

  gap: 18px;

  margin-top: 32px;
}


.geoplot-hero-button {
  min-height:
    var(--hero-system-button-height);

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

  gap: 22px;

  padding:
    0 26px;

  color: #ffffff;
  text-decoration: none;

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

  font-size:
    var(--hero-system-button-font-size);

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

  border:
    2px solid transparent;

  border-radius: 14px;

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


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


/* Botón naranja */

.geoplot-hero-button-primary {
  border-color:
    var(--hero-system-orange);

  background:
    var(--hero-system-orange);

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


.geoplot-hero-button-primary:hover,
.geoplot-hero-button-primary:focus-visible {
  color: #ffffff;

  border-color:
    var(--hero-system-orange-hover);

  background:
    var(--hero-system-orange-hover);

  box-shadow:
    0 14px 34px rgba(255, 122, 0, 0.32);
}


/* Botón azul */

.geoplot-hero-button-blue {
  border-color:
    var(--hero-system-blue);

  background:
    linear-gradient(
      135deg,
      #28aaff,
      #0b6fc2
    );

  box-shadow:
    0 13px 30px rgba(10, 110, 198, 0.24);
}


.geoplot-hero-button-blue:hover,
.geoplot-hero-button-blue:focus-visible {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #43b8ff,
      #0d7dd7
    );

  box-shadow:
    0 18px 38px rgba(10, 110, 198, 0.34);
}


/* Botón transparente */

.geoplot-hero-button-secondary {
  color: #ffffff;

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

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

  backdrop-filter:
    blur(5px);
}


.geoplot-hero-button-secondary:hover,
.geoplot-hero-button-secondary:focus-visible {
  color: #ffffff;

  border-color: #ffffff;

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


/* Botón oscuro en hero claro */

.geoplot-hero-light
.geoplot-hero-button-secondary {
  color: #102344;

  border-color: #102344;

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


.geoplot-hero-light
.geoplot-hero-button-secondary:hover,
.geoplot-hero-light
.geoplot-hero-button-secondary:focus-visible {
  color: #ffffff;

  border-color: #102344;

  background: #102344;
}


/* Flecha */

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


/* =========================================================
   09. COLUMNA VISUAL
   ========================================================= */

.geoplot-hero-visual {
  width: 100%;
  max-width: 520px;

  justify-self: end;
}


/* Imagen estándar */

.geoplot-hero-image {
  width: 100%;

  height:
    clamp(260px, 29vw, 390px);

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

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

  border-radius:
    var(--hero-system-radius);

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


/* =========================================================
   10. PANEL DE MÉTRICAS
   ========================================================= */

.geoplot-hero-panel {
  width: 100%;

  padding: 14px;

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

  border-radius:
    var(--hero-system-radius);

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

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

  backdrop-filter:
    blur(14px);
}


/* Cabecera del panel */

.geoplot-hero-panel-heading {
  min-height: 100px;

  display: flex;
  align-items: center;

  gap: 18px;

  padding:
    18px 22px;

  border-radius: 17px;

  background:
    linear-gradient(
      135deg,
      rgba(8, 77, 132, 0.98),
      rgba(3, 39, 72, 0.98)
    );
}


.geoplot-hero-panel-number {
  color: #ffffff;

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

  font-size:
    clamp(3.2rem, 4.7vw, 4.6rem);

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


.geoplot-hero-panel-label {
  max-width: 170px;

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

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

  font-size: 0.8rem;
  font-weight: 850;
  line-height: 1.3;

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


/* Lista del panel */

.geoplot-hero-panel-list {
  display: grid;

  gap: 8px;

  margin-top: 9px;
}


.geoplot-hero-panel-item {
  min-height: 52px;

  display: grid;

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

  align-items: center;

  gap: 12px;

  padding:
    8px 13px;

  color: #ffffff;
  text-decoration: none;

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

  border-radius:
    var(--hero-system-radius-small);

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

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


.geoplot-hero-panel-item:hover,
.geoplot-hero-panel-item:focus-visible {
  transform:
    translateX(4px);

  border-color:
    rgba(40, 170, 255, 0.48);

  background:
    rgba(40, 170, 255, 0.1);
}


.geoplot-hero-panel-item-number {
  width: 30px;
  height: 30px;

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

  color:
    var(--hero-system-blue);

  font-size: 0.7rem;
  font-weight: 900;

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

  border-radius: 50%;

  background:
    rgba(40, 170, 255, 0.09);
}


.geoplot-hero-panel-item p {
  margin: 0;

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

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

  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
}


/* =========================================================
   FIN DE LA PARTE 1
   CONTINÚA INMEDIATAMENTE CON LA PARTE 2
   ========================================================= */
   /* =========================================================
   11. IDENTIDAD DE PRODUCTOS GEOPLOT
   ========================================================= */

.geoplot-hero-product-grid {
  display: grid;

  gap: 10px;

  margin-top: 12px;
}


/* Botón o tarjeta de producto */

.geoplot-hero-product-button {
  min-height: 72px;

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

  gap: 20px;

  padding:
    11px 18px;

  color: #ffffff;
  text-decoration: none;

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

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 3, 3, 0.88),
      rgba(5, 5, 7, 0.92)
    );

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


.geoplot-hero-product-button:hover,
.geoplot-hero-product-button:focus-visible {
  transform:
    translateY(-3px);

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

  box-shadow:
    0 14px 32px rgba(255, 105, 0, 0.16);
}


/* Logo completo del producto */

.geoplot-hero-product-logo {
  display: block;

  width: auto;
  max-width: 310px;
  height: 48px;

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


/* Flecha */

.geoplot-hero-product-button-arrow {
  color: #ffffff;

  font-size: 1.35rem;
  font-weight: 300;
}


/* =========================================================
   12. LOGOS INDIVIDUALES
   ========================================================= */

.geoplot-logo-censusanalytics {
  max-width: 330px;
}


.geoplot-logo-iroe {
  max-width: 240px;
}


.geoplot-logo-tsunamigo {
  max-width: 285px;
}


.geoplot-logo-morphoflow {
  max-width: 285px;
}


.geoplot-logo-chirpview {
  max-width: 285px;
}


/* =========================================================
   13. MARCA CAMPUS
   ========================================================= */

.geoplot-hero-campus-brand {
  display: inline-flex;
  align-items: center;

  gap: 13px;

  margin-bottom: 18px;

  color: inherit;
  text-decoration: none;
}


.geoplot-hero-campus-brand img {
  width: 62px;
  height: 62px;

  flex:
    0 0 62px;

  object-fit: contain;
}


.geoplot-hero-campus-brand-copy {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.geoplot-hero-campus-brand-copy strong {
  color: #102344;

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

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

  letter-spacing: -0.04em;
}


.geoplot-hero-campus-brand-copy strong span {
  color:
    var(--hero-system-orange);
}


.geoplot-hero-campus-brand-copy small {
  color: #5b6f84;

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

  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.2;
}


/* =========================================================
   14. CAPACIDADES DEL HERO
   ========================================================= */

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

  display: grid;

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

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

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

  backdrop-filter:
    blur(5px);
}


.geoplot-hero-capability {
  min-width: 100px;

  padding:
    0 14px;

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

  color: #ffffff;
  text-align: center;

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


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


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

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

  color:
    var(--hero-system-cyan);

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


.geoplot-hero-capability p {
  margin-top: 8px;

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

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


/* =========================================================
   15. AJUSTE COMÚN DE LAS PÁGINAS PRINCIPALES

   Aplica únicamente a:
   - Nosotros
   - Investigación
   - Tecnología
   - Soluciones
   - Campus
   ========================================================= */

body[data-page="nosotros"] .geoplot-hero-container,
body[data-page="investigacion"] .geoplot-hero-container,
body[data-page="tecnologia"] .geoplot-hero-container,
body[data-page="soluciones"] .geoplot-hero-container,
body[data-page="campus"] .geoplot-hero-container {
  align-items: center;

  padding-top: 18px;
  padding-bottom: 38px;
}


body[data-page="nosotros"] .geoplot-hero-content,
body[data-page="investigacion"] .geoplot-hero-content,
body[data-page="tecnologia"] .geoplot-hero-content,
body[data-page="soluciones"] .geoplot-hero-content,
body[data-page="campus"] .geoplot-hero-content {
  max-width: 1080px;

  /*
   * Sube ligeramente el contenido.
   */

  transform:
    translateY(-24px);
}


body[data-page="nosotros"] .geoplot-hero-title,
body[data-page="investigacion"] .geoplot-hero-title,
body[data-page="tecnologia"] .geoplot-hero-title,
body[data-page="soluciones"] .geoplot-hero-title,
body[data-page="campus"] .geoplot-hero-title {
  max-width: 1040px;

  font-size:
    clamp(2.4rem, 2.85vw, 3.5rem);

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

  letter-spacing: -0.035em;
}


body[data-page="nosotros"] .geoplot-hero-description,
body[data-page="investigacion"] .geoplot-hero-description,
body[data-page="tecnologia"] .geoplot-hero-description,
body[data-page="soluciones"] .geoplot-hero-description,
body[data-page="campus"] .geoplot-hero-description {
  max-width: 820px;

  margin-top:
    clamp(28px, 3.2vh, 40px);

  font-size:
    clamp(1.18rem, 1.38vw, 1.5rem);

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


body[data-page="nosotros"] .geoplot-hero-actions,
body[data-page="investigacion"] .geoplot-hero-actions,
body[data-page="tecnologia"] .geoplot-hero-actions,
body[data-page="soluciones"] .geoplot-hero-actions,
body[data-page="campus"] .geoplot-hero-actions {
  gap: 18px;

  margin-top: 32px;
}


body[data-page="nosotros"] .geoplot-hero-button,
body[data-page="investigacion"] .geoplot-hero-button,
body[data-page="tecnologia"] .geoplot-hero-button,
body[data-page="soluciones"] .geoplot-hero-button,
body[data-page="campus"] .geoplot-hero-button {
  min-height: 58px;

  padding-right: 26px;
  padding-left: 26px;

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

  font-weight: 750;

  border-radius: 14px;
}


/*
 * Nosotros no necesita la pequeña etiqueta “GEOPLOT SpA”.
 * Las demás páginas conservan sus etiquetas.
 */

body[data-page="nosotros"] .geoplot-hero-eyebrow {
  display: none;
}


/*
 * Nosotros utiliza una sola columna y puede ocupar
 * un poco más de ancho.
 */

body[data-page="nosotros"]
.geoplot-hero-container-single {
  grid-template-columns:
    minmax(0, 1080px);
}


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

@media (max-width: 1050px) {

  .geoplot-hero {
    height: auto;
    min-height: auto;
    max-height: none;
  }


  .geoplot-hero-container {
    width:
      min(
        calc(100% - 40px),
        1000px
      );

    height: auto;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, 390px);

    gap: 36px;

    padding-top: 64px;
    padding-bottom: 64px;
  }


  .geoplot-hero-container-single {
    grid-template-columns: 1fr;
  }


  .geoplot-hero-content {
    max-width: 760px;
  }


  .geoplot-hero-title {
    font-size:
      clamp(2.25rem, 4.6vw, 3.15rem);
  }


  .geoplot-hero-description {
    margin-top: 24px;

    font-size:
      clamp(1.1rem, 2vw, 1.28rem);
  }


  .geoplot-hero-visual {
    max-width: 390px;
  }


  .geoplot-hero-product-logo {
    max-width: 250px;
  }


  body[data-page="nosotros"] .geoplot-hero-content,
  body[data-page="investigacion"] .geoplot-hero-content,
  body[data-page="tecnologia"] .geoplot-hero-content,
  body[data-page="soluciones"] .geoplot-hero-content,
  body[data-page="campus"] .geoplot-hero-content {
    transform: none;
  }

}


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

@media (max-width: 820px) {

  .geoplot-hero-container {
    grid-template-columns: 1fr;

    width:
      min(
        calc(100% - 30px),
        680px
      );

    gap: 36px;

    padding:
      58px 0;
  }


  .geoplot-hero-content {
    max-width: 680px;

    transform: none;
  }


  .geoplot-hero-title {
    font-size:
      clamp(2.15rem, 8.2vw, 3rem);

    line-height: 1.05;
  }


  .geoplot-hero-title > span,
  .geoplot-hero-title > strong {
    white-space: normal;
  }


  .geoplot-hero-description {
    max-width: 680px;

    margin-top: 24px;

    font-size:
      clamp(1.08rem, 4.1vw, 1.26rem);

    line-height: 1.5;
  }


  .geoplot-hero-actions {
    margin-top: 26px;
  }


  .geoplot-hero-button {
    min-height: 54px;

    font-size: 1.04rem;
  }


  .geoplot-hero-visual {
    max-width: 620px;

    justify-self: start;
  }


  .geoplot-hero-capabilities {
    grid-template-columns:
      repeat(2, minmax(120px, 1fr));

    width: 100%;
  }


  .geoplot-hero-capability {
    min-height: 88px;

    border-right: 0;

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


  .geoplot-hero-capability:nth-last-child(-n + 2) {
    border-bottom: 0;
  }


  .geoplot-hero-product-button {
    min-height: 66px;
  }


  body[data-page="nosotros"] .geoplot-hero-container,
  body[data-page="investigacion"] .geoplot-hero-container,
  body[data-page="tecnologia"] .geoplot-hero-container,
  body[data-page="soluciones"] .geoplot-hero-container,
  body[data-page="campus"] .geoplot-hero-container {
    padding-top: 58px;
    padding-bottom: 58px;
  }


  body[data-page="nosotros"] .geoplot-hero-content,
  body[data-page="investigacion"] .geoplot-hero-content,
  body[data-page="tecnologia"] .geoplot-hero-content,
  body[data-page="soluciones"] .geoplot-hero-content,
  body[data-page="campus"] .geoplot-hero-content {
    transform: none;
  }

}


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

@media (max-width: 520px) {

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

    padding:
      44px 0;
  }


  .geoplot-hero-title {
    font-size:
      clamp(1.95rem, 9.7vw, 2.55rem);

    line-height: 1.05;
  }


  .geoplot-hero-description {
    margin-top: 20px;

    font-size:
      clamp(1.05rem, 4.7vw, 1.16rem);

    line-height: 1.5;
  }


  .geoplot-hero-actions {
    align-items: stretch;
    flex-direction: column;

    gap: 12px;

    margin-top: 26px;
  }


  .geoplot-hero-button {
    width: 100%;
    min-height: 54px;

    font-size: 1.02rem;
  }


  .geoplot-hero-image {
    height: 240px;
  }


  .geoplot-hero-panel {
    padding: 10px;
  }


  .geoplot-hero-panel-heading {
    min-height: 88px;

    padding:
      15px 17px;
  }


  .geoplot-hero-panel-number {
    font-size: 3rem;
  }


  .geoplot-hero-panel-item {
    min-height: 48px;
  }


  .geoplot-hero-product-logo {
    max-width: 215px;
    height: 42px;
  }


  .geoplot-hero-campus-brand img {
    width: 52px;
    height: 52px;

    flex-basis: 52px;
  }


  .geoplot-hero-campus-brand-copy strong {
    font-size: 1.55rem;
  }


  body[data-page="nosotros"] .geoplot-hero-container,
  body[data-page="investigacion"] .geoplot-hero-container,
  body[data-page="tecnologia"] .geoplot-hero-container,
  body[data-page="soluciones"] .geoplot-hero-container,
  body[data-page="campus"] .geoplot-hero-container {
    padding-top: 44px;
    padding-bottom: 44px;
  }

}


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

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

  .geoplot-hero {
    min-height: 620px;
  }


  .geoplot-hero-container {
    padding-top: 28px;
    padding-bottom: 28px;
  }


  .geoplot-hero-title {
    font-size:
      clamp(2.25rem, 2.6vw, 3.15rem);
  }


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

    margin-top: 24px;

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


  .geoplot-hero-actions {
    margin-top: 26px;
  }


  .geoplot-hero-button {
    min-height: 54px;

    font-size: 1.04rem;
  }


  .geoplot-hero-panel-heading {
    min-height: 88px;
  }


  .geoplot-hero-panel-item {
    min-height: 46px;
  }


  body[data-page="nosotros"] .geoplot-hero-content,
  body[data-page="investigacion"] .geoplot-hero-content,
  body[data-page="tecnologia"] .geoplot-hero-content,
  body[data-page="soluciones"] .geoplot-hero-content,
  body[data-page="campus"] .geoplot-hero-content {
    transform:
      translateY(-12px);
  }

}


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

@media (min-width: 1600px) {

  .geoplot-hero-container {
    width:
      min(
        88%,
        var(--hero-system-max-width)
      );
  }

}


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

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

  .geoplot-hero-button,
  .geoplot-hero-panel-item,
  .geoplot-hero-product-button {
    transition: none;
  }

}