.proyecto-finalizado {
  background-position: top center;
  background-size: contain;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.proyecto-finalizado:hover .proyecto-finalizado-bg {
  transform: scale(1.2);
}
.proyecto-finalizado-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: contain;
  transition: all .3s ease;
}
.proyecto-finalizado .name {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px 15px;
}
.proyecto-finalizado .name h2 {
  font-size: 1rem;
}
.more-info {
  background-color: #1D9ED5;
  border: 1px solid #FFF;
  color: #FFF;
  text-align: center;
  height: 46px;
  line-height: 46px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 20px;
  transition: all .3s linear;
}
.more-info:hover {
  background-color: #CF4520;
}