.contenedor_enlaces {
  padding: 40px 0 0;
  border-radius: 25px;
  background-color: #fff;
}

.contenedor_enlaces h2 {
  text-align: center;
  font-size: var(--22);
  font-weight: 600;
  margin-bottom: 40px;
}

.contenedor_enlaces > h2, 
.contenedor_enlaces > p {
  padding: .4rem;
}

.enlace1,
.contenidos_ a.enlace1 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  height: 140px;
  width: 100%;
  max-width: 430px;
  padding: 30px 116px 30px 30px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid #dbebf9;
  border-radius: 38px;
  overflow: hidden;
  cursor: pointer;
  font-size: var(--18);
  line-height: 20px;
  text-decoration: none;
  letter-spacing: -0.5px;
  color: var(--blue-dark);
  transition: background-color var(--transition);
}

.enlace1:focus,
.enlace1:hover,
.contenidos_ a.enlace1:focus,
.contenidos_ a.enlace1:hover {
  text-decoration: none;
  background: #dbebf9;
  border: 1px solid #dbebf9;
}

.enlace1::before {
  content: '';
  position: absolute;
  top: 0;
  right: -1px;
  width: 59px;
  height: 140px;
  background-image: url(../images/back-enlace.svg);
  background-repeat: no-repeat;
  transition: opacity var(--transition);
}

.enlace1:hover::before {
  opacity: 0;
}

.enlace1 .iconf {
  position: absolute;
  top: 35px;
  right: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 72px;
  color: #fff;
  transition: all 0.4s ease-in-out;
  background-color: var(--blue);
}

.enlace1:hover .iconf {
  background-color: #fff;
}
.enlace1 i {
  position: relative;
  font-size: var(--28);
  color: #fff;
  transition: color var(--transition);
}

.enlace1:hover .iconf i {
  color: var(--blue);
  animation-name: heartBeat;
}

@media (min-width: 992px) {
  .contenedor_enlaces {
    padding: 40px 24px 0;
  }
}
