@font-face {
  font-family: "GillSans";
  src: url("../fonts/GillSans-01.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "GillSans";
  src: url("../fonts/GillSans-SemiBold-05.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "GillSans";
  src: url("../fonts/GillSans-Bold-02.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #f7f3ef;
  color: #171717;
  font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  overflow-x: hidden;
}

body,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.gill-regular {
  font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gill-semibold {
  font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.gill-bold {
  font-family: "GillSans", "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.pt-regular {
  font-family: "PT Serif", Georgia, serif;
  font-weight: 400;
  font-style: normal;
}

.pt-bold {
  font-family: "PT Serif", Georgia, serif;
  font-weight: 700;
  font-style: normal;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.count {
  font-variant-numeric: tabular-nums;
}

@keyframes grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* =========================
   NAVBAR
========================= */

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(33, 33, 33, 0.8);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
}

.site-navbar__inner {
  width: 100%;
  max-width: 1531px;
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.site-navbar__brand {
  max-width: 236px;
  min-width: 196px;
  height: 60px;
  display: flex;
  align-items: center;
}

.site-navbar__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-navbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-navbar__nav a {
  color: #ffffff;
  font-size: 15.5px;
  line-height: 16px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.site-navbar__toggle {
  display: none;
}

.site-navbar__cta {
  min-width: 160px;
  height: 41px;
  padding: 0 16px 0 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #919191;
  color: #ffffff;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-navbar__cta-icon {
  width: 16px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-navbar__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-navbar__cta:hover,
.site-navbar__cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.site-navbar__cta:hover .site-navbar__cta-icon img,
.site-navbar__cta:focus-visible .site-navbar__cta-icon img {
  transform: translateX(2px);
}

/* =========================
   HERO CAPITAL
========================= */

.capital-hero {
  width: 100%;
  min-height: 100vh;
  padding: 130px 40px 130px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #190402;
  color: #ffffff;
}

.capital-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(25, 4, 2, 0.88) 0%,
    rgba(25, 4, 2, 0.7) 43%,
    rgba(25, 4, 2, 0.28) 72%,
    rgba(25, 4, 2, 0.15) 100%
  );
}

.capital-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 35%;
}

.capital-hero__imagen {
  position: absolute;
  inset: 0;
}

.capital-hero__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.capital-hero__content {
  width: 100%;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

.capital-hero__logo-salvador {
  width: 188px;
  height: auto;
  margin-bottom: 28px;
  margin-left: 0px;
  object-fit: contain;
  object-position: left center;
}

.capital-hero__label {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.capital-hero h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: 70px;
  line-height: 71px;
  letter-spacing: -2px;
}

.capital-hero h1 span {
  color: #ffd27a;
}

.capital-hero__texto {
  max-width: 760px;
  margin-top: 28px;
  color: #f3f0ee;
  font-size: 22px;
  line-height: 30px;
}

.capital-hero__datos {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capital-hero__datos span {
  padding: 24px 26px;
  background-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.02em;
}

/* =========================
   PROPOSITO
========================= */

.proposito {
  width: 100%;
  padding: 96px 40px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.proposito__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.proposito__textos {
  width: 70%;
}

.proposito__dato {
  width: 30%;
}

.proposito .proposito__dato {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.proposito__label {
  margin-bottom: 10px;
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.proposito h2 {
  max-width: 730px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.proposito__intro {
  max-width: 680px;
  margin-top: 22px;
  color: #171717;
  font-size: 22px;
  line-height: 27px;
}

.proposito__texto {
  max-width: 680px;
  margin-top: 14px;
  color: #6f6f6f;
  font-size: 18px;
  line-height: 24px;
}

.proposito__numero {
  color: #a50f0f;
  font-size: 120px;
  letter-spacing: -2px;
}

.proposito__nota {
  margin-top: 12px;
  color: #6f6f6f;
  font-size: 15px;
  line-height: 23px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================
   RETO
========================= */

.reto {
  width: 100%;
  padding: 136px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #0e0e0e;
  color: #ffffff;
}

.reto__fondo {
  position: absolute;
  top: 0;
  right: -80px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 360px;
  line-height: 360px;
}

.reto__content {
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.reto__label {
  color: #ffd47b;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.reto h2 {
  max-width: 880px;
  margin-top: 10px;
  color: #ffffff;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.reto__tarjetas {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reto__tarjeta {
  min-width: 240px;
  flex: 1;
  padding: 36px 26px;
  background-color: #181818;
}

.reto__numero {
  margin-bottom: 14px;
  color: #ffc457;
  font-size: 40px;
  line-height: 44px;
}

.reto__tarjeta h3 {
  color: #ffffff;
  font-size: 19px;
  line-height: 23px;
}

.reto__tarjeta p {
  margin-top: 10px;
  color: #dedede;
  font-size: 17px;
  line-height: 23px;
}

.reto__comparativo {
  margin-top: 46px;
  display: flex;
  gap: 14px;
}

.reto__modelo {
  width: 100%;
  padding: 22px;
}

.reto__modelo--oscuro {
  border: 1px solid #696969;
  background-color: #292929;
}

.reto__modelo--claro {
  background-color: #ffffff;
  color: #171717;
}

.reto__subtitulo {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reto__modelo--claro .reto__subtitulo {
  color: #a50f0f;
}

.reto__modelo p {
  font-size: 18px;
  line-height: 24px;
}

.reto__barra {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background-color: #2b2b2b;
}

.reto__barra span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #e4a428, #ffd983);
  transform-origin: left;
  animation: grow 1.2s ease both;
}

.reto__barra--corta span {
  max-width: 22%;
}

.reto__barra--completa {
  background-color: #eeeeee;
}

.reto__barra--completa span {
  max-width: 100%;
}

/* =========================
   SOLUCION
========================= */

.solucion {
  width: 100%;
  padding: 126px 40px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.solucion__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.solucion__foto {
  width: 40%;
  max-width: 560px;
  min-height: 530px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(31, 15, 13, 0.14);
}

.solucion__foto img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center;
}

.solucion__textos {
  width: 60%;
}

.solucion__label {
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.solucion h2 {
  margin-top: 10px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.solucion__intro {
  margin-top: 22px;
  color: #171717;
  font-size: 22px;
  line-height: 29px;
}

.solucion__lista {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solucion__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.solucion__item span {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5e7e3;
  color: #a50f0f;
  font-size: 13px;
  line-height: 16px;
}

.solucion__item h3 {
  color: #171717;
  font-size: 17px;
  line-height: 23px;
}

.solucion__item p {
  margin-top: 3px;
  color: #6f6f6f;
  font-size: 17px;
  line-height: 24px;
}

/* =========================
   MODELO
========================= */

.modelo {
  width: 100%;
  padding: 96px 40px;
  display: flex;
  justify-content: center;
  background-color: #f2f2f2;
}

.modelo__content {
  width: 100%;
  max-width: 1280px;
}

.modelo__label {
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.modelo h2 {
  max-width: 760px;
  margin-top: 10px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.modelo__texto {
  max-width: 760px;
  margin-top: 18px;
  color: #6f6f6f;
  font-size: 19px;
  line-height: 24px;
}

.modelo__pasos {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modelo__paso {
  min-width: 200px;
  min-height: 148px;
  flex: 1;
  padding: 30px 22px;
  position: relative;
  background-color: #ffffff;
}

.modelo__paso:last-child::after {
  display: none;
}

.modelo__paso p {
  margin-top: 10px;
  color: #6f6f6f;
  font-size: 16.5px;
  line-height: 20px;
}

p.modelo__numero {
  margin-bottom: 4px;
  color: #a50f0f;
  font-size: 40px;
  line-height: 48px;
}

.modelo__paso h3 {
  color: #171717;
  font-size: 17px;
  line-height: 23px;
}

/* =========================
   PROMESA
========================= */

.promesa {
  width: 100%;
  padding: 136px 40px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #3c0303, #651312);
  color: #ffffff;
}

.promesa__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

.promesa__textos {
  width: 100%;
}

.promesa__label {
  color: #ffd47b;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px !important;
}

.promesa h2 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.2px;
}

.promesa__intro {
  margin-top: 22px;
  color: #ffffff;
  font-size: 22px;
  line-height: 29px;
}

.promesa__textos p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2%;
}

.promesa__tarjeta {
  width: 100%;
  max-width: 420px;
  padding: 30px 26px;
  background-color: #ffffff;
  color: #171717;
}

.promesa__subtitulo {
  color: #a50f0f;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.promesa__duracion {
  margin-top: 12px;
  color: #a50f0f;
  font-size: 64px;
  line-height: 70px;
}

.promesa__precio {
  color: #a50f0f;
  font-size: 48px;
  line-height: 54px;
}

.promesa__tarjeta p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 24px;
}

.promesa__linea {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: #ded7d1;
}

/* =========================
   OFERTA
========================= */

.oferta {
  width: 100%;
  padding: 96px 40px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.oferta__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 52px;
}

.oferta__textos {
  width: 100%;
  max-width: 540px;
}

.oferta__label {
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.oferta h2 {
  margin-top: 10px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.oferta__texto {
  margin-top: 18px;
  color: #6f6f6f;
  font-size: 18px;
  line-height: 24px;
}

.oferta__lista {
  width: 100%;
  max-width: 560px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  list-style: none;
}

.oferta__lista li {
  min-width: 240px;
  flex: 1;
  padding: 18px 8px;
  border-bottom: 1px solid #ded7d1;
  background-color: #ffffff;
  color: #171717;
  font-size: 17px;
  line-height: 24px;
}

.oferta__lista span {
  margin-right: 8px;
  color: #a50f0f;
  font-size: 13px;
  line-height: 16px;
}

/* =========================
   IMPACTO
========================= */

.impacto {
  width: 100%;
  padding: 146px 40px;
  display: flex;
  justify-content: center;
  background-color: #111111;
  color: #ffffff;
}

.impacto__content {
  width: 100%;
  max-width: 1280px;
}

.impacto__label {
  color: #ffd47b;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.impacto h2 {
  max-width: 980px;
  margin-top: 10px;
  color: #ffffff;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.impacto__tabla {
  width: 100%;
  margin-top: 28px;
  overflow-x: auto;
}

.impacto__tabla table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.impacto__tabla th,
.impacto__tabla td {
  padding: 25px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.impacto__tabla th {
  color: #d7b65b;
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.impacto__tabla td {
  color: #ffffff;
  font-size: 17px;
  line-height: 24px;
}

.impacto__tabla td:last-child {
  font-weight: 600;
}

.impacto__total {
  margin-top: 50px;
  color: #939393;
  font-size: 112px;
  line-height: 112px;
}

.impacto__nota {
  margin-top: 20px;
  color: #ffffff;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* =========================
   METRICAS
========================= */

.metricas {
  width: 100%;
  padding: 146px 40px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.metricas__content {
  width: 100%;
  max-width: 1280px;
}

.metricas__label {
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.metricas h2 {
  margin-top: 10px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.metricas__tarjetas {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metricas__tarjeta {
  min-width: 240px;
  flex: 1;
  padding: 22px;
  border: 1px solid #ded7d1;
  background-color: #ffffff;
}

.metricas__numero {
  color: #a50f0f;
  font-size: 48px;
  line-height: 54px;
}

.metricas__tarjeta p:last-child {
  margin-top: 8px;
  color: #171717;
  font-size: 17px;
  line-height: 24px;
}

.metricas__bloques {
  margin-top: 38px;
  display: flex;
  gap: 52px;
}

.metricas__bloque {
  width: 100%;
}

.metricas__bloque h3 {
  color: #171717;
  font-size: 27px;
  line-height: 34px;
}

.metricas__bloque p {
  margin-top: 12px;
  color: #171717;
  font-size: 18px;
  line-height: 24px;
}

.metricas__bloque strong {
  color: #171717;
}

/* =========================
   RUTA
========================= */

.ruta {
  width: 100%;
  padding: 96px 40px;
  display: flex;
  justify-content: center;
  background-color: #f2f2f2;
}

.ruta__content {
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 52px;
}

.ruta__textos {
  width: 100%;
  max-width: 560px;
}

.ruta__label {
  color: #a50f0f;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.ruta h2 {
  margin-top: 10px;
  color: #171717;
  font-size: 60px;
  line-height: 58px;
  letter-spacing: -1.2px;
}

.ruta__texto {
  margin-top: 18px;
  color: #6f6f6f;
  font-size: 19px;
  line-height: 24px;
}

.ruta__timeline {
  width: 100%;
  max-width: 560px;
  padding-left: 28px;
  position: relative;
}

.ruta__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
  background: linear-gradient(#a50f0f, #e4a428);
}

.ruta__item {
  padding: 0 0 40px 22px;
  position: relative;
}

.ruta__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -26px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e4a428;
  box-shadow: 0 0 0 6px #f2f2f2;
}

.ruta__fecha {
  color: #a50f0f;
  font-size: 20px;
  line-height: 25px;
}

.ruta__item h3 {
  margin-top: 3px;
  color: #171717;
  font-size: 17px;
  line-height: 23px;
}

.ruta__item p:last-child {
  margin-top: 10px;
  color: #6f6f6f;
  font-size: 18px;
  line-height: 23px;
}

/* =========================
   CONTACTO
========================= */

.contacto {
  width: 100%;
  padding: 96px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #3c0303, #8b1b19);
  color: #ffffff;
}

.contacto::before {
  content: "50K";
  position: absolute;
  right: -40px;
  bottom: -120px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "PT Serif", Georgia, serif;
  font-size: 420px;
  font-weight: 700;
  line-height: 420px;
}

.contacto__content {
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  gap: 52px;
}

.contacto__textos {
  width: 100%;
  max-width: 780px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.contacto__label {
  color: #ffd47b;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 3px !important;
}

.contacto h2 {
  margin-top: 10px;
  color: #ffffff;
  font-size: 60px;
  line-height: 64px;
  letter-spacing: -1.2px;
}

.contacto__intro {
  margin-top: 22px;
  color: #ffffff;
  font-size: 22px;
  line-height: 29px;
}

.contacto__textos p {
  margin-top: 26px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 2%;
}

.contacto__boton {
  width: fit-content;
  padding: 19px 23px;
  background-color: #ac120f;
  color: white;
}

.contacto__tarjeta {
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 28px;
  background-color: #ffffff;
  color: #171717;
}

.contacto__tarjeta img {
  width: 250px;
  margin-bottom: 22px;
}

.contacto__subtitulo {
  color: #a50f0f;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contacto__tarjeta p {
  margin-top: 6px;
  color: #171717;
  font-size: 17px;
  line-height: 24px;
}

.contacto__linea {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: #ded7d1;
}

.contacto__tarjeta .contacto__nota {
  color: #6f6f6f;
  font-size: 14px;
  line-height: 18px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  width: 100%;
  min-height: 511px;
  display: flex;
  justify-content: center;
  background-color: #620903;
  color: #ffffff;
}

.site-footer__inner {
  width: 100%;
  max-width: 1498px;
  min-height: 511px;
  padding: 75px 42px 39px;
  display: flex;
  flex-direction: column;
}

.site-footer__top {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 42px;
}

.footer-brand {
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand__logo {
  width: 109px;
  height: 109px;
  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 31px;
  color: #f0ebe8;
  font-size: 18px;
  line-height: 26px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column--contact {
  width: 100%;
  max-width: 420px;
}

.footer-column--social {
  width: fit-content;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 17px;
  line-height: 35px;
  text-transform: uppercase;
}

.footer-column address {
  max-width: 420px;
  color: #ffffff;
  font-size: 17px;
  font-style: normal;
  line-height: 27px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.footer-social__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.footer-social__link:hover img,
.footer-social__link:focus-visible img {
  transform: scale(1.05);
}

.site-footer__bottom {
  width: 100vw;
  margin: auto 0 0 50%;
  padding-top: 32px;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  transform: translateX(-50%);
}

.site-footer__bottom p {
  width: 100%;
  max-width: 1498px;
  margin: 0 42px;
  color: rgba(240, 235, 232, 0.6);
  font-size: 18px;
  line-height: 26px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1360px) {
  .site-navbar__inner {
    max-width: 1240px;
    gap: 24px;
  }

  .site-navbar__brand {
    max-width: 210px;
    min-width: 180px;
  }

  .site-navbar__nav {
    gap: 20px;
  }

  .site-navbar__nav a {
    font-size: 14.5px;
  }

  .site-navbar__cta {
    min-width: 148px;
    padding: 0 14px 0 18px;
    font-size: 14px;
  }

  .capital-hero__content,
  .proposito__content,
  .reto__content,
  .solucion__content,
  .modelo__content,
  .promesa__content,
  .oferta__content,
  .impacto__content,
  .metricas__content,
  .ruta__content,
  .contacto__content {
    max-width: 1160px;
  }

  .capital-hero h1 {
    font-size: 66px;
    line-height: 67px;
  }



  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    font-size: 56px;
    line-height: 56px;
  }

  .promesa h2,
  .contacto h2 {
    line-height: 60px;
  }

  .proposito__numero {
    font-size: 104px;
  }

  .impacto__total {
    font-size: 96px;
    line-height: 100px;
  }
}

@media (max-width: 1180px) {
  .site-navbar__inner {
    max-width: 100%;
    gap: 18px;
  }

  .site-navbar__brand {
    max-width: 188px;
    min-width: 158px;
  }

  .site-navbar__nav {
    gap: 14px;
  }

  .site-navbar__nav a {
    font-size: 13.5px;
    letter-spacing: 0;
  }

  .site-navbar__cta {
    min-width: 136px;
    height: 39px;
    padding: 0 12px 0 15px;
    font-size: 13.5px;
  }

  .capital-hero {
    padding-top: 120px;
    padding-bottom: 116px;
  }

  .proposito,
  .modelo,
  .oferta,
  .ruta,
  .contacto {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .reto,
  .solucion,
  .promesa,
  .impacto,
  .metricas {
    padding-top: 116px;
    padding-bottom: 116px;
  }

  .proposito__content,
  .solucion__content,
  .promesa__content,
  .oferta__content,
  .metricas__bloques,
  .ruta__content,
  .contacto__content {
    gap: 38px;
  }

  .capital-hero h1 {
    max-width: 660px;
    font-size: 62px;
    line-height: 63px;
  }

  .capital-hero__logo-salvador {
    width: 150px;
    margin-bottom: 36px;
  }

  .capital-hero__texto {
    max-width: 690px;
    font-size: 21px;
    line-height: 29px;
  }

  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    font-size: 50px;
    line-height: 51px;
  }

  .promesa h2,
  .contacto h2 {
    line-height: 55px;
  }

  .capital-hero__label,
  .proposito__label,
  .reto__label,
  .solucion__label,
  .modelo__label,
  .promesa__label,
  .oferta__label,
  .impacto__label,
  .metricas__label,
  .ruta__label,
  .contacto__label {
    font-size: 19px;
    line-height: 25px;
  }

  .proposito__textos {
    width: 66%;
  }

  .proposito__dato {
    width: 34%;
  }

  .proposito__numero {
    font-size: 92px;
    line-height: 96px;
  }

  .reto__fondo {
    right: -64px;
    font-size: 300px;
    line-height: 300px;
  }

  .reto__tarjeta,
  .metricas__tarjeta {
    min-width: 220px;
  }

  .solucion__foto {
    width: 44%;
    min-height: 500px;
  }

  .solucion__foto img {
    height: 500px;
  }

  .solucion__textos {
    width: 56%;
  }

  .promesa__duracion {
    font-size: 58px;
    line-height: 64px;
  }

  .promesa__precio {
    font-size: 42px;
    line-height: 48px;
  }

  .oferta__textos,
  .oferta__lista,
  .ruta__textos,
  .ruta__timeline {
    max-width: 520px;
  }

  .impacto__total {
    font-size: 84px;
    line-height: 88px;
  }

  .contacto::before {
    font-size: 340px;
    line-height: 340px;
  }

  .site-footer__inner {
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (max-width: 980px) {
  .site-navbar {
    min-height: 78px;
    align-items: flex-start;
  }

  .site-navbar__inner {
    min-height: 78px;
    padding: 15px 20px 16px;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0;
  }

  .site-navbar__brand {
    min-width: 0;
    max-width: 196px;
    height: 50px;
  }

  .site-navbar__toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
  }

  .site-navbar__toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background-color: #ffffff;
    transform-origin: center;
    transition:
      transform 0.24s ease,
      opacity 0.2s ease;
  }

  .site-navbar__nav {
    width: 100%;
    max-height: 0;
    padding-top: 0;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.3s ease,
      padding-top 0.3s ease,
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.3s ease;
  }

  .site-navbar__nav a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
    line-height: 18px;
  }

  .site-navbar__cta {
    width: 100%;
    max-height: 0;
    height: 43px;
    margin-top: 0;
    padding: 0 17px 0 20px;
    order: 4;
    overflow: hidden;
    border-color: rgba(145, 145, 145, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.3s ease,
      margin-top 0.3s ease,
      border-color 0.3s ease,
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.3s ease;
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-navbar.is-open .site-navbar__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-navbar.is-open .site-navbar__nav {
    max-height: 300px;
    padding-top: 18px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navbar.is-open .site-navbar__cta {
    max-height: 43px;
    margin-top: 16px;
    border-color: #919191;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .capital-hero,
  .proposito,
  .reto,
  .solucion,
  .modelo,
  .promesa,
  .oferta,
  .impacto,
  .metricas,
  .ruta,
  .contacto {
    padding-right: 24px;
    padding-left: 24px;
  }

  .capital-hero {
    min-height: 760px;
    padding-top: 128px;
    padding-bottom: 92px;
  }

  .capital-hero::before {
    background: linear-gradient(
      90deg,
      rgba(25, 4, 2, 0.92) 0%,
      rgba(25, 4, 2, 0.74) 55%,
      rgba(25, 4, 2, 0.34) 100%
    );
  }

  .proposito__content,
  .solucion__content,
  .promesa__content,
  .oferta__content,
  .ruta__content,
  .contacto__content,
  .metricas__bloques {
    flex-direction: column;
    align-items: stretch;
  }

  .proposito__textos,
  .proposito__dato,
  .solucion__foto,
  .solucion__textos,
  .promesa__tarjeta,
  .oferta__textos,
  .oferta__lista,
  .ruta__textos,
  .ruta__timeline {
    width: 100%;
    max-width: 100%;
  }

  .proposito .proposito__dato {
    align-items: flex-start;
    text-align: left;
  }

  .capital-hero h1 {
    max-width: 620px;
    font-size: 58px;
    line-height: 59px;
  }


  .capital-hero__texto {
    max-width: 640px;
    font-size: 20px;
    line-height: 28px;
  }

  .capital-hero__datos span {
    padding: 20px 22px;
  }

  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    max-width: 760px;
    font-size: 46px;
    line-height: 48px;
  }

  .promesa h2,
  .contacto h2 {
    line-height: 52px;
  }

  .proposito__intro,
  .solucion__intro,
  .promesa__intro,
  .contacto__intro {
    max-width: 720px;
    font-size: 20px;
    line-height: 27px;
  }

  .proposito__texto,
  .modelo__texto,
  .oferta__texto,
  .ruta__texto {
    max-width: 720px;
    font-size: 18px;
    line-height: 24px;
  }

  .proposito__numero {
    font-size: 86px;
    line-height: 90px;
  }

  .reto__tarjetas,
  .modelo__pasos,
  .metricas__tarjetas {
    gap: 14px;
  }

  .reto__tarjeta,
  .modelo__paso,
  .metricas__tarjeta {
    min-width: 260px;
  }

  .reto__comparativo {
    flex-direction: column;
  }

  .solucion__foto {
    min-height: 460px;
  }

  .solucion__foto img {
    height: 460px;
  }

  .promesa__tarjeta {
    padding: 28px 24px;
  }

  .impacto__tabla table {
    min-width: 680px;
  }

  .impacto__total {
    font-size: 72px;
    line-height: 78px;
  }

  .contacto__content {
    align-items: center;
  }

  .contacto::before {
    right: -44px;
    bottom: -86px;
    font-size: 280px;
    line-height: 280px;
  }

  .modelo__paso::after {
    display: none;
  }

  .site-footer__inner {
    padding: 64px 54px 38px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 28px;
  }

  .footer-brand,
  .footer-column--contact {
    max-width: 100%;
  }

  .footer-brand p,
  .footer-column address {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .capital-hero {
    min-height: 700px;
    padding: 120px 20px 82px;
  }

  .proposito,
  .reto,
  .solucion,
  .modelo,
  .promesa,
  .oferta,
  .impacto,
  .metricas,
  .ruta,
  .contacto {
    padding: 78px 20px;
  }

  .capital-hero h1 {
    max-width: 560px;
    font-size: 52px;
    line-height: 53px;
    letter-spacing: -1.2px;
  }



  .capital-hero__texto {
    font-size: 19px;
    line-height: 26px;
  }

  .capital-hero__datos {
    flex-direction: column;
    align-items: flex-start;
  }

  .capital-hero__datos span {
    width: 100%;
    max-width: 420px;
    padding: 17px 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -0.8px;
  }

  .capital-hero__label,
  .proposito__label,
  .reto__label,
  .solucion__label,
  .modelo__label,
  .promesa__label,
  .oferta__label,
  .impacto__label,
  .metricas__label,
  .ruta__label,
  .contacto__label {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 2px;
  }

  .proposito__intro,
  .solucion__intro,
  .promesa__intro,
  .contacto__intro {
    font-size: 19px;
    line-height: 25px;
  }

  .proposito__numero {
    font-size: 78px;
    line-height: 82px;
  }

  .reto__fondo {
    right: -44px;
    font-size: 190px;
    line-height: 190px;
  }

  .reto__tarjeta,
  .modelo__paso,
  .metricas__tarjeta {
    min-width: 220px;
  }

  .solucion__foto {
    min-height: 410px;
  }

  .solucion__foto img {
    height: 410px;
  }

  .oferta__lista {
    gap: 0;
  }

  .oferta__lista li {
    min-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .impacto__tabla {
    overflow: visible;
  }

  .impacto__tabla table,
  .impacto__tabla thead,
  .impacto__tabla tbody,
  .impacto__tabla tr,
  .impacto__tabla td {
    width: 100%;
    min-width: 0;
    display: block;
  }

  .impacto__tabla thead {
    display: none;
  }

  .impacto__tabla tbody {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .impacto__tabla tr {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .impacto__tabla td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .impacto__tabla td:last-child {
    border-bottom: 0;
  }

  .impacto__tabla td::before {
    display: block;
    margin-bottom: 4px;
    color: #d7b65b;
    font-size: 12px;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .impacto__tabla td:nth-child(1)::before {
    content: "Periodo";
  }

  .impacto__tabla td:nth-child(2)::before {
    content: "Estudiantes";
  }

  .impacto__tabla td:nth-child(3)::before {
    content: "Financiamiento";
  }

  .impacto__tabla td:nth-child(4)::before {
    content: "Costo";
  }

  .impacto__total {
    font-size: 60px;
    line-height: 66px;
  }

  .ruta__timeline {
    padding-left: 22px;
  }

  .contacto__boton {
    max-width: 100%;
    text-align: center;
  }

  .contacto::before {
    right: -32px;
    bottom: -42px;
    font-size: 190px;
    line-height: 190px;
  }
}

@media (max-width: 480px) {
  .site-navbar__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-navbar__brand {
    max-width: 146px;
    height: 38px;
  }

  .capital-hero {
    min-height: 660px;
    padding: 120px 18px 74px;
  }

  .proposito,
  .reto,
  .solucion,
  .modelo,
  .promesa,
  .oferta,
  .impacto,
  .metricas,
  .ruta,
  .contacto {
    padding: 68px 18px;
  }

  .capital-hero h1 {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -1.2px;
  }



  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    font-size: 34px;
    line-height: 37px;
    letter-spacing: -0.8px;
  }

  .capital-hero__label,
  .proposito__label,
  .reto__label,
  .solucion__label,
  .modelo__label,
  .promesa__label,
  .oferta__label,
  .impacto__label,
  .metricas__label,
  .ruta__label,
  .contacto__label {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
  }

  .capital-hero__texto,
  .proposito__intro,
  .solucion__intro,
  .promesa__intro,
  .contacto__intro {
    font-size: 18px;
    line-height: 24px;
  }

  .proposito__numero {
    font-size: 64px;
    line-height: 68px;
  }

  .reto__fondo {
    right: -34px;
    font-size: 146px;
    line-height: 146px;
  }

  .reto__tarjeta,
  .modelo__paso,
  .metricas__tarjeta {
    min-width: 100%;
    padding: 24px 20px;
  }

  .solucion__foto {
    min-height: 330px;
  }

  .solucion__foto img {
    height: 330px;
  }

  .promesa__tarjeta {
    padding: 24px 20px;
  }

  .promesa__duracion {
    font-size: 48px;
    line-height: 54px;
  }

  .promesa__precio {
    font-size: 36px;
    line-height: 42px;
  }

  .impacto__tabla {
    margin-right: -18px;
    padding-right: 18px;
  }

  .impacto__total {
    font-size: 46px;
    line-height: 52px;
  }

  .metricas__numero {
    font-size: 42px;
    line-height: 48px;
  }

  .ruta__item {
    padding-bottom: 34px;
  }

  .ruta__fecha {
    font-size: 18px;
    line-height: 23px;
  }

  .contacto::before {
    right: -24px;
    bottom: -30px;
    font-size: 140px;
    line-height: 140px;
  }

  .contacto__tarjeta img {
    width: 220px;
  }

  .site-footer {
    min-height: auto;
  }

  .site-footer__inner {
    min-height: auto;
    padding: 46px 28px 34px;
  }

  .site-footer__top {
    gap: 36px;
  }

  .footer-brand,
  .footer-column--contact,
  .footer-column--social {
    width: 100%;
  }

  .footer-brand p,
  .footer-column h2,
  .footer-column address,
  .site-footer__bottom p {
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer__bottom {
    margin-top: 52px;
    padding-top: 28px;
  }

  .site-footer__bottom p {
    margin: 0;
    padding-left: 28px;
  }
}

@media (max-width: 360px) {
  .capital-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .proposito,
  .reto,
  .solucion,
  .modelo,
  .promesa,
  .oferta,
  .impacto,
  .metricas,
  .ruta,
  .contacto {
    padding-right: 16px;
    padding-left: 16px;
  }

  .capital-hero h1 {
    font-size: 38px;
    line-height: 40px;
  }

  .proposito h2,
  .reto h2,
  .solucion h2,
  .modelo h2,
  .promesa h2,
  .oferta h2,
  .impacto h2,
  .metricas h2,
  .ruta h2,
  .contacto h2 {
    font-size: 31px;
    line-height: 34px;
  }

  .capital-hero__datos span {
    padding: 15px 16px;
  }

  .solucion__foto {
    min-height: 300px;
  }

  .solucion__foto img {
    height: 300px;
  }

  .impacto__total {
    font-size: 40px;
    line-height: 46px;
  }

  .site-footer__inner {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-footer__bottom p {
    padding-left: 22px;
  }
}
