* {
  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% 25%,
      rgba(0, 126, 255, 0.09),
      transparent 35%
    ),
    #020304;
}

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

button,
textarea {
  font-family: inherit;
}

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

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

  transition: 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  color: white;
}

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

.back-button:hover {
  border-color: #078cff;
  color: #078cff;
}

.need-logo {
  justify-self: center;

  display: flex;
  align-items: center;

  height: 65px;
}

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

  object-fit: contain;
}

.need-logo__name {
  width: 104px;

  object-fit: contain;

  margin-left: -7px;
}

/* =========================
   CONTENIDO
========================= */

.need-main {
  width: 100%;

  padding: 46px 20px 40px;
}

.need-content {
  width: 100%;
  max-width: 520px;

  margin: 0 auto;
}

/* BADGE */

.need-badge {
  width: max-content;

  margin: 0 auto 19px;

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

/* TITULO */

.need-content h1 {
  margin-bottom: 15px;

  text-align: center;

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

  letter-spacing: -1px;

  font-weight: 800;
}

.need-content h1 span {
  display: block;

  color: #078cff;
}

/* DESCRIPCION */

.need-description {
  max-width: 360px;

  margin: 0 auto 34px;

  text-align: center;

  color: #aeb1b6;

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

/* =========================
   FORMULARIO
========================= */

.need-form {
  width: 100%;
}

.need-form label {
  display: block;

  margin-bottom: 10px;

  color: #e8e9eb;

  font-size: 12px;
  font-weight: 600;
}

/* TEXTAREA */

.textarea-wrapper {
  position: relative;

  width: 100%;

  margin-bottom: 14px;
}

.textarea-wrapper textarea {
  width: 100%;
  height: 155px;

  resize: none;

  padding: 16px 15px 34px;

  outline: none;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;

  color: #f5f5f5;

  background: linear-gradient(120deg, #090b0e, #060709);

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

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

.textarea-wrapper textarea::placeholder {
  color: #62676e;
}

.textarea-wrapper textarea:focus {
  border-color: #078cff;

  box-shadow:
    0 0 0 2px rgba(7, 140, 255, 0.08),
    0 0 20px rgba(0, 126, 255, 0.08);
}

/* CONTADOR */

.character-count {
  position: absolute;

  right: 12px;
  bottom: 10px;

  color: #62676e;

  font-size: 9px;
}

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

.whatsapp-button {
  width: 100%;
  height: 50px;

  padding: 0 16px;

  display: flex;
  align-items: center;

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

  color: #fff;

  cursor: pointer;

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

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

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

.whatsapp-button__icon {
  width: 30px;
  height: 30px;

  object-fit: contain;

  margin-right: 10px;

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

.whatsapp-button span {
  flex: 1;

  text-align: center;

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

.whatsapp-button .button-arrow {
  width: 20px;
  height: 20px;
}

.whatsapp-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 0 25px rgba(0, 151, 255, 0.38);
}

/* =========================
   NOTA
========================= */

.need-note {
  margin-top: 24px;

  padding: 13px 14px;

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

  gap: 9px;

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

  background: rgba(255, 255, 255, 0.02);
}

.need-note svg {
  width: 17px;
  height: 17px;

  flex-shrink: 0;

  color: #078cff;
}

.need-note p {
  color: #8f949c;

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

.need-note strong {
  color: #c7c9cc;
}
/* ===================================
   FOOTER
=================================== */

.footer {
  margin-top: 20px;

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

/* PARTE SUPERIOR */

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

  gap: 22px;

  text-align: center;
}

/* ===================================
   LOGO
=================================== */

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

  width: 100%;
}

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

  gap: 0;

  margin-bottom: 10px;
}

.footer__symbol {
  width: 53px;
  height: 53px;
  mix-blend-mode: screen;
  object-fit: contain;
}

.footer__name {
  width: 100px;
  height: auto;
  mix-blend-mode: screen;
  object-fit: contain;

  margin-left: -7px;
}

.footer__brand p {
  max-width: 260px;

  color: #8f949c;

  font-size: 12px;
  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: 14px;
  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;
}
.footer__bottom {
  width: 100%;

  margin-top: 26px;

  padding-top: 16px;

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

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

.footer__bottom p {
  margin: 0;

  color: #686d75;

  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;

  text-align: center;
}

/* WHATSAPP */

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

.social--whatsapp:hover {
  border-color: #25d366;

  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
}

.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:hover {
  border-color: #e1306c;

  box-shadow: 0 0 20px rgba(225, 48, 108, 0.45);
}

.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:hover {
  border-color: #ea4335;

  box-shadow: 0 0 20px rgba(234, 67, 53, 0.45);
}

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

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

.footer__social .social:hover img {
  transform: scale(1.1);
}
/* ===================================
   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);
}
