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

.vth-footer {
  position: relative;
  z-index: 20;

  width: 100%;
  margin-top: 42px;
  padding: 0 18px 24px;

  background: transparent;
  border: 0;
}

.vth-footer-inner {
  position: relative;
  overflow: hidden;

  width: min(94vw, 1450px);
  margin: 0 auto;
  padding: 18px 18px 14px;

  border: 1px solid rgba(185, 124, 255, 0.28);
  border-radius: 20px;

  background:
    radial-gradient(circle at 10% 0%, rgba(205, 166, 255, 0.10), transparent 30%),
    radial-gradient(circle at 92% 100%, rgba(125, 44, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(18, 12, 28, 0.94), rgba(5, 4, 9, 0.98));

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.46),
    0 0 24px rgba(125, 44, 255, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vth-footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;

  height: 2px;
  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(125, 44, 255, 0.72),
      rgba(218, 184, 255, 0.92),
      rgba(255, 211, 106, 0.34),
      rgba(218, 184, 255, 0.92),
      rgba(125, 44, 255, 0.72),
      transparent
    );

  box-shadow:
    0 0 10px rgba(196, 141, 255, 0.28),
    0 0 20px rgba(125, 44, 255, 0.16);

  pointer-events: none;
}

.vth-footer-top,
.vth-footer-payments,
.vth-footer-bottom {
  position: relative;
  z-index: 2;
}


/* =========================
   BLOQUES
   ========================= */

.vth-footer-top {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 12px;
  align-items: stretch;
}

.vth-footer-brand,
.vth-footer-box {
  padding: 14px 16px;

  border: 1px solid rgba(190, 132, 255, 0.14);
  border-radius: 16px;

  background:
    linear-gradient(180deg, rgba(24, 13, 38, 0.48), rgba(8, 4, 16, 0.34));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* =========================
   TEXTOS
   ========================= */

.vth-footer-title {
  margin-bottom: 8px;

  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  text-shadow:
    0 0 10px rgba(218, 184, 255, 0.24),
    0 0 18px rgba(125, 44, 255, 0.16);
}

.vth-footer-box-title {
  margin-bottom: 8px;

  color: #e2ccff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vth-footer-text,
.vth-footer-box p {
  margin: 0;

  color: rgba(244, 234, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}


/* =========================
   PAGOS
   ========================= */

.vth-footer-payments {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

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

  border: 1px solid rgba(190, 132, 255, 0.14);
  border-radius: 14px;

  background:
    linear-gradient(180deg, rgba(15, 7, 26, 0.54), rgba(6, 3, 12, 0.46));
}

.vth-footer-payments-title {
  color: #d8c2f5;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vth-we-accept {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.vth-we-accept li {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 28px;
  min-width: 42px;
  padding: 4px 8px;

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

  background: rgba(10, 5, 18, 0.50);
}

.vth-we-accept img {
  display: block;

  max-width: 36px;
  max-height: 15px;

  object-fit: contain;
  opacity: 0.92;
}


/* =========================
   COPYRIGHT
   ========================= */

.vth-footer-bottom {
  display: flex;
  justify-content: center;

  margin-top: 12px;
  padding-top: 12px;

  border-top: 1px solid rgba(190, 132, 255, 0.12);
}

.vth-footer-copyright {
  margin: 0;

  color: rgba(244, 234, 255, 0.60);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}


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

@media (max-width: 900px) {
  .vth-footer {
    margin-top: 32px;
    padding: 0 10px 20px;
  }

  .vth-footer-inner {
    width: 100%;
    max-width: 390px;
    padding: 14px 14px 12px;

    border-radius: 18px;
  }

  .vth-footer-top {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vth-footer-brand,
  .vth-footer-box {
    padding: 12px 13px;
    border-radius: 14px;
  }

  .vth-footer-title,
  .vth-footer-box-title,
  .vth-footer-text,
  .vth-footer-box p {
    text-align: center;
  }

  .vth-footer-payments {
    flex-direction: column;
    justify-content: center;
    gap: 10px;

    padding: 12px;
  }

  .vth-footer-payments-title {
    text-align: center;
  }

  .vth-we-accept {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .vth-footer {
    padding-left: 8px;
    padding-right: 8px;
  }

  .vth-footer-inner {
    max-width: 360px;
    padding: 12px;
  }

  .vth-footer-title {
    font-size: 13px;
  }

  .vth-footer-text,
  .vth-footer-box p {
    font-size: 10px;
  }

  .vth-we-accept li {
    min-width: 40px;
    height: 26px;
  }

  .vth-we-accept img {
    max-width: 34px;
    max-height: 14px;
  }
}