.mentorias-footer {
  display: flex;
  flex-direction: column;
  gap: 48px;

  background-color: #0D134C;
  padding: 72px 87px 32px 87px;

  border-top-right-radius: 60px;
}

.mentorias-footer-data {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mentorias-footer-data p {
  font-family: 'Source Sans Pro';
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #DFE1E6;
}

.mentorias-footer-about {
  display: flex;
  padding: 32px 0;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;

  border-top: solid 1px #B3BAC5;
}

.mentorias-footer-about a {
  color: white;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.mentorias-footer-redes-sociais {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.mentorias-footer-redes-sociais li {
  width: 48px;
  height: 48px;
  background-color: #252a5e;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 12px;
  transition: .3s filter;
}

.mentorias-footer-redes-sociais li a {
  width: 24px;
  height: 24px;
}

.mentorias-footer-redes-sociais li:hover {
  cursor: pointer;
  filter: brightness(85%);
}

@media (max-width: 600px) {
  .mentorias-footer {
    padding: 72px 4px 22px 24px;
    border-top-right-radius: 40px;
  }

  .mentorias-footer-about {
    padding: 32px 0 0;
  }
}