.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border: 0;
  border-radius: 0.25rem;
  width: var(--card-width);
  height: var(--card-height);
  justify-content: start;
  align-items: center;
  padding: 0 15px;
  perspective: 2500px;
  margin: 0 0;
  color: #fff;
}


.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  transition: all 0.8s;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 170px;
  background-color: #F3F3F3;
  border-radius: 20px;
}

.card:hover .wrapper {
    transform: perspective(400px) translateY(-5%) rotateX(5deg) translateZ(0);
    box-shadow: 2px 10px 15px -10px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 2px 10px 15px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 2px 10px 15px -10px rgba(0, 0, 0, 0.75);
}



.wrapper::after {
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(to bottom,
      transparent 46%,
      rgba(12, 13, 19, 0.5) 68%,
      rgba(12, 13, 19) 97%);
}

.card:hover .wrapper::before,
.wrapper::after {
  opacity: 1;
}

.card:hover .wrapper::after {
  height: 120px;
}

.icon {
 
  transition: transform 0.8s;
}

.icon2 {
  
  position: absolute;
  top: 0;
}

.div-icon{
  position: absolute;
  top: -30px;
  background: #248B8D;
  padding: 10px;
  border-radius: 50%;
  transition: all .8s;
}

.character {
  width: 100%;
  opacity: 0;
  transition: all 0.6s;
  position: absolute;
  z-index: -1;
}

.card:hover .character {
  opacity: 1;
  transform: translate3d(0%, -30%, 100px);
}

.card .title {
  color: #248B8D;
  font-size: 30px;
  margin-top: 30px;
  transition: transform 0.9s;
}
.card .descricao {
  color: #000000;
  font-size: 16px;
  transition: all .9s;
}
.card:hover .descricao {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
}


.card:hover .title {
  transform: translate3d(0%, -20px, 100px);
 
}
.card:hover .icon {
  transform: translate3d(0%, -1px, 100px);
}
.card:hover .div-icon {
  transform: translate3d(0%, -20px, 100px);
}
