/* =========================================
   BASE
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Inter", sans-serif;
  background: #020304;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: #f5f5f5;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 126, 255, 0.08), transparent 25%),
    #020304;
}

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

button {
  font-family: inherit;
}

/* =========================================
   HEADER
========================================= */

.process-header {
  position: relative;
  z-index: 1100;

  height: 82px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 3, 4, 0.96);
}

.back-button {
  width: 38px;
  height: 38px;

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

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;

  background: #080a0d;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  color: white;
}

.back-button svg {
  width: 19px;
  height: 19px;
}

.process-logo {
  justify-self: center;

  height: 65px;

  display: flex;
  align-items: center;
}

.process-logo__symbol {
  width: 55px;
  height: 55px;

  object-fit: contain;
}

.process-logo__name {
  width: 104px;
  height: auto;

  object-fit: contain;

  margin-left: -7px;
}

/* =========================================
   HAMBURGUESA
========================================= */

.menu {
  justify-self: end;

  width: 38px;
  height: 38px;

  padding: 7px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  border: 0;
  background: transparent;

  cursor: pointer;
}

.menu span {
  width: 25px;
  height: 2px;

  display: block;

  border-radius: 10px;

  background: #f5f5f5;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu.active span:nth-child(2) {
  opacity: 0;
}

.menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   MENÚ MOBILE
========================================= */

.mobile-menu {
  position: fixed;

  top: 82px;
  left: 0;

  z-index: 1000;

  width: 100%;

  padding: 22px 24px 28px;

  display: flex;
  flex-direction: column;

  background: linear-gradient(180deg, #05080c 0%, #020304 100%);

  border-bottom: 1px solid rgba(0, 140, 255, 0.25);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.65),
    0 0 25px rgba(0, 126, 255, 0.06);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-12px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.mobile-menu > a:not(.mobile-menu__cta) {
  padding: 15px 2px;

  color: #e9eaec;

  font-size: 14px;
  font-weight: 600;

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

.mobile-menu__cta {
  height: 46px;

  margin-top: 20px;

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

  border: 1px solid #149cff;
  border-radius: 7px;

  color: #fff;

  font-size: 13px;
  font-weight: 700;

  background: linear-gradient(105deg, #087bdc, #0756cf 50%, #073da9);

  box-shadow: 0 0 18px rgba(0, 151, 255, 0.25);
}

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

.process-hero {
  position: relative;

  width: 100%;

  padding: 46px 20px 34px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 25%,
      rgba(0, 126, 255, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, #020304 0%, #04070b 100%);
}

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

  position: absolute;

  width: 230px;
  height: 230px;

  right: -130px;
  top: 60px;

  border: 1px solid rgba(0, 140, 255, 0.12);

  transform: rotate(45deg);

  pointer-events: none;
}

.process-badge {
  position: relative;
  z-index: 2;

  width: max-content;

  margin-bottom: 18px;

  padding: 6px 10px;

  border: 1px solid rgba(7, 140, 255, 0.8);
  border-radius: 5px;

  color: #39aaff;

  background: rgba(0, 126, 255, 0.06);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.process-hero h1 {
  position: relative;
  z-index: 2;

  max-width: 330px;

  margin-bottom: 16px;

  color: #f5f5f5;

  font-size: 34px;
  line-height: 1.02;

  letter-spacing: -1.4px;

  font-weight: 800;

  text-transform: uppercase;
}

.process-hero h1 span {
  display: block;

  margin-top: 3px;

  color: #078cff;

  text-shadow: 0 0 18px rgba(0, 140, 255, 0.25);
}

.process-hero > p {
  position: relative;
  z-index: 2;

  max-width: 300px;

  margin-bottom: 23px;

  color: #aeb1b6;

  font-size: 12px;
  line-height: 1.55;
}

.process-hero__button {
  position: relative;
  z-index: 2;

  width: fit-content;
  min-width: 225px;
  height: 44px;
  margin: 0 auto;
  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border: 1px solid #19baff;
  border-radius: 7px;

  color: #fff;

  background: linear-gradient(105deg, #087bdc, #0756cf 50%, #073da9);

  box-shadow:
    0 0 18px rgba(0, 151, 255, 0.22),
    inset 0 0 13px rgba(0, 196, 255, 0.1);

  font-size: 13px;
  font-weight: 700;
}

.process-hero__button svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.process-hero__button svg {
  width: 18px;
  height: 18px;
}

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

.process-hero__visual {
  position: relative;

  width: 100%;
  height: 155px;

  margin-top: 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  border: 1px solid rgba(0, 140, 255, 0.16);
  border-radius: 12px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(0, 126, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(135deg, #070a0e, #030507);

  box-shadow: inset 0 0 30px rgba(0, 126, 255, 0.04);
}

.process-hero__visual::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: linear-gradient(90deg, transparent, #078cff, transparent);

  box-shadow: 0 0 14px #078cff;
}

.visual-code {
  width: 78px;
  height: 78px;

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

  border: 1px solid rgba(0, 150, 255, 0.45);
  border-radius: 12px;

  background: linear-gradient(
    145deg,
    rgba(0, 126, 255, 0.14),
    rgba(0, 60, 150, 0.04)
  );

  box-shadow: 0 0 24px rgba(0, 126, 255, 0.12);
}

.visual-code svg {
  width: 39px;
  height: 39px;

  color: #078cff;
}

.visual-text {
  display: flex;
  flex-direction: column;

  color: #26a8ff;

  font-size: 17px;
  line-height: 1.4;

  font-style: italic;

  transform: rotate(-4deg);
}

/* =========================================
   INTRO PROCESO
========================================= */

.process-intro {
  padding: 38px 20px 27px;
}

.process-intro__eyebrow {
  display: block;

  margin-bottom: 9px;

  color: #078cff;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.process-intro h2 {
  max-width: 320px;

  margin-bottom: 12px;

  color: #f5f5f5;

  font-size: 25px;
  line-height: 1.08;

  letter-spacing: -0.7px;

  font-weight: 800;

  text-transform: uppercase;
}

.process-intro h2 span {
  display: block;

  color: #078cff;
}

.process-intro p {
  max-width: 325px;

  color: #a7a9ae;

  font-size: 11px;
  line-height: 1.55;
}

/* =========================================
   CONTENEDOR DE PASOS
========================================= */

.process-steps {
  position: relative;

  padding: 5px 20px 40px 57px;
}

.process-line {
  position: absolute;

  top: 30px;
  bottom: 65px;
  left: 35px;

  width: 1px;

  background: linear-gradient(180deg, #078cff, #16c7ff, #078cff);

  box-shadow: 0 0 9px rgba(0, 140, 255, 0.5);
}

/* =========================================
   PASO
========================================= */

.process-step {
  position: relative;

  margin-bottom: 18px;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* NÚMERO */

.process-step__number {
  position: absolute;

  left: -48px;
  top: 20px;

  z-index: 3;

  width: 52px;
  height: 52px;

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

  border: 1px solid #19baff;
  border-radius: 50%;

  color: #fff;

  background: radial-gradient(circle, #0756a8 0%, #03172c 58%, #02070d 100%);

  box-shadow: 0 0 14px rgba(0, 151, 255, 0.45);

  font-size: 17px;
  font-weight: 800;
}

/* TARJETA */

.process-step__card {
  position: relative;

  min-height: 200px;

  padding: 21px 17px 18px;

  border: 1px solid rgba(0, 140, 255, 0.22);
  border-radius: 11px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 126, 255, 0.08),
      transparent 45%
    ),
    linear-gradient(125deg, #090c10, #05070a);

  box-shadow: inset 0 0 25px rgba(0, 126, 255, 0.025);
}

.process-step__card::after {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 70px;
  height: 1px;

  background: linear-gradient(90deg, #078cff, transparent);
}

/* ICONO */

.process-step__icon {
  width: 45px;
  height: 45px;

  margin-bottom: 13px;

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

  border: 1px solid rgba(0, 150, 255, 0.45);
  border-radius: 50%;

  background: rgba(0, 126, 255, 0.09);

  box-shadow: 0 0 14px rgba(0, 126, 255, 0.1);
}

.process-step__icon svg {
  width: 23px;
  height: 23px;

  color: #18aaff;
}

/* LABEL */

.process-step__label {
  display: block;

  margin-bottom: 5px;

  color: #078cff;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

/* TÍTULO */

.process-step__card h3 {
  margin-bottom: 9px;

  color: #f5f5f5;

  font-size: 17px;
  line-height: 1.15;

  font-weight: 700;
}

/* DESCRIPCIÓN */

.process-step__card > p {
  margin-bottom: 14px;

  color: #a7a9ae;

  font-size: 10px;
  line-height: 1.5;
}

/* =========================================
   EJEMPLO
========================================= */

.process-step__example {
  padding: 11px 12px;

  border: 1px solid rgba(0, 140, 255, 0.16);
  border-radius: 7px;

  color: #c9d2dc;

  background: linear-gradient(
    110deg,
    rgba(0, 126, 255, 0.09),
    rgba(0, 126, 255, 0.025)
  );

  font-size: 9px;
  line-height: 1.4;

  font-style: italic;
}

/* =========================================
   LISTAS
========================================= */

.process-step__list {
  display: flex;
  flex-direction: column;
  gap: 7px;

  list-style: none;
}

.process-step__list li {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #c6c9cd;

  font-size: 9px;
}

.process-step__list li svg {
  width: 15px;
  height: 15px;

  padding: 2px;

  flex-shrink: 0;

  border: 1px solid rgba(0, 160, 255, 0.55);
  border-radius: 50%;

  color: #20c1ff;
}

/* =========================================
   MÁS QUE DESARROLLO
========================================= */

.process-support {
  margin: 5px 20px 40px;

  padding: 22px 18px;

  text-align: center;

  border: 1px solid rgba(0, 140, 255, 0.35);
  border-radius: 11px;

  background:
    radial-gradient(circle at 50% 0%, rgba(0, 126, 255, 0.12), transparent 65%),
    linear-gradient(120deg, #080b0f, #040608);

  box-shadow: 0 0 22px rgba(0, 126, 255, 0.06);
}

.process-support__icon {
  width: 43px;
  height: 43px;

  margin: 0 auto 11px;

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

  border: 1px solid rgba(0, 150, 255, 0.45);
  border-radius: 50%;

  background: rgba(0, 126, 255, 0.08);
}

.process-support__icon svg {
  width: 21px;
  height: 21px;

  color: #19baff;
}

.process-support > span {
  display: block;

  margin-bottom: 7px;

  color: #159eff;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.process-support h2 {
  margin-bottom: 8px;

  font-size: 17px;
  line-height: 1.2;
}

.process-support p {
  max-width: 300px;

  margin: 0 auto;

  color: #a7a9ae;

  font-size: 10px;
  line-height: 1.5;
}

/* =========================================
   CTA FINAL
========================================= */

.process-final {
  padding: 18px 20px 42px;

  text-align: center;
}

.process-final h2 {
  margin-bottom: 15px;

  color: #f5f5f5;

  font-size: 29px;
  line-height: 1.05;

  letter-spacing: -1px;

  font-weight: 800;

  text-transform: uppercase;
}

.process-final h2 span {
  display: block;

  margin-top: 4px;

  color: #078cff;

  text-shadow: 0 0 18px rgba(0, 140, 255, 0.22);
}

.process-final p {
  max-width: 315px;

  margin: 0 auto 21px;

  color: #a7a9ae;

  font-size: 11px;
  line-height: 1.55;
}

.process-final__button {
  width: fit-content;
  min-width: 225px;
  height: 44px;

  margin: 0 auto;
  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  border: 1px solid #19baff;
  border-radius: 7px;

  color: #fff;

  background: linear-gradient(105deg, #087bdc, #0756cf 50%, #073da9);

  box-shadow: 0 0 18px rgba(0, 151, 255, 0.22);

  font-size: 13px;
  font-weight: 700;
}

.process-final__button svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* =========================================
   WHATSAPP
========================================= */

.process-contact {
  margin: 0 20px 44px;

  padding: 20px 16px;

  display: grid;

  grid-template-columns: 44px 1fr;
  gap: 5px 12px;

  border: 1px solid rgba(0, 140, 255, 0.2);
  border-radius: 11px;

  background: linear-gradient(120deg, #080b0f, #050709);
}

.process-contact__icon {
  width: 44px;
  height: 44px;

  grid-row: 1;

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

  border-radius: 50%;

  color: #19baff;

  background: rgba(0, 126, 255, 0.09);
}

.process-contact__icon svg {
  width: 22px;
  height: 22px;
}

.process-contact h3 {
  margin-bottom: 4px;

  font-size: 15px;
}

.process-contact p {
  color: #9da1a7;

  font-size: 9px;
  line-height: 1.45;
}

.process-contact__button {
  grid-column: 1 / -1;

  width: 100%;
  height: 44px;

  margin-top: 11px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border: 1px solid #00bfff;
  border-radius: 8px;

  color: #fff;

  background: linear-gradient(
    100deg,
    rgba(0, 126, 255, 0.12),
    rgba(0, 126, 255, 0.03)
  );

  box-shadow: 0 0 14px rgba(0, 151, 255, 0.1);

  font-size: 11px;
  font-weight: 700;
}

.process-contact__button img {
  width: 22px;
  height: 22px;

  object-fit: contain;

  filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.45));
}

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

.footer {
  margin-top: 0;

  padding: 34px 20px 18px;

  background: linear-gradient(180deg, #05070a 0%, #020304 100%);

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

  text-align: center;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 22px;

  text-align: center;
}

.footer__brand {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  margin-bottom: 10px;

  display: flex;
  align-items: center;

  gap: 0;
}

.footer__symbol {
  width: 53px;
  height: 53px;

  object-fit: contain;

  mix-blend-mode: screen;
}

.footer__name {
  width: 100px;
  height: auto;

  margin-left: -7px;

  object-fit: contain;

  mix-blend-mode: screen;
}

.footer__brand p {
  max-width: 260px;

  color: #8f949c;

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

  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px 20px;
}

.footer__nav a {
  color: #aeb1b6;

  font-size: 11px;
  font-weight: 500;
}

.footer__social {
  width: 100%;

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

  gap: 15px;
}

.footer__social .social {
  width: 52px;
  height: 52px;

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

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;

  background: #080b0f;
}

.footer__social .social img {
  width: 35px;
  height: 35px;

  display: block;

  object-fit: contain;
}

.social--whatsapp {
  box-shadow: 0 0 13px rgba(37, 211, 102, 0.18);
}

.social--whatsapp img {
  filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.65));
}

.social--instagram {
  box-shadow: 0 0 13px rgba(225, 48, 108, 0.18);
}

.social--instagram img {
  filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.6));
}

.social--gmail {
  box-shadow: 0 0 13px rgba(234, 67, 53, 0.18);
}

.social--gmail img {
  filter: drop-shadow(0 0 5px rgba(234, 67, 53, 0.6));
}

.footer__bottom {
  width: 100%;

  margin-top: 26px;
  padding-top: 16px;

  display: flex;
  justify-content: center;

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

.footer__bottom p {
  margin: 0;

  color: #686d75;

  font-size: 9px;
  line-height: 1.4;

  text-align: center;
}

/* =========================================
   MOBILE MUY CHICO
========================================= */

@media (max-width: 370px) {
  .process-hero h1 {
    font-size: 30px;
  }

  .process-intro h2 {
    font-size: 22px;
  }

  .process-final h2 {
    font-size: 25px;
  }

  .process-steps {
    padding-left: 53px;
    padding-right: 15px;
  }

  .process-line {
    left: 31px;
  }

  .process-step__number {
    left: -45px;

    width: 48px;
    height: 48px;

    font-size: 15px;
  }

  .process-step__card {
    padding-left: 15px;
    padding-right: 15px;
  }
}
