.siwebza-footer {
  position: relative;
  background: #080c14; /* Fondo ultra oscuro */
  color: #94a3b8;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  padding-top: 90px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- MESH GRADIENT GLOWS (Luces orgánicas de fondo) --- */
.siwebza-footer::before,
.siwebza-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.22;
}

/* Luz Azul Neón Superior */
.siwebza-footer::before {
  width: 450px;
  height: 450px;
  background: #2563eb;
  top: -100px;
  left: -100px;
}

/* Luz Violeta Neón Inferior */
.siwebza-footer::after {
  width: 500px;
  height: 500px;
  background: #7c3aed;
  bottom: -150px;
  right: -100px;
}

.siwebza-footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* --- COLUMNA DE MARCA --- */
.siwebza-footer .brand-col {
  display: flex;
  flex-direction: column;
}

.siwebza-footer .siwebza-logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 20px;
  width: max-content;
}

.siwebza-footer .brand-brand {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(56, 189, 248, 0.25));
}

.siwebza-footer .brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 3.5px;
  margin-top: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.siwebza-footer .brand-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 28px;
  max-width: 380px;
}

/* --- ÍCONOS SOCIALES GLASSMORPHISM --- */
.siwebza-footer .siwebza-socials {
  display: flex;
  gap: 14px;
}

.siwebza-footer .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.siwebza-footer .social-icon:hover {
  transform: translateY(-6px) scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.siwebza-footer .social-icon.whatsapp:hover {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.siwebza-footer .social-icon.tiktok:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}
.siwebza-footer .social-icon.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}
.siwebza-footer .social-icon.facebook:hover {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

/* --- TITULOS DE COLUMNAS CON BRILLO NEÓN --- */
.siwebza-footer .footer-title {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.siwebza-footer .footer-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

/* --- ENLACES Y NAVEGACIÓN --- */
.siwebza-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.siwebza-footer .footer-links li {
  margin-bottom: 14px;
}

.siwebza-footer .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.siwebza-footer .footer-links a:hover {
  color: #38bdf8;
  transform: translateX(6px);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

/* --- INFO DE CONTACTO --- */
.siwebza-footer .contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.siwebza-footer .contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.siwebza-footer .contact-info i {
  color: #38bdf8;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.siwebza-footer .contact-info a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.siwebza-footer .contact-info a:hover {
  color: #38bdf8;
}

/* --- BOTÓN NEÓN WSP (TARJETA BRILLANTE) --- */
.siwebza-footer .siwebza-wsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.15) 0%,
    rgba(37, 211, 102, 0.05) 100%
  );
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25d366;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
}

.siwebza-footer .siwebza-wsp-btn i {
  font-size: 1.2rem;
}

.siwebza-footer .siwebza-wsp-btn:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transform: translateY(-3px);
  border-color: #25d366;
}

/* --- BARRA INFERIOR COPYRIGHT --- */
.siwebza-footer-bottom {
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.siwebza-footer-bottom .bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #64748b;
}

.siwebza-footer-bottom strong {
  color: #e2e8f0;
  font-weight: 600;
}

.siwebza-footer-bottom .bottom-links {
  display: flex;
  gap: 24px;
}

.siwebza-footer-bottom .bottom-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.siwebza-footer-bottom .bottom-links a:hover {
  color: #38bdf8;
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
  .siwebza-footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .siwebza-footer {
    padding-top: 60px;
  }

  .siwebza-footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .siwebza-footer-bottom .bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
