section {
  height: auto;
  /* background: #f0f8ff; */
}
section .card {
  position: relative;
  width: 260px;
  height: 340px;
  display: flex;
  background: #fff;
  box-shadow: 2px 5px 7px #999;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  border: 1px solid #00bfff;
}
section .card .content,
section .card .imgText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section .card .img-perfil {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  margin: auto;
}

section .card .img-perfil img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
section .card .content h3 {
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.2em;
  text-align: center;
  color: #2fa1ff;
  margin-top: 20px;
}

section .card .imgText h3 span {
  font-weight: 400;
  color: #777;
  font-size: 0.75em;
}

section .sci {
  display: flex;
  margin-top: 15px;
  padding: 0;
  margin-bottom: 0;
}

section .sci li {
  list-style: none;
}

section .sci li a {
  text-decoration: none;
  position: relative;
  width: 50px;
  height: 50px;
  background: #e9f5ff;
  color: #2fa1ff;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.5s;
}

section.dark .sci li a {
  background: #404852;
}

section .sci li a:hover {
  color: #fff;
}

section .sci li a .fa {
  position: relative;
  z-index: 1000;
}
section .sci li a .fab {
  position: relative;
  z-index: 1000;
}

section .sci li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #2fa1ff;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.5s;
}

section .sci li a:hover:before {
  transform: scale(1);
}
