/* 1) Força a coluna/elemento a centralizar o conteúdo */
.footer-social-scope,
.footer-social-scope .wpb_wrapper{
  width: 100%;
  display: block;
  text-align: center !important;      /* centraliza tudo dentro */
}

/* 2) Título */
.footer-social-scope .footer-social-title{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

/* 3) Linha de ícones em inline-flex para obedecer ao text-align do wrapper */
.footer-social-scope .footer-social{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* 4) Ícones */
.footer-social-scope .footer-social a img{
  width: 50px;
  height: 50px;
  display: block;
  transition: transform .15s ease;
}
.footer-social-scope .footer-social a:hover img{
  transform: scale(1.06);
}

/* 5) Ajuste extra para caso a ROW/coluna pai esteja usando flex do tema */
.footer-social-scope .vc_column-inner,
.footer-social-scope .vc_column-inner .wpb_wrapper{
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Mobile */
@media (max-width: 480px){
  .footer-social-scope .footer-social-title{ font-size: 16px; }
  .footer-social-scope .footer-social{ gap: 10px; }
  .footer-social-scope .footer-social a img{ width: 44px; height: 44px; }
}