.ff-footer{
  background: #0b1f12;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-center-logo{
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.footer-left{
  justify-self: start;
}

.footer-logo{
  justify-self: center;
}

.footer-logo img{
  opacity: .9;
}

.footer-right{
  justify-self: end;
}

.ff-footer a{
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.ff-footer a:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px){
  .footer-center-logo{
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }

  .footer-left,
  .footer-right{
    justify-self: center;
  }

  .footer-center-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    text-align: center;
  }

  .footer-logo img{
    height: 22px; /* menor no mobile */
    opacity: .95;
  }

  .footer-left,
  .footer-right{
    font-size: 12px;
    line-height: 1.4;
    opacity: .85;
  }
}