/*Contratación*/
.enlaces {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  a {
    transition: all 500ms;
  }
  a:hover {
    scale: 110%;
  }
}
.links_contratos {
  justify-content: space-around;
}
