:root{
  --wx-footer-bg: #0b1220;                 /* fundo elegante (dark navy) */
  --wx-footer-surface: rgba(255,255,255,.06);
  --wx-footer-line: rgba(255,255,255,.10);
  --wx-footer-text: rgba(255,255,255,.78);
  --wx-footer-muted: rgba(255,255,255,.55);
  --wx-footer-accent: #2563eb;            /* azul Winndex/SaaS */
}

.wx-footer{
  background: var(--wx-footer-bg);
  color: var(--wx-footer-text);
  margin-top: 1px;
}

.wx-footer__container{
  max-width: 1180px;                      /* combina com sua navbar */
  margin: 0 auto;
  padding: 28px 18px 22px;
}

/* Linha 1: ícones */
.wx-footer__top{
  padding-bottom: 18px;
}

.wx-footer__social{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Ícones em “bolinha” */
.wx-footer__icon{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wx-footer-surface);
  border: 1px solid var(--wx-footer-line);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.wx-footer__icon:hover{
  transform: translateY(-2px);
  background: rgba(37,99,235,.18);
  border-color: rgba(37,99,235,.35);
}

/* Linha 2 */
.wx-footer__bottom{
  border-top: 1px solid var(--wx-footer-line);
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Links institucionais */
.wx-footer__links{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.wx-footer__links a{
  color: var(--wx-footer-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  transition: color .15s ease;
}

.wx-footer__links a:hover{
  color: rgba(255,255,255,.92);
}

/* Copyright */
.wx-footer__copy{
  color: var(--wx-footer-muted);
  font-size: 13px;
}

/* Mobile: empilha bonito */
@media (max-width: 640px){
  .wx-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
