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

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

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

body {
  min-height: 100vh;
  overflow-x: hidden;

  color: #f5f5f5;

  background: #020304;
}

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

button {
  font-family: inherit;
}

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

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

  height: 82px;
  padding: 0 18px;

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

  background: #020304;

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

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

/* LOGO */

.service-logo {
  justify-self: center;

  height: 65px;

  display: flex;
  align-items: center;
}

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

  object-fit: contain;
}

.service-logo__name {
  width: 104px;

  margin-left: -7px;

  object-fit: contain;
}

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

.menu {
  justify-self: end;

  width: 38px;
  height: 38px;

  padding: 7px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: 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);
}

/* =========================================
   MOBILE MENU
========================================= */

.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
========================================= */

.web-hero {
  position: relative;

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

  padding: 34px 20px 25px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 36%,
      rgba(0, 126, 255, 0.16),
      transparent 42%
    ),
    linear-gradient(180deg, #02070d 0%, #020304 100%);
}

.web-hero__content {
  position: relative;
  z-index: 3;

  width: 57%;
  max-width: 230px;
}

/* BADGE */

.web-hero__badge {
  width: max-content;
  height: 31px;

  margin-bottom: 19px;
  padding: 0 11px;

  display: flex;
  align-items: center;

  gap: 7px;

  border: 1px solid rgba(0, 150, 255, 0.55);

  border-radius: 18px;

  color: #49b8ff;

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

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

  letter-spacing: 0.3px;
}

.web-hero__badge svg {
  width: 15px;
  height: 15px;

  color: #19baff;
}

/* TÍTULO */

.web-hero h1 {
  width: 225px;

  margin-bottom: 14px;

  color: #f5f5f5;

  font-size: 24px;
  line-height: 1.06;

  letter-spacing: -0.8px;

  font-weight: 800;
}

.web-hero h1 span {
  display: block;

  color: #078cff;

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

/* DESCRIPCIÓN */

.web-hero__description {
  width: 215px;

  margin-bottom: 18px;

  color: #adb2b9;

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

/* BOTÓN */

.web-hero__button {
  width: fit-content;
  min-width: 205px;
  height: 44px;

  padding: 0 16px;

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

  gap: 16px;

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

  color: #fff;

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

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

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

.web-hero__button svg {
  width: 17px;
  height: 17px;
}

/* =========================================
   MOCKUP
========================================= */

.web-hero__mockup {
  position: absolute;

  z-index: 1;

  top: 0;
  left: 0;
  right: 0;

  width: 100%;
  height: 350px;

  margin: 0;

  pointer-events: none;
}

.web-hero__mockup::after {
  content: "";

  position: absolute;

  z-index: 2;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(2, 7, 13, 0.99) 0%,
    rgba(2, 7, 13, 0.94) 20%,
    rgba(2, 7, 13, 0.72) 38%,
    rgba(2, 7, 13, 0.32) 54%,
    rgba(2, 7, 13, 0.08) 70%,
    transparent 82%
  );
}

.web-hero__mockup img {
  position: absolute;

  z-index: 1;

  top: 0;
  right: -35px;

  width: 105%;
  height: 100%;

  display: block;

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

  filter: blur(1px) brightness(0.68);

  opacity: 0.9;
}
/* =========================================
   BENEFICIOS
========================================= */

.web-hero__benefits {
  position: absolute;

  z-index: 4;

  left: 20px;
  right: 20px;
  bottom: 24px;

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

  align-items: center;

  gap: 0;
}

.web-benefit {
  min-width: 0;

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

  gap: 6px;
}

.web-benefit svg {
  width: 19px;
  height: 19px;

  flex-shrink: 0;

  color: #00a8ff;
}

.web-benefit span {
  color: #c0c4c9;

  font-size: 7px;
  line-height: 1.3;

  font-weight: 500;

  text-align: left;
}

/* =========================================
   MÓVILES PEQUEÑOS
========================================= */

@media (max-width: 370px) {
  .web-hero {
    padding-left: 17px;
    padding-right: 17px;
  }

  .web-hero h1 {
    font-size: 27px;
  }

  .web-hero__description {
    font-size: 10px;
  }

  .web-benefit {
    gap: 5px;
  }

  .web-benefit svg {
    width: 18px;
    height: 18px;
  }

  .web-benefit span {
    font-size: 7px;
  }
}
/* =========================================
   QUÉ PODEMOS DESARROLLAR
========================================= */

.web-options {
  position: relative;

  width: 100%;

  padding: 38px 20px 32px;

  background:
    radial-gradient(circle at 0% 45%, rgba(0, 126, 255, 0.07), transparent 38%),
    #020304;

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

/* ENCABEZADO */

.web-options__header {
  margin-bottom: 22px;

  text-align: center;
}

.web-options__eyebrow {
  display: block;

  margin-bottom: 9px;

  color: #168cff;

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

  letter-spacing: 1.4px;
}

.web-options__header h2 {
  margin: 0 auto 11px;

  color: #f5f5f5;

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

  letter-spacing: -0.5px;

  font-weight: 800;
}

.web-options__header h2 span {
  color: #078cff;
}

.web-options__header p {
  max-width: 310px;

  margin: 0 auto;

  color: #91969d;

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

/* OPCIONES */

.web-options__grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 8px;
}

.web-option {
  min-height: 68px;

  padding: 11px;

  display: flex;
  align-items: center;

  gap: 9px;

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

  border-radius: 8px;

  background: linear-gradient(125deg, #090c10, #050709);
}

.web-option__icon {
  width: 35px;
  min-width: 35px;
  height: 35px;

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

  border: 1px solid rgba(0, 145, 255, 0.28);

  border-radius: 7px;

  color: #00a8ff;

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

.web-option__icon svg {
  width: 19px;
  height: 19px;
}

.web-option > span {
  min-width: 0;

  color: #e7e9eb;

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

  font-weight: 600;
}

/* MENSAJE FINAL */

.web-options__note {
  width: 100%;

  margin-top: 14px;
  padding: 13px 14px;

  display: flex;
  align-items: center;

  gap: 10px;

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

  border-radius: 8px;

  background: linear-gradient(
    110deg,
    rgba(0, 126, 255, 0.07),
    rgba(255, 255, 255, 0.015)
  );
}

.web-options__note > svg {
  width: 21px;
  height: 21px;

  flex-shrink: 0;

  color: #078cff;
}

.web-options__note p {
  margin: 0;

  color: #969ba2;

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

.web-options__note strong {
  color: #e9eaec;
}
/* =========================================
   PRECIO
========================================= */

.web-price {
  position: relative;

  width: 100%;

  padding: 38px 20px 36px;

  background:
    radial-gradient(
      circle at 100% 40%,
      rgba(0, 126, 255, 0.08),
      transparent 38%
    ),
    #020304;

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

/* ENCABEZADO */

.web-price__header {
  margin-bottom: 21px;

  text-align: center;
}

.web-price__eyebrow {
  display: block;

  margin-bottom: 8px;

  color: #168cff;

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

  letter-spacing: 1.4px;
}

.web-price__header h2 {
  margin-bottom: 10px;

  color: #f5f5f5;

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

  letter-spacing: -0.5px;

  font-weight: 800;
}

.web-price__header h2 span {
  color: #078cff;
}

.web-price__header p {
  max-width: 310px;

  margin: 0 auto;

  color: #91969d;

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

/* =========================================
   TARJETA
========================================= */

.price-card {
  position: relative;

  width: 100%;
  max-width: 360px;

  margin: 0 auto;
  padding: 18px;

  overflow: hidden;

  border: 1px solid rgba(0, 145, 255, 0.32);
  border-radius: 11px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 126, 255, 0.11),
      transparent 45%
    ),
    linear-gradient(135deg, #090c10, #050709);

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

/* CABECERA DE TARJETA */

.price-card__top {
  width: 100%;

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

  gap: 8px;

  text-align: center;
}

.price-card__icon {
  width: 39px;
  min-width: 39px;
  height: 39px;

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

  border: 1px solid rgba(0, 145, 255, 0.35);
  border-radius: 8px;

  color: #00a8ff;

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

.price-card__icon svg {
  width: 21px;
  height: 21px;
}

.price-card__label {
  display: block;

  margin-bottom: 3px;

  color: #f4f5f6;

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

  letter-spacing: 0.3px;

  text-align: center;
}

.price-card__top p {
  margin: 0;

  color: #7f858d;

  font-size: 8px;

  text-align: center;
}

/* PRECIO */

.price-card__price {
  position: relative;

  width: fit-content;

  margin: 25px auto 4px;

  padding: 12px 24px 14px;

  text-align: center;

  border-radius: 10px;

  background: radial-gradient(
    circle at 50% 100%,
    rgba(0, 140, 255, 0.12),
    transparent 70%
  );
}

.price-card__from {
  display: block;

  margin-bottom: 5px;

  color: #8f969e;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.3px;
}

.price-card__price > div {
  display: flex;
  align-items: baseline;
  justify-content: center;

  gap: 8px;
}

.price-card__currency {
  color: #19aaff;

  font-size: 40px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: -0.5px;

  text-shadow: 0 0 12px rgba(0, 153, 255, 0.45);
}

.price-card__price strong {
  display: inline-block;

  color: #ffffff;

  font-family: "Oswald", sans-serif;

  font-size: 66px;
  line-height: 0.88;

  font-weight: 700;

  letter-spacing: -2px;

  transform: skewX(-7deg);

  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(0, 140, 255, 0.1);
}
.price-card__price > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  gap: 11px;
}
.price-card__price::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 90px;
  height: 1px;

  transform: translateX(-50%);

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

  box-shadow: 0 0 8px rgba(0, 140, 255, 0.55);
}

/* SEPARADOR */

.price-card__divider {
  width: 100%;
  height: 1px;

  margin: 18px 0;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 140, 255, 0.32),
    transparent
  );
}

/* CARACTERÍSTICAS */

.price-card__features {
  display: grid;

  gap: 10px;

  margin-bottom: 18px;
}

.price-card__features > div {
  display: flex;
  align-items: center;

  gap: 8px;
}

.price-card__features svg {
  width: 15px;
  height: 15px;

  flex-shrink: 0;

  color: #078cff;
}

.price-card__features span {
  color: #c3c6ca;

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

/* BOTÓN */

.price-card__button {
  width: 100%;
  height: 44px;

  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: 12px;
  font-weight: 700;
}

.price-card__button svg {
  width: 16px;
  height: 16px;
}

/* ACLARACIÓN */

.price-card__note {
  max-width: 240px;

  margin: 11px auto 0;

  color: #656b73;

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

  text-align: center;
}
/* =========================================
   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;
}

/* LOGO */

.footer__brand {
  width: 100%;

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

.footer__logo {
  display: flex;
  align-items: center;

  gap: 0;

  margin-bottom: 10px;
}

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

/* NAVEGACIÓN */

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

  gap: 10px 20px;
}

.footer__nav a {
  color: #aeb1b6;

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

  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #078cff;
}

/* REDES */

.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-radius: 11px;

  background: #080b0f;

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

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

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

  object-fit: contain;
  display: block;

  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

/* WHATSAPP */

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

/* INSTAGRAM */

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

/* GMAIL */

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

/* HOVER */

.footer__social .social:hover {
  transform: translateY(-3px);
}

.footer__social .social:hover img {
  transform: scale(1.1);
}

/* COPYRIGHT */

.footer__bottom {
  width: 100%;

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

  display: flex;
  align-items: center;
  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;

  font-weight: 400;

  text-align: center;
}
