/*---------------------------------------------------------------------------------------------------------------------
=Footer
-----------------------------------------------------------------------------------------------------------------------
definições do rodapé da página
.......................................................................................................................*/
footer {
  align-items: center;
  width: 100%;
  color: #ffffff;
  background-color: #58595b;
}

.footer-link {
  text-decoration: none;
}

#footer_copyright {
  border-top: 1px solid;
  border-color: #000000;
}

#footer_content {
  display: flex;
  justify-content: center;
  background-color:  #58595b;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 3rem 3.5rem;
} 

#footer__conteudo {
  display: flex;
  justify-content: center;
  background-color:  #58595b;
  padding: 3rem 0rem; 
} 

#footer_info h2 {
  color: #ffffff;
  font-family: "Raleway", Sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

#footer_info strong {
  color: #ffffff;
  font-family: "Open Sans", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

#footer_social_media {
  display: flex;
  margin-top: 1.5rem;
} 

#footer_social_media .footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  color:  #ffffff;
  border-radius: 50%;
  transition: all 0.4s;
}

#footer_social_media .footer-link i {
  font-size: 1.25rem;    
}

#footer_social_media .footer-link:hover {
  opacity: 0.8;
}

#footer_logo img {
  max-width: 100%;
    height: auto;
  margin-bottom: 2rem;  
}

#footer_logo_proreitoria img {
  max-width: 225px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  border-radius: 10px;
  padding: 5px;
  background-color: #ffffff;  
}

#qrcode img {
  width: 50%;
}

#footer__qrcode {
  text-align: right !important;
  max-width: 320px;
}

#footer__qrcode img {
  width: 100%;
}

#footer_copyright {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: center;
  background-color: #58595b;
  font-family: 'Open Sans', sans-serif;
  color: #CCCFD5EB;
  font-weight: 400;
  letter-spacing: -0.1px;
  font-size: 0.96rem;
  padding: 1.5rem;
}

.footer__icons {
  padding: 1rem 0rem;
}

.footer__icons i{
  font-size: 32px;
  color: #ffffff;
}

#footer_info strong span {
  white-space: nowrap;
}

/*----------
 início - mobile - footer
----------*/ 
@media (max-width: 1000px) {
  #footer_copyright {
    padding: 0.5 rem;
  }

  #footer__conteudo{
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
    padding-top: 25px;
  }
}

@media (max-width: 400px) {
  .footer__icons i{
    font-size: 24px;
    color: #ffffff;
  }

  .footer__icons .col{
    padding: 0;
  }
}

@media (max-width: 767px) {
  #footer__conteudo{
    text-align: center;
  }
  #footer_copyright{
    text-align: center;
  }
}
/*----------
 fim - mobile - footer
----------*/