.margem {
  margin-left: 8.5%;
  margin-right: 8.5%;
  display: flex;
  justify-content: space-between;
}

.titulo {
  margin-bottom: -10px;
  font-size: 20px;
}

.footer-distributed {
  background-color: #254367;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  padding-top: 3%;
  padding-bottom: 3%;
  margin-top: 0px;
}
 
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
  font-family: Lato;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  text-align: left;
  box-sizing: border-box;
}

/* Footer left */

.footer-distributed .footer-left {
  font-size: 20px;
  font-weight: 900;
  /* line-height: 2; */
  color: #254367;
}

.footer-distributed .footer-info {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.36;
  color: #ededed;
  margin-bottom: 4px;
  box-sizing: border-box;
}

.footer-distributed .footer-copyright {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.36;
  color: #fbd969;
}

/* Footer Right */

.footer-distributed .footer-right {
  float: right;
}

.botaotop {
  /*display: none; para fins de teste está desabilitado, depois será utilizado para que em páginas sem scroll mão tenha botão de voltar ao topo */
  position: sticky; /* Fixed/sticky position */
  bottom: 210px; /* Place the button at the bottom of the page */
  right: 50px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #254367; /* Set a background color */
  color: #afabab; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  font-family: Lato;
  font: bold 16px;
}

.botaotop:hover {
  background-color: #afabab;
  color: white;
}

a:link,
a:visited {
  color: #fbd969;
  text-decoration: none;
}
/*
a:hover {
  color: #254367;
}
*/
a:active {
  color: #fbd969;
}

.telefone {
  color: #ededed !important;
}

.email {
  color: #ededed !important;
}

/* If you don't want the footer to be responsive, remove these media queries */
@media (max-width: 905px) {
  .footer-distributed {
    padding-top: 5%;
  }
}

@media (max-width: 600px) {
  .margem {
    flex-direction: column;
    padding-bottom: 10%;
  }

  .footer-right p {
    margin-bottom: 0;
  }
  
  .footer-distributed {
    font: bold 10px Lato;
    padding-top: 10%;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    /*margin-bottom: 40px;*/
    text-align: center;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

@media screen and (max-width:621px) {
  .footer-right {
    margin-top: 10%;
  }

  .footer-distributed {
    height: 100%;
    padding-bottom: 0;
  }
}

@media screen and (max-width:334px) {
  .email {
    font-size: 5vw;
  }
}