

#cuerpo{
    background:#fff;
    padding:50px;
    border-radius:8px;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.5;
    height:auto;
}
.header-img{
    height: 450px;
    width:100%;
}
.header-img::before{
    display: block;
    width: 100%;
    height: 450px;
    content: "";
    background-blend-mode: darken;
    background: rgb(0,0,0,0.3);
    position: absolute;
    transition: 0.6s;
}
.header-img > img{
    object-fit:cover;
    width:100%;
    height:100%;
}
.header-img-title > h1{
    bottom:20px;
    position: relative;
    color:#fff;
    font-size: 60px;
    left: 20px;
}
.header-img-title{
    top: -350px;
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}
.header-img-title > h1::before{
    height: 46px;
    width:4px;
    content: "";
    background:#858585;
    position: absolute;
    top:13px;
    margin-left: -10px;
}
.header-description{
    width:100%;
    height:auto;
    background:#424242;
}
.header-description > div{
    padding: 20px;
    color:#fff;
    font-size:18px;
    text-align:justify;
}
.header-description > div > p{
    padding:0;
    margin:0;
}

.wrapper {
  display: grid;
  grid-auto-rows: minmax(100px, auto);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  grid-gap: 15px;
}
.wrapper > div{
  background:#f7f7f7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 15px;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 90%;
  padding: 25px;
}
.wrapper > div:hover{
  opacity: 100%;
  background:#fcfcfc;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.08);
  transform:scale(1.02, 1.02);
}
.wrapper > div span{
  text-align:center;  
}

.img-perfil{
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  transition: 0.5s;
  box-shadow: var(--shadow);
}
.img-perfil img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

