.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
/* ============================================================
   CTA FINAL — IMAGEN + OSCURECIDO + LUZ
============================================================ */

.footer-cta {
  position: relative;
   width: 100%;
  margin-left: 0;
  background: #050508;
  height: 520px;
   
  overflow: hidden;
}

/* IMAGEN */
.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: url("/images/footer.png") center / cover no-repeat;
  transform: scale(1.05);
}

/* OSCURECIDO GENERAL */
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 15, 0.65);
}

/* VIÑETA */
.footer-cta-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

/* LUZ CENTRAL */
.footer-cta-light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 280px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(125,95,255,0.25) 0%,
    rgba(125,95,255,0.15) 25%,
    rgba(0,0,0,0) 70%
  );
  filter: blur(60px);
  pointer-events: none;
}

/* CONTENIDO */
.footer-cta-content {
  position: relative;
  z-index: 5;
  height: 100%;
  max-width: 700px;
  margin: auto;
  padding: 0 22px;

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

  text-align: center;
  color: white;
}

.footer-cta-eyebrow {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #9f7bff;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-cta p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
}

.footer-cta-buttons {
  display: flex;
  gap: 14px;
}

.footer-cta-btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.footer-cta-btn.primary {
  background: #7d5fff;
  color: white;
   
}

.footer-cta-btn.primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.footer-cta-btn.outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
}

.footer-cta-btn.outline:hover {
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   PAGOS — BARRA CON SPOTLIGHT
============================================================ */

.payments-bar {
  position: relative;
  width: 100%;

  padding: 35px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #050508 0%, #000 100%);
   
  overflow: hidden;
}

.payments-spotlight {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.08) 0%,
    rgba(125,95,255,0.12) 25%,
    rgba(0,0,0,0) 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.payments-track {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.pay-logo {
  width: 70px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity .25s ease, filter .25s ease;
}

.pay-logo:hover img {
  opacity: 0.9;
  filter: grayscale(0%);
}

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

.site-footer {
  background: #050508;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.footer-main {
  padding: 90px 22px 60px;
  max-width: 1500px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 60px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 11px;
  max-width: 260px;
  line-height: 1.55;

  color: rgba(167, 167, 167, 0.55); /* clave */
  
  font-weight: 400;

  margin-top: 3px;
}

.footer-separator {
  width: 100%;
  max-width: 260px;   /* igual al texto */
  height: 1px;
  background: rgba(255, 255, 255, 0.062);
  margin: 20px 0 18px;
}

.footer-col h4,
.footer-help h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-col a:hover {
  color: #9f7bff;
}

.footer-help p {
  opacity: 0.7;
  margin-bottom: 20px;
}

.footer-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-btn.primary {
  background: #7d5fff;
  color: white;
}

.footer-btn.outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 22px;
  text-align: center;
  /* Ajuste solo para móviles */
 
    margin-top: -30px;      /* opcional, si tiene margin */
 
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.55;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 768px) {
  .footer-cta {
    height: 420px;
  }

  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .payments-track {
    gap: 26px;
  }
}

.footer-btn.primary {
  position: relative;
  overflow: hidden;
}

/* glow animado */
.footer-btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* pulso automático */
.footer-btn.primary {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(125,95,255,0);
  }
  50% {
    box-shadow: 0 0 18px rgba(125,95,255,0.45);
  }
  100% {
    box-shadow: 0 0 0 rgba(125,95,255,0);
  }
}

/* hover */
.footer-btn.primary:hover {
  transform: translateY(-2px);
}

.footer-btn.primary:hover::after {
  opacity: 0.25;
}
.footer-btn.outline {
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

/* línea animada sutil */
.footer-btn.outline::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: 8px;
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125,95,255,0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* hover */
.footer-btn.outline:hover {
  transform: translateY(-2px);
  border-color: rgba(125,95,255,0.8);
  color: #fff;
}

 







.footer-socials {
  display: flex;
  gap: 22px;        /* antes 14px */
  margin-top: 20px; /* antes 16px */
}

.footer-socials a {
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  color: #8b6cff;
   
  transform: translateY(-2px);
}
.footer-socials a {
  color: rgba(255,255,255,0.45);
  font-size: 20px;
  transition: all 0.25s ease;
}

/* COLORES SOLO EN HOVER */
.footer-socials a:hover .fa-instagram {
  color: #f345ab;
}

.footer-socials a:hover .fa-whatsapp {
  color: #3cc56e;
}

.footer-socials a:hover .fa-discord {
  color: #5865F2;
}

.footer-socials a:hover .fa-youtube {
  color: #FF0000;
}

.footer-socials a:hover .fa-envelope {
  color: #4e8ae4;
}

/* glow sutil */
.footer-socials a:hover {
 
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .footer-cta-bg {
    background-image: url("/images/footermobile.png");
    background-position: center top;
  }
}





@media (max-width: 768px) {

   

  .payments-track {
    padding: 0 12px;       /* menos padding lateral */ gap: 20px;
  }

  .pay-logo img {
    height: 20px;          /* iconos acordes */
  }

.payments-bar {
  position: relative;
  width: 100%;
 
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg, #050508 0%, #000 100%);
   
  overflow: hidden;
}
}
 