/* Products Cards  */

.products .row{
  display:flex;
  justify-content: space-evenly;
}

.products .prod-item {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.products .prod-item .prod-item-img {
  position: relative;
  overflow: hidden;
  max-height: 180px;
}

.products .prod-item .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background:  var(--color-03);
}

.products .prod-item .social a {
  transition: color 0.3s;
  color: var(--color-01);
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.products .prod-item .social a:hover {
  color: var(--color-10);
}


.products .prod-item .social i {
  font-size: 1.5em;
  margin: 2px 2px;
}

.products .prod-item .prod-item-info {
  padding: 25px 15px;
}

.products .prod-item .prod-item-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #124265;
}

.products .prod-item .prod-item-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.products .prod-item .prod-item-info .preco_desconto {
  text-decoration: line-through !important;
}

.products .prod-item .prod-item-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.products .prod-item:hover .social {
  opacity: 1;
}

/* Cards Gerais */
.produtos .card h2 {
  font-weight: 700;
  font-size: 18px;
}
.produtos .card .card-img {
  height:200px;
  background-size: contain!important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.products .btn-cta{
  font-size: 1.4em;
  width: 270px;
  padding: 10px;
  background: var(--color-03);
  color: var(--color-01);
  text-align: center; 
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px; 
}

.products .btn-cta:hover {
  color: var(--color-01);
  background-color:  var(--color-04);
  transition: 0.3s;
} 

@media (max-width: 1160px) {
  .produtos .card .card-img {
    height:100px;
  }
}

@media (max-width: 768px) {
  #products {
    padding-top: 10px;
  }  
  .products .prod-item .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 90px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: var(--color-02-opacity);
  }
  .products .prod-item .social a {
    margin: 0px 5px;
    padding-top: 10px;
    font-size: 1em;
  }
}
