/* ===================================
   GENERAL
=================================== */

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

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

body {
  min-height: 100vh;

  color: #f5f5f5;

  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(0, 126, 255, 0.08),
      transparent 27%
    ),
    #020304;
}

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

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

.solutions-header {
  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.95);
}

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

.solutions-logo {
  justify-self: center;

  height: 65px;

  display: flex;
  align-items: center;
}

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

  object-fit: contain;
}

.solutions-logo__name {
  width: 104px;

  margin-left: -7px;

  object-fit: contain;
}

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

.solutions-intro {
  padding: 44px 20px 32px;

  text-align: center;
}

.solutions-badge {
  width: max-content;

  margin: 0 auto 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.5px;
}

.solutions-intro h1 {
  max-width: 350px;

  margin: 0 auto 14px;

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

  letter-spacing: -1px;

  font-weight: 800;
}

.solutions-intro h1 span {
  display: block;

  color: #078cff;
}

.solutions-intro p {
  max-width: 360px;

  margin: 0 auto;

  color: #9ea2a8;

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

/* ===================================
   PRODUCTOS
=================================== */

.products-list {
  padding: 0 20px 36px;

  display: flex;
  flex-direction: column;

  gap: 14px;
}

.product {
  position: relative;

  overflow: hidden;

  padding: 20px 17px;

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

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

.product::before {
  content: "";

  position: absolute;

  top: 0;
  left: 18px;
  right: 18px;

  height: 1px;

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

/* CABECERA PRODUCTO */

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

  gap: 12px;

  margin-bottom: 17px;
}

.product__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;

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

  border: 1px solid rgba(0, 140, 255, 0.28);
  border-radius: 9px;

  color: #078cff;

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

  box-shadow: 0 0 16px rgba(0, 126, 255, 0.08);
}

.product__icon svg {
  width: 27px;
  height: 27px;

  stroke-width: 1.8;
}

.product__type {
  display: block;

  margin-bottom: 4px;

  color: #078cff;

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

  letter-spacing: 0.7px;
}

.product__title h2 {
  font-size: 19px;
  line-height: 1.1;

  font-weight: 750;
}

/* DESCRIPCIÓN */

.product__description {
  margin-bottom: 18px;

  color: #a7a9ae;

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

/* CARACTERÍSTICAS */

.product__features {
  margin-bottom: 20px;

  display: flex;
  flex-direction: column;

  gap: 9px;
}

.product__features div {
  display: flex;
  align-items: center;

  gap: 8px;

  color: #c3c5c8;

  font-size: 10px;
}

.product__features svg {
  width: 14px;
  height: 14px;

  color: #078cff;

  stroke-width: 2.5;
}

/* BOTÓN */

.product__button {
  width: 100%;
  height: 43px;

  padding: 0 14px;

  display: flex;
  align-items: center;

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

  color: #f5f5f5;

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

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

.product__button span {
  flex: 1;

  text-align: center;

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

.product__button svg {
  width: 16px;
  height: 16px;

  color: #078cff;
}

.product__button:hover {
  border-color: #078cff;

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

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

/* ===================================
   SOLUCIÓN PERSONALIZADA
=================================== */

.custom-solution {
  margin: 0 20px 42px;

  padding: 27px 18px;

  text-align: center;

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

  background:
    radial-gradient(circle at 50% 0%, rgba(0, 126, 255, 0.09), transparent 50%),
    #06080a;
}

.custom-solution__icon {
  width: 44px;
  height: 44px;

  margin: 0 auto 15px;

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

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

  color: #078cff;

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

.custom-solution__icon svg {
  width: 22px;
  height: 22px;
}

.custom-solution h2 {
  margin-bottom: 10px;

  font-size: 19px;
  line-height: 1.15;
}

.custom-solution h2 span {
  color: #078cff;
}

.custom-solution p {
  max-width: 330px;

  margin: 0 auto 20px;

  color: #999da3;

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

.custom-solution__button {
  width: 100%;
  height: 47px;

  padding: 0 14px;

  display: flex;
  align-items: center;

  border: 1px solid #139cff;
  border-radius: 8px;

  color: #fff;

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

  box-shadow: 0 0 20px rgba(0, 151, 255, 0.18);
}

.custom-solution__button span {
  flex: 1;

  text-align: center;

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

.custom-solution__button svg {
  width: 17px;
  height: 17px;
}

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

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

.footer__brand {
  width: 100%;

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

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

  margin-bottom: 10px;
}

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

  object-fit: contain;

  mix-blend-mode: screen;
}

.footer__name {
  width: 100px;

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

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

  gap: 10px 20px;
}

.footer__nav a {
  color: #aeb1b6;

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

/* 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: 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--instagram {
  box-shadow: 0 0 13px rgba(225, 48, 108, 0.18);
}

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

/* 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;
}
/* BADGE PRODUCTO */

.product__badge {
  position: absolute;

  top: 13px;
  right: 13px;

  padding: 5px 8px;

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

  color: #42aaff;

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

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

  letter-spacing: 0.7px;

  box-shadow: 0 0 10px rgba(0, 126, 255, 0.08);
}
/* ===================================
   MENU HAMBURGUESA
=================================== */

.menu {
  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

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

  gap: 6px;

  cursor: pointer;
}

.menu span {
  width: 28px;
  height: 3px;

  background: #fff;

  border-radius: 50px;

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

/* ===================================
   MENU DESPLEGABLE
=================================== */

.mobile-menu {
  position: fixed;

  top: 82px;
  left: 0;

  z-index: 1000;

  width: 100%;

  padding: 22px 24px 28px;

  display: flex;
  flex-direction: column;

  gap: 0;

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

/* MENU ABIERTO */

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

  transform: translateY(0);
}

/* LINKS */

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

/* BOTON CONTANOS TU NECESIDAD */

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

/* ===================================
   ANIMACION HAMBURGUESA -> X
=================================== */

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

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

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