/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 25 2023 | 10:40:35 */
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

.phone {
  height: 300px;
  width: auto;
}
.card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f50909;
  border-radius: 20px;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(177,176,191,1) 0%, rgba(199,191,191,1) 35%, rgba(207,207,207,1) 100%);
  transform: skewY(345deg);
  transition: 0.5s;
}
.card:hover::before {
  top: -70%;
  transform: skewY(400deg);
}
.card::after {
  content: "-ROBÓTICA-";
  position: absolute;
  margin-bottom:25px;
  bottom: 0;
  left: 0;
  font-weight: 700;
  font-size: 3em;
  color: rgba(0, 0, 0, 0.1);
}
 .img-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  z-inder: 1;
}
.card .container {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
.card .container h1 {
  font-size: 18px;
  color: #f5f5f5;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.card .container .price {
  font-size: 24px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}
.card .container .buy {
 
  top: 200px;
  transition: 0.5s;
  display: block;
  padding: 15px 30px;
  position: relative;
  border-radius: 10px;
  font-style: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  background: linear-gradient(90deg, rgba(193,188,186,1) 0%, rgba(152,146,144,1) 35%, rgba(191,185,183,1) 100%);
  box-shadow: 10px 10px 10px #fff123;
  display: block;
  color: #fff;
  text-decoration: none;
 
}
.card:hover .container .buy {
  top: 3px;
  opacity: 1;
  box-shadow: 0px 2px 0px #fff123ce;
}
/* CSS Document */


