.box {
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  /*box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);*/
  -webkit-perspective: 800px;
  perspective: 800px;
}

.box img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in 0.2s;
}

.box:hover img {
  border-radius: 20px;
  opacity: 0;
  transform: rotateY(-100deg) translateX(50%) scale(0.5);
  transition-delay: 0;
}

.box .box-content {
  border-radius: 20px;
  width: 100%;
  padding: 0 30px;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotateY(90deg) translate(50%, -50%) scale(0.5);
  transition: all 0.3s ease-out 0s;
}

.box:hover .box-content {
  border-radius: 20px;
  opacity: 1;
  transform: rotateY(0deg) translate(0, -50%) scale(1);
  transition-delay: 0.7s;
}

.box .title {
/* TÍTULOS DOS CARDS */
  font-weight: bold;
  font-size: 20px;
  /*font-weight: 800;*/
  color: rgb(71, 23, 0);
  /* line-height: 1.5em;*/
  /*text-transform: uppercase;*/
  margin: 0;
}

.box .description {
  font-size: 14px;
  /*font-weight: 500;*/
  color: #d64d00;
  margin: 0;
}

.box .read-more {
  border-radius: 15px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  background: #f2ac5f;
  overflow: hidden;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease 0s;
}

.box .read-more:after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: all 0.3s ease 0s;
}

.box .read-more:hover:after {
  height: 170%;
  background: #e28929;
  opacity: 1;
}

@media only screen and (max-width:990px) {
  .box {
    margin-bottom: 20px;
  }
}

