/* =========================================================
   07 · DESARROLLO WEB A MEDIDA
   HERO
========================================================= */

.custom-hero {
  position: relative;
  overflow: hidden;

  min-height: 92vh;

  display: flex;
  align-items: center;

  padding: 145px 24px 80px;

  background:
    radial-gradient(
      circle at 82% 25%,
      rgba(20,139,80,.14),
      transparent 30%
    ),
    #151b18;
}

.custom-hero__inner {
  width: min(1220px, 100%);
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, .95fr)
    minmax(500px, 1.05fr);

  gap: 75px;

  align-items: center;
}


/* =========================================================
   COPY
========================================================= */

.custom-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;

  color: #87928b;
}

.custom-hero__eyebrow::before {
  content: "";

  width: 28px;
  height: 2px;

  background: #f28c28;
}

.custom-hero__title {
  margin: 0;

  font-size: clamp(58px, 6.5vw, 98px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 650;

  color: #fff;
}

.custom-hero__title span {
  display: block;

  color: #36b66d;
}

.custom-hero__lead {
  max-width: 650px;

  margin: 30px 0 0;

  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;

  color: #a0aba4;
}

.custom-hero__text {
  max-width: 620px;

  margin: 16px 0 0;

  font-size: 14px;
  line-height: 1.75;

  color: #7f8a83;
}


/* =========================================================
   ACTIONS
========================================================= */

.custom-hero__actions {
  margin-top: 35px;

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

  gap: 22px;
}

.custom-hero__button {
  min-height: 55px;

  padding: 0 20px 0 24px;

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

  gap: 18px;

  border-radius: 999px;

  background: #f28c28;

  text-decoration: none;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;

  color: #fff;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.custom-hero__button span {
  width: 35px;
  height: 35px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #fff;

  font-size: 17px;

  color: #f28c28;

  transition: transform .3s ease;
}

.custom-hero__button:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 45px rgba(242,140,40,.18);
}

.custom-hero__button:hover span {
  transform: translateX(4px);
}

.custom-hero__micro {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;

  color: #667169;
}


/* =========================================================
   VISUAL
========================================================= */

.custom-hero__visual {
  position: relative;

  min-height: 580px;

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


/* =========================================================
   SYSTEM
========================================================= */

.custom-system {
  position: relative;
  z-index: 3;

  width: min(560px, 100%);

  padding: 30px;

  overflow: hidden;

  border-radius: 30px;

  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(54,182,109,.13),
      transparent 35%
    ),
    #1c251f;

  border:
    1px solid rgba(255,255,255,.07);

  box-shadow:
    0 40px 90px rgba(0,0,0,.28);

  transform: rotate(1.5deg);

  transition: transform .45s ease;
}

.custom-hero__visual:hover
.custom-system {
  transform:
    rotate(0deg)
    translateY(-5px);
}


/* =========================================================
   TOP
========================================================= */

.custom-system__top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  margin-bottom: 45px;
}

.custom-system__top > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;

  color: #6f7a73;
}

.custom-system__status {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;

  color: #36b66d;
}

.custom-system__status i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #36b66d;

  box-shadow:
    0 0 0 5px rgba(54,182,109,.08);

  animation:
    customStatus 2s ease-in-out infinite;
}

@keyframes customStatus {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

}


/* =========================================================
   FLOW
========================================================= */

.custom-system__flow {
  display: grid;

  grid-template-columns:
    auto 1fr
    auto 1fr
    auto 1fr
    auto;

  align-items: center;

  gap: 9px;
}

.custom-node {
  min-width: 74px;

  padding: 12px 10px;

  text-align: center;

  border-radius: 14px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid rgba(255,255,255,.06);

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

.custom-node:hover {
  transform: translateY(-3px);

  background:
    rgba(54,182,109,.06);

  border-color:
    rgba(54,182,109,.16);
}

.custom-node span {
  display: block;

  margin-bottom: 5px;

  font-size: 7px;

  color: #69756e;
}

.custom-node strong {
  font-size: 8px;
  letter-spacing: .09em;

  color: #a2aca6;
}

.custom-system__flow > i {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.05),
      rgba(54,182,109,.38)
    );
}


/* =========================================================
   RESULT
========================================================= */

.custom-system__result {
  margin-top: 48px;

  padding: 34px;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #12874d,
      #19a15d
    );

  box-shadow:
    0 20px 50px rgba(20,139,80,.16);
}

.custom-system__result > span {
  display: block;

  margin-bottom: 13px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;

  color: rgba(255,255,255,.60);
}

.custom-system__result strong {
  display: block;

  font-size: clamp(38px, 4.5vw, 62px);
  line-height: .88;
  letter-spacing: -.055em;

  color: #fff;
}

.custom-system__result em {
  display: block;

  font-style: normal;
  font-weight: 650;

  color: #d7ffe6;
}

.custom-system__result p {
  max-width: 360px;

  margin: 17px 0 0;

  font-size: 11px;
  line-height: 1.6;

  color: rgba(255,255,255,.70);
}


/* =========================================================
   MODULES
========================================================= */

.custom-system__modules {
  margin-top: 15px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 7px;
}

.custom-system__modules span {
  padding: 9px 7px;

  text-align: center;

  border-radius: 999px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid rgba(255,255,255,.05);

  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;

  color: #707c74;
}


/* =========================================================
   FLOATING
========================================================= */

.custom-floating {
  position: absolute;
  z-index: 5;

  padding: 12px 15px;

  display: flex;
  align-items: center;

  gap: 9px;

  border-radius: 15px;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(0,0,0,.18);

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .09em;

  color: #17201b;
}

.custom-floating--logic {
  top: 95px;
  right: -5px;

  animation:
    customFloatA 5s ease-in-out infinite;
}

.custom-floating--logic span {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f28c28;

  color: #fff;
}

.custom-floating--code {
  left: -15px;
  bottom: 65px;

  animation:
    customFloatB 5.5s ease-in-out infinite;
}

.custom-floating--code i {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #148b50;

  box-shadow:
    0 0 0 5px rgba(20,139,80,.08);
}

@keyframes customFloatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}

@keyframes customFloatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

}


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

@media (max-width: 1050px) {

  .custom-hero__inner {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .custom-hero__copy {
    max-width: 850px;
  }

  .custom-hero__visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

}


@media (max-width: 700px) {

  .custom-hero {
    min-height: auto;

    padding:
      120px 20px
      65px;
  }

  .custom-hero__title {
    font-size:
      clamp(50px, 14vw, 74px);
  }

  .custom-hero__visual {
    min-height: 540px;
  }

  .custom-system {
    padding: 22px;

    transform: none;
  }

  .custom-system__flow {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .custom-system__flow > i {
    width: 1px;
    height: 16px;

    margin: auto;
  }

  .custom-node {
    width: 100%;
  }

  .custom-system__modules {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .custom-floating {
    display: none;
  }

}
/* =========================================================
   DESARROLLO A MEDIDA
   BLOQUE 02 · SOLUCIONES
========================================================= */

.custom-solutions {
  padding: 125px 24px;
  background: #f4f6f4;
}

.custom-solutions__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.custom-solutions__head {
  max-width: 920px;
  margin-bottom: 65px;
}

.custom-solutions__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #747e78;
}

.custom-solutions__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #f28c28;
}

.custom-solutions__title {
  margin: 0;
  font-size: clamp(43px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #151b18;
}

.custom-solutions__title span {
  display: block;
  color: #148b50;
}

.custom-solutions__intro {
  max-width: 750px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #707a74;
}

.custom-solutions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-solution {
  position: relative;
  min-height: 285px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  background: #fff;
  border: 1px solid rgba(20,30,25,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.custom-solution:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(18,28,23,.07);
}

.custom-solution--main {
  min-height: 390px;
  background: #151b18;
}

.custom-solution--green {
  background: linear-gradient(145deg,#12874d,#19a15d);
}

.custom-solution--dark {
  background: #1b241f;
}

.custom-solution__number {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 9px;
  font-weight: 800;
  color: #a0aaa4;
}

.custom-solution--main .custom-solution__number,
.custom-solution--green .custom-solution__number,
.custom-solution--dark .custom-solution__number {
  color: rgba(255,255,255,.5);
}

.custom-solution__label {
  display: block;
  margin-bottom: auto;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #949e98;
}

.custom-solution h3 {
  margin: 50px 0 0;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #17201b;
}

.custom-solution h3 span {
  display: block;
  color: #148b50;
}

.custom-solution--main h3,
.custom-solution--green h3,
.custom-solution--dark h3 {
  color: #fff;
}

.custom-solution--main h3 span,
.custom-solution--green h3 span {
  color: #36b66d;
}

.custom-solution p {
  margin: 14px 0 0;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.7;
  color: #737d77;
}

.custom-solution--main p,
.custom-solution--green p,
.custom-solution--dark p {
  color: rgba(255,255,255,.68);
}

.custom-solution__flow {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.custom-solution__flow span,
.custom-solution__flow strong {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.custom-solution__flow span {
  color: #748079;
}

.custom-solution__flow strong {
  padding: 8px 11px;
  border-radius: 999px;
  background: #148b50;
  color: #fff;
}

.custom-solution__flow i {
  font-style: normal;
  color: #f28c28;
}

.custom-solution--wide {
  grid-column: 1 / -1;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 90px;
  align-items: center;
  gap: 40px;
}

.custom-solution--wide h3 {
  margin-top: 12px;
}

.custom-solution__wide-mark {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f28c28;
  font-size: 30px;
  color: #fff;
}

@media(max-width:700px) {
  .custom-solutions {
    padding: 85px 20px;
  }

  .custom-solutions__grid {
    grid-template-columns: 1fr;
  }

  .custom-solution--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BLOQUE 03 · PROCESO
========================================================= */

.custom-process {
  padding: 125px 24px;
  background: #fff;
}

.custom-process__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.custom-process__head {
  max-width: 900px;
  margin-bottom: 70px;
}

.custom-process__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #747e78;
}

.custom-process__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #f28c28;
}

.custom-process__title {
  margin: 0;
  font-size: clamp(43px,5.4vw,76px);
  line-height: 1.02;
  letter-spacing: -.05em;
  color: #151b18;
}

.custom-process__title span {
  display: block;
  color: #148b50;
}

.custom-process__intro {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #707a74;
}

.custom-process__track {
  display: grid;
  grid-template-columns:
    1fr 55px
    1fr 55px
    1fr 55px
    1fr;
  align-items: center;
}

.custom-process__step {
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: #f3f5f3;
  border: 1px solid rgba(20,30,25,.06);
  transition: transform .3s ease;
}

.custom-process__step:hover {
  transform: translateY(-5px);
}

.custom-process__step--active {
  background: linear-gradient(145deg,#12874d,#19a15d);
}

.custom-process__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  color: #148b50;
}

.custom-process__step--active .custom-process__number {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.custom-process__step > strong {
  margin-top: auto;
  font-size: 9px;
  letter-spacing: .15em;
  color: #9aa39e;
}

.custom-process__step--active > strong {
  color: rgba(255,255,255,.58);
}

.custom-process__step h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #17201b;
}

.custom-process__step--active h3 {
  color: #fff;
}

.custom-process__step p {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.65;
  color: #747e78;
}

.custom-process__step--active p {
  color: rgba(255,255,255,.7);
}

.custom-process__connector {
  display: flex;
  align-items: center;
}

.custom-process__connector span {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,#d9e0dc,#148b50);
}

.custom-process__statement {
  margin-top: 55px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.custom-process__statement span,
.custom-process__statement strong {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.custom-process__statement span {
  color: #919b95;
}

.custom-process__statement strong {
  color: #148b50;
}

.custom-process__statement i {
  height: 1px;
  background: #dce2de;
}

@media(max-width:950px) {
  .custom-process__track {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .custom-process__connector {
    justify-content: center;
  }

  .custom-process__connector span {
    width: 2px;
    height: 25px;
  }

  .custom-process__step {
    min-height: 260px;
  }
}

@media(max-width:600px) {
  .custom-process {
    padding: 85px 20px;
  }

  .custom-process__statement {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* =========================================================
   BLOQUE 04 · CIERRE
========================================================= */

.custom-final {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 130px 24px 70px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 15%,rgba(20,139,80,.14),transparent 30%),
    #151b18;
}

.custom-final__word {
  position: absolute;
  left: 50%;
  bottom: -5%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(160px,24vw,390px);
  line-height: .7;
  font-weight: 750;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.018);
}

.custom-final__inner {
  position: relative;
  z-index: 2;
  width: min(1180px,100%);
  margin: 0 auto;
}

.custom-final__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #7e8a82;
}

.custom-final__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #f28c28;
}

.custom-final__top {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 70px;
  align-items: end;
}

.custom-final__title {
  margin: 0;
  font-size: clamp(58px,7.5vw,112px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 650;
  color: #fff;
}

.custom-final__title span,
.custom-final__title strong {
  display: block;
}

.custom-final__title span {
  color: #8a958e;
}

.custom-final__title strong {
  font-weight: 650;
  color: #36b66d;
}

.custom-final__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f28c28;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}

.custom-final__copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #87938b;
}

.custom-final__copy strong {
  color: #fff;
  font-weight: 500;
}

.custom-final__button {
  position: relative;
  margin-top: 65px;
  min-height: 155px;
  padding: 30px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: #202923;
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: transform .4s ease;
}

.custom-final__button::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: 50%;
  transform: translateY(-50%) scale(.2);
  border-radius: 50%;
  background: #148b50;
  opacity: 0;
  transition: transform .55s ease, opacity .4s ease;
}

.custom-final__button:hover {
  transform: translateY(-5px);
}

.custom-final__button:hover::before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.custom-final__button > div {
  position: relative;
  z-index: 2;
}

.custom-final__button > div span {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  color: #79857d;
}

.custom-final__button > div strong {
  display: block;
  font-size: clamp(28px,3.5vw,50px);
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
}

.custom-final__arrow {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  border-radius: 50%;
  background: #f28c28;
  font-size: 27px;
  color: #fff;
  transition: transform .4s ease, background .4s ease, color .4s ease;
}

.custom-final__button:hover .custom-final__arrow {
  transform: rotate(45deg);
  background: #fff;
  color: #148b50;
}

.custom-final__bottom {
  margin-top: 42px;
  display: grid;
  grid-template-columns:
    auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 13px;
}

.custom-final__bottom span,
.custom-final__bottom strong {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
}

.custom-final__bottom span {
  color: #647068;
}

.custom-final__bottom strong {
  color: #36b66d;
}

.custom-final__bottom i {
  height: 1px;
  background: rgba(255,255,255,.08);
}

@media(max-width:850px) {
  .custom-final__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media(max-width:600px) {
  .custom-final {
    min-height: auto;
    padding: 95px 20px 60px;
  }

  .custom-final__title {
    font-size: clamp(50px,14vw,74px);
  }

  .custom-final__button {
    min-height: 185px;
    padding: 27px;
    align-items: flex-end;
  }

  .custom-final__arrow {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
    font-size: 20px;
  }

  .custom-final__bottom {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .custom-final__bottom i {
    width: 70px;
  }
}