/* ==========================================================
   GEOPLOT
   PÁGINA DE INICIO
   Archivo:
   C:\MAV_2026\GEOPLOT SPA\Geoplot_Web\assets\css\inicio.css
========================================================== */


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

:root {
  --home-font-family: "Inter", Arial, sans-serif;

  --home-navy-950: #071725;
  --home-navy-900: #0b2235;
  --home-navy-850: #0e2b42;
  --home-navy-800: #123550;

  --home-blue-700: #075fbb;
  --home-blue-600: #0b73d1;
  --home-blue-500: #1585db;
  --home-blue-400: #22a5eb;
  --home-cyan-400: #22c5f6;

  --home-blue-100: #eaf4ff;
  --home-blue-050: #f4f9fe;

  --home-text-main: #34495c;
  --home-text-secondary: #617487;
  --home-text-light: #8495a5;

  --home-white: #ffffff;
  --home-background: #f7f9fc;
  --home-background-soft: #fbfcfe;

  --home-border: #dce5ee;
  --home-border-dark: #c9d5e0;

  --home-shadow-sm:
    0 8px 22px rgba(7, 23, 37, 0.06);

  --home-shadow-md:
    0 16px 38px rgba(7, 23, 37, 0.09);

  --home-shadow-lg:
    0 26px 60px rgba(7, 23, 37, 0.14);

  --home-shadow-dark:
    0 24px 58px rgba(0, 0, 0, 0.22);

  --home-radius-sm: 10px;
  --home-radius-md: 16px;
  --home-radius-lg: 24px;
  --home-radius-xl: 30px;
  --home-radius-pill: 999px;

  --home-container-width: 1240px;

  --home-transition: 180ms ease;
  --home-slider-transition: 720ms cubic-bezier(0.22, 1, 0.36, 1);

  --home-type-eyebrow: 0.72rem;

  --home-type-hero-title:
    clamp(1rem, 3.4vw, 4.65rem);

  --home-type-hero-description:
    clamp(1rem, 1.35vw, 1.18rem);

  --home-type-section-title:
    clamp(0.5rem, 0.5vw, 0.5rem);

  --home-type-section-description:
    1.05rem;
}


/* ==========================================================
   02. BASE Y RESETEO
========================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body.geoplot-home-page {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;

  color: var(--home-text-main);
  background: var(--home-background);

  font-family: var(--home-font-family);

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.geoplot-home-page *,
body.geoplot-home-page *::before,
body.geoplot-home-page *::after {
  box-sizing: border-box;
}

body.geoplot-home-page img {
  display: block;
  max-width: 100%;
}

body.geoplot-home-page a {
  color: inherit;
  text-decoration: none;
}

body.geoplot-home-page button,
body.geoplot-home-page input,
body.geoplot-home-page textarea,
body.geoplot-home-page select {
  font: inherit;
}

body.geoplot-home-page h1,
body.geoplot-home-page h2,
body.geoplot-home-page h3,
body.geoplot-home-page h4,
body.geoplot-home-page p,
body.geoplot-home-page ul,
body.geoplot-home-page ol,
body.geoplot-home-page dl,
body.geoplot-home-page dd {
  margin-top: 0;
}

body.geoplot-home-page :focus-visible {
  outline: 3px solid rgba(34, 197, 246, 0.65);
  outline-offset: 4px;
}


/* SALTAR AL CONTENIDO */

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;

  padding: 12px 16px;

  border-radius: var(--home-radius-sm);

  color: var(--home-white);
  background: var(--home-navy-950);

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

  transform: translateY(-160%);
  transition: transform var(--home-transition);
}

.skip-link:focus {
  transform: translateY(0);
}


/* CONTENEDOR GENERAL */

.home-container {
  width: min(
    calc(100% - 40px),
    var(--home-container-width)
  );

  margin-inline: auto;
}


/* ==========================================================
   03. TIPOGRAFÍA Y SECCIONES GENERALES
========================================================== */

.home-section {
  position: relative;
  padding: 84px 0;
}

.home-section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.home-eyebrow {
  margin-bottom: 10px;

  color: var(--home-blue-700);

  font-size: var(--home-type-eyebrow);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-section-title {
  margin-bottom: 16px;

  color: var(--home-navy-950);

  font-size: var(--home-type-section-title);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.042em;
}

.home-section-description {
  max-width: 780px;
  margin-bottom: 0;

  color: var(--home-text-main);

  font-size: var(--home-type-section-description);
  font-weight: 400;
  line-height: 1.72;
}

.home-section-action {
  display: flex;
  justify-content: center;

  margin-top: 34px;
}

.home-text-link {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: var(--home-blue-700);

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

  transition:
    color var(--home-transition),
    transform var(--home-transition);
}

.home-text-link:hover {
  color: var(--home-blue-500);
  transform: translateX(3px);
}


/* ==========================================================
   04. BOTONES GENERALES
========================================================== */

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  min-height: 52px;
  padding: 14px 22px;

  border: 1px solid transparent;
  border-radius: var(--home-radius-sm);

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

  transition:
    transform var(--home-transition),
    color var(--home-transition),
    background-color var(--home-transition),
    border-color var(--home-transition),
    box-shadow var(--home-transition);
}

.home-button:hover {
  transform: translateY(-2px);
}

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

  background:
    linear-gradient(
      135deg,
      var(--home-blue-700),
      var(--home-blue-500)
    );

  box-shadow:
    0 12px 28px rgba(7, 95, 187, 0.24);
}

.home-button--primary:hover {
  color: var(--home-white);

  box-shadow:
    0 16px 34px rgba(7, 95, 187, 0.31);
}

.home-button--secondary {
  color: var(--home-navy-950);
  background: var(--home-white);
  border-color: var(--home-border-dark);
}

.home-button--secondary:hover {
  color: var(--home-blue-700);
  border-color: rgba(7, 95, 187, 0.42);

  box-shadow: var(--home-shadow-sm);
}

.home-button--light {
  color: var(--home-blue-700);
  background: var(--home-white);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18);
}

.home-button--light:hover {
  color: var(--home-blue-700);
  background: var(--home-blue-050);

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


/* ==========================================================
   05. HERO PRINCIPAL
========================================================== */

.home-hero {
  position: relative;

  width: 100%;
  min-height: 680px;
  height: 88vh;
  max-height: 790px;

  overflow: hidden;

  color: var(--home-white);
  background: var(--home-navy-950);
}

.home-hero-slider,
.home-hero-slider__track {
  position: absolute;
  inset: 0;
}

.home-hero-slider {
  overflow: hidden;
}

.home-hero-slide {
  position: absolute;
  inset: 0;

  z-index: 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: scale(1.035);

  transition:
    opacity 900ms ease,
    visibility 900ms ease,
    transform 7s linear;
}

.home-hero-slide.is-active {
  z-index: 1;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: scale(1);
}

.home-hero-slide__image {
  width: 100%;
  height: 100%;
  max-width: none;

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


/* DEGRADADO DEL HERO */

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 23, 0.88) 0%,
      rgba(4, 14, 23, 0.72) 31%,
      rgba(4, 14, 23, 0.35) 56%,
      rgba(4, 14, 23, 0.08) 78%,
      rgba(4, 14, 23, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(4, 14, 23, 0.32) 0%,
      transparent 28%,
      transparent 72%,
      rgba(4, 14, 23, 0.3) 100%
    );
}

.home-hero__container {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;

  min-height: inherit;
  height: 100%;
}

.home-hero__content {
  width: min(100%, 790px);
  padding: 130px 0 105px;
}

.home-hero__eyebrow {
  margin-bottom: 18px;
  color: #a9dcff;
}

.home-hero__title {
  max-width: 920px;
  margin-bottom: 24px;

  color: var(--home-white);

  font-size: var(--home-type-hero-title);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.home-hero__description {
  max-width: 680px;
  margin-bottom: 30px;

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

  font-size: var(--home-type-hero-description);
  font-weight: 430;
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;
}

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

  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);

  backdrop-filter: blur(10px);
}

.home-hero .home-button--secondary:hover {
  color: var(--home-white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
}


/* CONTROLES DEL HERO */

.home-hero-controls {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  z-index: 4;

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

  gap: 14px;
}

.home-slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex: 0 0 auto;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;

  color: var(--home-white);
  background: rgba(7, 23, 37, 0.4);

  cursor: pointer;
  backdrop-filter: blur(10px);

  transition:
    transform var(--home-transition),
    color var(--home-transition),
    background-color var(--home-transition),
    border-color var(--home-transition);
}

.home-slider-button span {
  display: block;
  margin-top: -3px;

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

.home-slider-button:hover {
  transform: translateY(-2px);

  background: rgba(7, 95, 187, 0.88);
  border-color: rgba(255, 255, 255, 0.7);
}

.home-hero-pagination,
.technology-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;
}

.home-slider-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 0;
  border-radius: var(--home-radius-pill);

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

  cursor: pointer;

  transition:
    width var(--home-transition),
    background-color var(--home-transition),
    transform var(--home-transition);
}

.home-slider-dot:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.76);
}

.home-slider-dot.is-active {
  width: 28px;
  background: var(--home-white);
}


/* ==========================================================
   06. QUÉ HACEMOS
========================================================== */

.home-capabilities {
  background: var(--home-white);
}

.home-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 18px;
}

.home-capability-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 100%;

  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);

  background: var(--home-white);
  box-shadow: var(--home-shadow-sm);

  transition:
    transform var(--home-transition),
    border-color var(--home-transition),
    box-shadow var(--home-transition);
}

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

  border-color: rgba(7, 95, 187, 0.28);
  box-shadow: var(--home-shadow-md);
}

.home-capability-card__media {
  position: relative;

  width: 100%;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  background: var(--home-background);
}

.home-capability-card__media::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      transparent 64%,
      rgba(7, 23, 37, 0.08) 100%
    );
}

.home-capability-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;

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

  transition: transform 520ms ease;
}

.home-capability-card:hover .home-capability-card__media img {
  transform: scale(1.035);
}

.home-capability-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;

  padding: 22px;
}

.home-capability-card__title {
  margin-bottom: 10px;

  color: var(--home-navy-950);

  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.018em;
}

.home-capability-card__description {
  margin-bottom: 22px;

  color: var(--home-text-secondary);

  font-size: 0.9rem;
  line-height: 1.62;
}

.home-capability-card__link {
  display: inline-flex;
  align-items: center;

  gap: 8px;
  margin-top: auto;

  color: var(--home-blue-700);

  font-size: 0.85rem;
  font-weight: 850;
}

.home-capability-card:hover .home-capability-card__link {
  color: var(--home-blue-500);
}
/* ==========================================================
   07. TECNOLOGÍAS GEOPLOT
   SLIDER HORIZONTAL TIPO PELÍCULA
========================================================== */

.home-technologies {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(21, 133, 219, 0.09),
      transparent 30%
    ),
    var(--home-background);
}

.technology-slider {
  position: relative;
}


/* VENTANA VISIBLE DEL SLIDER */

.technology-slider__viewport {
  position: relative;
  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);

  background: var(--home-white);
  box-shadow: var(--home-shadow-md);
}


/* CARRIL HORIZONTAL */

.technology-slider__track {
  display: flex;
  align-items: stretch;

  width: 100%;

  transform: translateX(0);

  transition:
    transform 750ms cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}
/* ==========================================================
   CORRECCIÓN DEL HEADER GLOBAL EN LA PÁGINA DE INICIO
========================================================== */

body.geoplot-home-page .site-header .brand,
body.geoplot-home-page .site-header .brand:link,
body.geoplot-home-page .site-header .brand:visited,
body.geoplot-home-page .site-header .brand:hover,
body.geoplot-home-page .site-header .brand:focus-visible {
  color: #ffffff !important;
  text-decoration: none;
}

body.geoplot-home-page .site-header .brand-name,
body.geoplot-home-page .site-header .brand-tagline {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;

  opacity: 1 !important;
  visibility: visible !important;
}

body.geoplot-home-page .site-header .brand-name {
  font-weight: 900;
}

body.geoplot-home-page .site-header .brand-tagline {
  font-weight: 700;
}

/* CADA SLIDE OCUPA EL 100 % DEL BANNER */

.technology-slide {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(360px, 0.95fr)
    minmax(0, 1.05fr);

  align-items: center;

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

  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;

  min-height: 520px;
  padding: clamp(30px, 4vw, 54px);

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: none;
}


/* ESTADO ACTIVO
   Se conserva solo para accesibilidad y puntos inferiores */

.technology-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* MEDIA DEL PRODUCTO */

.technology-slide__media {
  position: relative;

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

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

  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(21, 133, 219, 0.11),
      transparent 48%
    ),
    linear-gradient(
      150deg,
      #ffffff,
      #f4f9fe
    );
}


/* RESPLANDOR SUAVE DETRÁS DEL EQUIPO */

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

  position: absolute;
  inset: 10%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(21, 133, 219, 0.12),
      transparent 68%
    );

  filter: blur(18px);
}


/* IMAGEN DEL PRODUCTO */

.technology-slide__product {
  position: relative;
  z-index: 1;

  width: min(88%, 540px);
  max-height: 390px;

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


/* CONTENIDO DE TEXTO */

.technology-slide__content {
  min-width: 0;
  max-width: 600px;
}


/* LOGO */

.technology-slide__logo {
  width: 96px;
  height: 96px;

  margin-bottom: 18px;

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


/* CATEGORÍA */

.technology-slide__category {
  margin-bottom: 8px;

  color: var(--home-blue-700);

  font-size: var(--home-type-eyebrow);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* TÍTULO */

.technology-slide__title {
  margin-bottom: 16px;

  color: var(--home-navy-950);

  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}


/* DESCRIPCIÓN */

.technology-slide__description {
  max-width: 570px;
  margin-bottom: 28px;

  color: var(--home-text-main);

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


/* CONTROLES INFERIORES */

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

  gap: 14px;
  margin-top: 22px;
}


/* FLECHAS */

.technology-slider__controls .home-slider-button {
  color: var(--home-navy-950);
  background: var(--home-white);
  border-color: var(--home-border-dark);

  box-shadow: var(--home-shadow-sm);
}

.technology-slider__controls .home-slider-button:hover {
  color: var(--home-white);

  background: var(--home-blue-700);
  border-color: var(--home-blue-700);
}


/* PUNTOS */

.technology-slider__pagination .home-slider-dot {
  background: var(--home-border-dark);
}

.technology-slider__pagination .home-slider-dot:hover {
  background: var(--home-blue-500);
}

.technology-slider__pagination .home-slider-dot.is-active {
  background: var(--home-blue-700);
}


/* ==========================================================
   TECNOLOGÍAS · TABLET
========================================================== */

@media (max-width: 900px) {

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

    gap: 30px;

    min-height: auto;
  }

  .technology-slide__media {
    min-height: 330px;
  }

  .technology-slide__content {
    max-width: none;
  }

}


/* ==========================================================
   TECNOLOGÍAS · MÓVIL
========================================================== */

@media (max-width: 720px) {

  .technology-slide {
    padding: 22px;
  }

  .technology-slide__media {
    min-height: 260px;
  }

  .technology-slide__product {
    width: min(94%, 430px);
    max-height: 280px;
  }

  .technology-slide__logo {
    width: 78px;
    height: 78px;
  }

  .technology-slide__title {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .technology-slide__description {
    font-size: 0.94rem;
    line-height: 1.67;
  }

}


/* ==========================================================
   TECNOLOGÍAS · MÓVIL PEQUEÑO
========================================================== */

@media (max-width: 480px) {

  .technology-slide {
    padding: 16px;
  }

  .technology-slide__media {
    min-height: 225px;
  }

  .technology-slide__logo {
    width: 68px;
    height: 68px;
  }

  .technology-slider__controls {
    gap: 9px;
  }

}
.home-solutions {
  background: var(--home-white);
}

.home-solutions__grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.home-solutions__media {
  position: relative;

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

  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);

  background: var(--home-background);
  box-shadow: var(--home-shadow-md);
}

.home-solutions__media::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      transparent 58%,
      rgba(7, 23, 37, 0.12)
    );
}

.home-solutions__media img {
  width: 100%;
  height: 100%;
  max-width: none;

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

.home-solutions__content {
  min-width: 0;
}

.home-solutions__list {
  display: grid;
  gap: 12px;

  margin: 26px 0 30px;
  padding: 0;

  list-style: none;
}

.home-solutions__list li {
  position: relative;

  padding-left: 27px;

  color: var(--home-text-main);

  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.55;
}

.home-solutions__list li::before {
  content: "";

  position: absolute;
  top: 0.53em;
  left: 2px;

  width: 10px;
  height: 10px;

  border: 3px solid var(--home-blue-600);
  border-radius: 50%;
}


/* ==========================================================
   09. IMPACTO TERRITORIAL
========================================================== */

.home-impact {
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(21, 133, 219, 0.08),
      transparent 26%
    ),
    var(--home-background);
}

.home-impact__grid {
  display: grid;

  grid-template-columns:
    minmax(260px, 0.42fr)
    minmax(0, 1.08fr);

  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.home-impact__media {
  position: relative;

  width: min(100%, 390px);
  aspect-ratio: 941 / 1672;

  margin-inline: auto;
  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-lg);

  background: var(--home-navy-950);
  box-shadow: var(--home-shadow-lg);
}

.home-impact__media::before {
  content: "";

  position: absolute;
  inset: 6% -7% -7% 7%;
  z-index: -1;

  border-radius: inherit;

  background:
    radial-gradient(
      circle,
      rgba(21, 133, 219, 0.22),
      transparent 70%
    );

  filter: blur(18px);
}

.home-impact__media img {
  width: 100%;
  height: 100%;
  max-width: none;

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

.home-impact__content {
  min-width: 0;
  max-width: 720px;
}

.home-impact__location {
  margin-bottom: 10px;

  color: var(--home-blue-700);

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

.home-impact__title {
  margin-bottom: 18px;

  color: var(--home-navy-950);

  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.home-impact__description {
  max-width: 680px;
  margin-bottom: 30px;

  color: var(--home-text-main);

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

.home-impact__data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 13px;
  margin: 0 0 30px;
}

.home-impact__data-item {
  min-width: 0;
  min-height: 112px;

  padding: 18px;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);

  background: var(--home-white);
  box-shadow: var(--home-shadow-sm);
}

.home-impact__data-item dt {
  margin-bottom: 9px;

  color: var(--home-text-secondary);

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-impact__data-item dd {
  margin: 0;

  color: var(--home-navy-950);

  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
}


/* ==========================================================
   10. BANNER GEOPLOT CAMPUS
========================================================== */

.home-campus-banner {
  position: relative;

  min-height: 270px;
  overflow: hidden;

  color: var(--home-white);
  background: var(--home-navy-950);
}

.home-campus-banner__background,
.home-campus-banner__background img,
.home-campus-banner__overlay {
  position: absolute;
  inset: 0;
}

.home-campus-banner__background img {
  width: 100%;
  height: 100%;
  max-width: none;

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

.home-campus-banner__overlay {
  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 29, 0.96) 0%,
      rgba(4, 17, 29, 0.86) 40%,
      rgba(4, 17, 29, 0.42) 70%,
      rgba(4, 17, 29, 0.32) 100%
    );
}

.home-campus-banner__container {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  min-height: 270px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.home-campus-banner__content {
  width: min(100%, 650px);
}

.home-campus-banner__logo {
  width: min(100%, 390px);
  max-height: 66px;

  margin-bottom: 16px;

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

.home-campus-banner__title {
  margin-bottom: 10px;

  color: var(--home-white);

  font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.038em;
}

.home-campus-banner__description {
  max-width: 600px;
  margin-bottom: 20px;

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

  font-size: 0.94rem;
  line-height: 1.62;
}


/* ==========================================================
   11. CTA FINAL
========================================================== */

.home-final-cta {
  position: relative;
  overflow: hidden;

  padding: 58px 0;

  color: var(--home-white);

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(21, 133, 219, 0.3),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--home-navy-950),
      #0b3555
    );
}

.home-final-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  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: 44px 44px;
}

.home-final-cta .home-container {
  position: relative;
  z-index: 1;
}

.home-final-cta__inner {
  display: grid;

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

  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.home-final-cta__content {
  max-width: 760px;
}

.home-final-cta__eyebrow {
  color: #9fd0ff;
}

.home-final-cta__title {
  max-width: 760px;
  margin-bottom: 16px;

  color: var(--home-white);

  font-size: var(--home-type-section-title);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.042em;
}

.home-final-cta__description {
  max-width: 680px;
  margin-bottom: 0;

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

  font-size: var(--home-type-section-description);
  line-height: 1.72;
}

.home-final-cta__action {
  display: flex;
  justify-content: flex-end;
}
/* ==========================================================
   12. TABLET GRANDE
========================================================== */

@media (max-width: 1100px) {

  .home-hero {
    min-height: 650px;
    height: 82vh;
  }

  .home-hero__content {
    width: min(100%, 720px);
  }

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

  .technology-slide {
    grid-template-columns:
      minmax(320px, 0.9fr)
      minmax(0, 1.1fr);

    gap: 38px;
  }

  .technology-slide__media {
    min-height: 340px;
  }

  .home-solutions__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.92fr);

    gap: 42px;
  }

}


/* ==========================================================
   13. TABLET
========================================================== */

@media (max-width: 900px) {

  .home-section {
    padding: 72px 0;
  }

  .home-hero {
    min-height: 620px;
    height: 80vh;
    max-height: 720px;
  }

  .home-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 14, 23, 0.9) 0%,
        rgba(4, 14, 23, 0.74) 50%,
        rgba(4, 14, 23, 0.36) 100%
      );
  }

  .home-hero__content {
    width: min(100%, 650px);
    padding-top: 120px;
  }

  .technology-slider__track {
    min-height: 0;
  }

  .technology-slide {
    position: relative;

    grid-template-columns: 1fr;
    gap: 30px;

    min-height: auto;
  }

  .technology-slide.is-active {
    position: relative;
  }

  .technology-slide__media {
    min-height: 330px;
  }

  .technology-slide__content {
    max-width: none;
  }

  .home-solutions__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-solutions__media {
    max-width: 760px;
    margin-inline: auto;
  }

  .home-impact__grid {
    grid-template-columns:
      minmax(230px, 0.45fr)
      minmax(0, 1fr);

    gap: 40px;
  }

  .home-impact__data {
    grid-template-columns: 1fr;
  }

  .home-impact__data-item {
    min-height: 88px;
  }

  .home-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .home-final-cta__action {
    justify-content: flex-start;
  }

}


/* ==========================================================
   14. MÓVIL Y TABLET PEQUEÑA
========================================================== */

@media (max-width: 720px) {

  html {
    scroll-padding-top: 82px;
  }

  .home-container {
    width: min(
      calc(100% - 28px),
      var(--home-container-width)
    );
  }

  .home-section {
    padding: 62px 0;
  }

  .home-section-heading {
    margin-bottom: 32px;
  }

  .home-section-title {
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
  }

  .home-section-description {
    font-size: 0.98rem;
    line-height: 1.68;
  }


  /* HERO */

  .home-hero {
    min-height: 610px;
    height: 86svh;
    max-height: 730px;
  }

  .home-hero-slide__image {
    object-position: center;
  }

  .home-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(4, 14, 23, 0.58) 0%,
        rgba(4, 14, 23, 0.72) 42%,
        rgba(4, 14, 23, 0.94) 100%
      );
  }

  .home-hero__container {
    align-items: flex-end;
  }

  .home-hero__content {
    width: 100%;
    padding: 120px 0 102px;
  }

  .home-hero__eyebrow {
    margin-bottom: 13px;
  }

  .home-hero__title {
    margin-bottom: 19px;

    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
    line-height: 1.02;
  }

  .home-hero__description {
    margin-bottom: 24px;

    font-size: 0.97rem;
    line-height: 1.62;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .home-button {
    width: 100%;
  }

  .home-hero-controls {
    bottom: 18px;
    gap: 10px;
  }

  .home-hero-pagination {
    max-width: 200px;
    overflow: hidden;
  }

  .home-slider-button {
    width: 42px;
    height: 42px;
  }

  .home-slider-dot {
    width: 7px;
    height: 7px;
  }

  .home-slider-dot.is-active {
    width: 21px;
  }


  /* QUÉ HACEMOS */

  .home-capabilities__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-capability-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .home-capability-card__media {
    height: 100%;
    min-height: 160px;
    aspect-ratio: auto;
  }

  .home-capability-card__content {
    padding: 18px;
  }

  .home-capability-card__description {
    margin-bottom: 16px;
  }


  /* TECNOLOGÍAS */

  .technology-slide {
    padding: 22px;
  }

  .technology-slide__media {
    min-height: 260px;
  }

  .technology-slide__product {
    width: min(94%, 430px);
    max-height: 280px;
  }

  .technology-slide__logo {
    width: 78px;
    height: 78px;
  }

  .technology-slide__title {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .technology-slide__description {
    font-size: 0.94rem;
    line-height: 1.67;
  }


  /* SOLUCIONES */

  .home-solutions__grid {
    gap: 28px;
  }

  .home-solutions__media {
    border-radius: var(--home-radius-md);
  }


  /* IMPACTO */

  .home-impact__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-impact__media {
    width: min(100%, 340px);
  }

  .home-impact__content {
    max-width: none;
  }

  .home-impact__data {
    grid-template-columns: 1fr;
    gap: 10px;
  }


  /* CAMPUS */

  .home-campus-banner,
  .home-campus-banner__container {
    min-height: 300px;
  }

  .home-campus-banner__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(4, 17, 29, 0.94),
        rgba(4, 17, 29, 0.68)
      );
  }

  .home-campus-banner__logo {
    width: min(100%, 310px);
    max-height: 58px;
  }

  .home-campus-banner__description {
    font-size: 0.9rem;
  }


  /* CTA */

  .home-final-cta {
    padding: 48px 0;
  }

  .home-final-cta__title {
    font-size: clamp(1.55rem, 6.8vw, 2.1rem);
  }

  .home-final-cta__description {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .home-final-cta__action,
  .home-final-cta__action .home-button {
    width: 100%;
  }

}


/* ==========================================================
   15. MÓVIL PEQUEÑO
========================================================== */

@media (max-width: 480px) {

  .home-container {
    width: min(
      calc(100% - 22px),
      var(--home-container-width)
    );
  }

  .home-hero {
    min-height: 590px;
  }

  .home-hero__content {
    padding-bottom: 94px;
  }

  .home-hero-controls {
    bottom: 14px;
  }

  .home-hero-pagination {
    gap: 5px;
  }

  .home-slider-button {
    width: 39px;
    height: 39px;
  }

  .home-capability-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .home-capability-card__media {
    min-height: 150px;
  }

  .home-capability-card__content {
    padding: 16px;
  }

  .home-capability-card__title {
    font-size: 1rem;
  }

  .home-capability-card__description {
    font-size: 0.83rem;
    line-height: 1.5;
  }

  .technology-slide {
    padding: 16px;
  }

  .technology-slide__media {
    min-height: 225px;
  }

  .technology-slide__logo {
    width: 68px;
    height: 68px;
  }

  .technology-slider__controls {
    gap: 9px;
  }

}


/* ==========================================================
   16. PANTALLAS GRANDES
========================================================== */

@media (min-width: 1600px) {

  .home-hero {
    max-height: 850px;
  }

  .home-hero__content {
    width: min(100%, 880px);
  }

}


/* ==========================================================
   17. MOVIMIENTO REDUCIDO
========================================================== */

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

  html {
    scroll-behavior: auto;
  }

  body.geoplot-home-page *,
  body.geoplot-home-page *::before,
  body.geoplot-home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .home-hero-slide {
    transform: none !important;
  }

}


/* ==========================================================
   18. SOPORTE SIN JAVASCRIPT
========================================================== */

.no-js .home-hero-slide:first-child,
.no-js .technology-slide:first-child {
  position: relative;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: none;
}

.no-js .home-hero-controls,
.no-js .technology-slider__controls {
  display: none;
}


/* ==========================================================
   19. IMPRESIÓN
========================================================== */

@media print {

  .home-hero-controls,
  .technology-slider__controls,
  .home-final-cta,
  .home-campus-banner {
    display: none !important;
  }

  .home-hero {
    min-height: auto;
    height: auto;
    max-height: none;

    color: #000000;
    background: #ffffff;
  }

  .home-hero-slide {
    display: none;
  }

  .home-hero-slide:first-child {
    position: relative;
    display: block;

    opacity: 1;
    visibility: visible;
  }

  .home-hero__overlay {
    display: none;
  }

  .home-hero__container {
    position: static;
  }

  .home-hero__content {
    padding: 30px 0;
  }

  .home-hero__title,
  .home-hero__description,
  .home-hero__eyebrow {
    color: #000000;
  }

  .home-section {
    padding: 32px 0;
  }

  .home-capability-card,
  .technology-slider__viewport,
  .home-solutions__media,
  .home-impact__media {
    break-inside: avoid;
    box-shadow: none;
  }

}
/* ==========================================================
   CORRECCIÓN DEFINITIVA
   TEXTO VISIBLE EN BOTONES CLAROS
========================================================== */

/* Botón del banner GEOPLOT Campus */

body.geoplot-home-page
.home-campus-banner
.home-button--light,
body.geoplot-home-page
.home-campus-banner
.home-button--light span {
  color: #075fbb !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #075fbb !important;
}

body.geoplot-home-page
.home-campus-banner
.home-button--light:hover,
body.geoplot-home-page
.home-campus-banner
.home-button--light:hover span {
  color: #075fbb !important;
  -webkit-text-fill-color: #075fbb !important;
}


/* Botón del CTA final */

body.geoplot-home-page
.home-final-cta
.home-button--light,
body.geoplot-home-page
.home-final-cta
.home-button--light span {
  color: #075fbb !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-text-fill-color: #075fbb !important;
}

body.geoplot-home-page
.home-final-cta
.home-button--light:hover,
body.geoplot-home-page
.home-final-cta
.home-button--light:hover span {
  color: #075fbb !important;
  -webkit-text-fill-color: #075fbb !important;
}


/* Protección general de los botones blancos */

body.geoplot-home-page .home-button--light {
  color: #075fbb !important;
  background-color: #ffffff !important;
}

body.geoplot-home-page .home-button--light span {
  color: inherit !important;
}
/* ==========================================================
   CTA FINAL — VERSIÓN BLANCA
========================================================== */

body.geoplot-home-page .home-final-cta {
  position: relative;
  overflow: hidden;

  padding: 88px 0;

  color: var(--home-text-main);

  background:
    radial-gradient(
      circle at 84% 20%,
      rgba(21, 133, 219, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );

  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}


/* Retícula muy suave */

body.geoplot-home-page .home-final-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

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

  background-size: 44px 44px;
}


/* Distribución */

body.geoplot-home-page .home-final-cta .home-container {
  position: relative;
  z-index: 1;
}

body.geoplot-home-page .home-final-cta__inner {
  display: grid;

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

  gap: clamp(36px, 5vw, 76px);
  align-items: center;

  min-height: 210px;
}


/* Eyebrow */

body.geoplot-home-page .home-final-cta__eyebrow {
  margin-bottom: 14px;

  color: var(--home-blue-700);

  font-size: var(--home-type-eyebrow);
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}


/* Título */

body.geoplot-home-page .home-final-cta__title {
  max-width: 820px;
  margin-bottom: 18px;

  color: var(--home-navy-950);

  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.042em;
}


/* Descripción */

body.geoplot-home-page .home-final-cta__description {
  max-width: 760px;
  margin-bottom: 0;

  color: var(--home-text-main);

  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.75;
}


/* Botón */

body.geoplot-home-page
.home-final-cta
.home-button--light {
  min-width: 280px;
  min-height: 58px;

  padding: 16px 26px;

  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      var(--home-blue-700),
      var(--home-blue-500)
    ) !important;

  border: 1px solid transparent;

  box-shadow:
    0 14px 30px rgba(7, 95, 187, 0.24);
}

body.geoplot-home-page
.home-final-cta
.home-button--light span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

body.geoplot-home-page
.home-final-cta
.home-button--light:hover {
  color: #ffffff !important;

  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #064f9d,
      #0b73d1
    ) !important;

  box-shadow:
    0 18px 38px rgba(7, 95, 187, 0.31);
}


/* Tablet */

@media (max-width: 900px) {

  body.geoplot-home-page .home-final-cta {
    padding: 76px 0;
  }

  body.geoplot-home-page .home-final-cta__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.geoplot-home-page .home-final-cta__action {
    justify-content: flex-start;
  }

}


/* Móvil */

@media (max-width: 720px) {

  body.geoplot-home-page .home-final-cta {
    padding: 64px 0;
  }

  body.geoplot-home-page .home-final-cta__title {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  body.geoplot-home-page .home-final-cta__description {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  body.geoplot-home-page
  .home-final-cta
  .home-button--light {
    width: 100%;
    min-width: 0;
  }

}
/* ==========================================================
   CTA FINAL — IMAGEN CUADRADA + TEXTO + BOTÓN
========================================================== */

body.geoplot-home-page .home-final-cta {
  position: relative;
  overflow: hidden;

  padding: 78px 0;

  color: var(--home-text-main);

  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(21, 133, 219, 0.08),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );

  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}


/* Retícula suave */

body.geoplot-home-page .home-final-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

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

  background-size: 44px 44px;
}


/* Estructura */

body.geoplot-home-page .home-final-cta .home-container {
  position: relative;
  z-index: 1;
}

body.geoplot-home-page .home-final-cta__inner {
  display: grid;

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

  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}


/* Imagen cuadrada */

body.geoplot-home-page .home-final-cta__media {
  width: 190px;
  aspect-ratio: 1 / 1;

  overflow: hidden;

  border: 1px solid var(--home-border);
  border-radius: var(--home-radius-md);

  background: var(--home-background);
  box-shadow: var(--home-shadow-md);
}

body.geoplot-home-page .home-final-cta__media img {
  width: 100%;
  height: 100%;
  max-width: none;

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


/* Texto */

body.geoplot-home-page .home-final-cta__content {
  min-width: 0;
  max-width: 760px;
}

body.geoplot-home-page .home-final-cta__eyebrow {
  margin-bottom: 12px;

  color: var(--home-blue-700);
}

body.geoplot-home-page .home-final-cta__title {
  margin-bottom: 16px;

  color: var(--home-navy-950);

  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

body.geoplot-home-page .home-final-cta__description {
  max-width: 720px;
  margin-bottom: 0;

  color: var(--home-text-main);

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


/* Botón */

body.geoplot-home-page .home-final-cta__action {
  display: flex;
  justify-content: flex-end;
}

body.geoplot-home-page .home-final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  min-width: 280px;
  min-height: 58px;
  padding: 16px 26px;

  border: 1px solid transparent;
  border-radius: var(--home-radius-sm);

  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      var(--home-blue-700),
      var(--home-blue-500)
    );

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

  box-shadow:
    0 14px 30px rgba(7, 95, 187, 0.24);

  transition:
    transform var(--home-transition),
    box-shadow var(--home-transition),
    background-color var(--home-transition);
}

body.geoplot-home-page .home-final-cta__button,
body.geoplot-home-page .home-final-cta__button span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.geoplot-home-page .home-final-cta__button:hover {
  transform: translateY(-3px);

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #064f9d,
      #0b73d1
    );

  box-shadow:
    0 18px 38px rgba(7, 95, 187, 0.31);
}


/* Tablet */

@media (max-width: 1000px) {

  body.geoplot-home-page .home-final-cta__inner {
    grid-template-columns:
      160px
      minmax(0, 1fr);

    gap: 28px 34px;
  }

  body.geoplot-home-page .home-final-cta__media {
    width: 160px;
  }

  body.geoplot-home-page .home-final-cta__action {
    grid-column: 2;
    justify-content: flex-start;
  }

}


/* Móvil */

@media (max-width: 720px) {

  body.geoplot-home-page .home-final-cta {
    padding: 62px 0;
  }

  body.geoplot-home-page .home-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  body.geoplot-home-page .home-final-cta__media {
    width: min(100%, 260px);
    margin-inline: auto;
  }

  body.geoplot-home-page .home-final-cta__content {
    text-align: left;
  }

  body.geoplot-home-page .home-final-cta__action {
    grid-column: auto;
    justify-content: stretch;
  }

  body.geoplot-home-page .home-final-cta__button {
    width: 100%;
    min-width: 0;
  }

}