/* =========================================================
   FOOTER PREMIUM - STELLA TV
========================================================= */

.footer {
  position: relative;

  overflow: hidden;

  padding: 90px 0 28px;

  border-top:
    1px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(
      180deg,
      #06060b,
      #030308
    );
}

/* =========================================================
   LUCES DE FONDO
========================================================= */

.footer::before,
.footer::after {
  content: "";

  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(12px);
}

/* glow izquierda */

.footer::before {
  width: 360px;
  height: 360px;

  left: -120px;
  top: -80px;

  background:
    radial-gradient(
      circle,
      rgba(255,80,170,0.12),
      transparent 70%
    );
}

/* glow derecha */

.footer::after {
  width: 320px;
  height: 320px;

  right: -120px;
  bottom: -80px;

  background:
    radial-gradient(
      circle,
      rgba(255,138,0,0.10),
      transparent 70%
    );
}

/* =========================================================
   CONTENEDOR
========================================================= */

.footer .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   GRID
========================================================= */

.footer-grid {
  display: grid;

  grid-template-columns:
    1.6fr
    1fr
    1fr
    1.2fr;

  gap: 38px;
}

/* =========================================================
   LOGO
========================================================= */

.footer-brand img {
  width: 92px;

  border-radius: 22px;

  margin-bottom: 18px;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.footer-brand p {
  max-width: 340px;

  color: var(--muted);

  line-height: 1.9;
}

/* =========================================================
   TÍTULOS
========================================================= */

.footer h4 {
  margin-bottom: 18px;

  color: white;

  font-size: 1.08rem;
}

/* =========================================================
   LINKS
========================================================= */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  position: relative;

  display: inline-flex;
  align-items: center;

  width: fit-content;

  color: var(--muted);

  transition: 0.3s ease;
}

/* línea glow */

.footer-links a::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: -3px;

  width: 0;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--pink),
      var(--orange)
    );

  transition: 0.35s ease;
}

/* hover */

.footer-links a:hover {
  color: white;

  transform:
    translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* =========================================================
   CONTACTO
========================================================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--muted);

  transition: 0.3s ease;
}

.footer-contact a img {
  width: 18px;
  height: 18px;

  filter:
    brightness(0)
    invert(1);

  opacity: 0.9;
}

.footer-contact a:hover {
  color: white;

  transform:
    translateX(4px);
}

/* =========================================================
   MÉTODOS DE PAGO
========================================================= */

.footer-payments {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.payment-badge {
  min-width: 72px;
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 14px;

  border-radius: 14px;

  color: white;

  font-size: 0.82rem;
  font-weight: 900;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 24px rgba(0,0,0,0.24);

  transition: 0.3s ease;
}

.payment-badge:hover {
  transform:
    translateY(-4px)
    scale(1.04);

  background:
    linear-gradient(
      135deg,
      rgba(255,80,170,0.18),
      rgba(255,138,0,0.14)
    );
}

/* =========================================================
   SOPORTE CARD
========================================================= */

.footer-support {
  margin-top: 22px;

  padding: 18px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,80,170,0.12),
      rgba(255,138,0,0.08)
    );

  border:
    1px solid rgba(255,255,255,0.08);
}

.footer-support strong {
  display: block;

  margin-bottom: 8px;

  font-size: 1rem;
}

.footer-support p {
  color: var(--muted);

  margin-bottom: 14px;
}

/* botón soporte */

.footer-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 18px;

  border-radius: 16px;

  color: white;
  font-weight: 900;

  background:
    linear-gradient(
      135deg,
      #00d757,
      #009a3f
    );

  box-shadow:
    0 14px 34px rgba(0,215,87,0.22);

  transition: 0.3s ease;
}

.footer-support a:hover {
  transform:
    translateY(-4px)
    scale(1.03);
}

/* =========================================================
   COPYRIGHT
========================================================= */

.copy {
  margin-top: 60px;

  padding-top: 24px;

  text-align: center;

  color: #777;

  font-size: 0.92rem;

  border-top:
    1px solid rgba(255,255,255,0.06);
}

/* =========================================================
   SOCIAL MINI
========================================================= */

.footer-social {
  display: flex;
  gap: 12px;

  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.08);

  transition: 0.3s ease;
}

.footer-social a img {
  width: 18px;
  height: 18px;

  filter:
    brightness(0)
    invert(1);
}

.footer-social a:hover {
  transform:
    translateY(-4px)
    scale(1.05);

  background:
    linear-gradient(
      135deg,
      rgba(255,80,170,0.18),
      rgba(255,138,0,0.14)
    );
}