
/* Contenido */
.section {
	width: 100%;
	/* height: 100vh; */
	box-sizing: border-box;
    
	padding: 60px 0;
    /* border: #afafaf8a 1px solid; */
    

    max-width: 1200px; /*4 tarjetas por pagina*/
    /* height: 530px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    margin: auto;
    font-family: sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
     /* border:1px solid rgba(139, 69, 19, 0.354); */
     padding-top: 20px;
     margin-top: 30px;
	 margin-bottom: 0px;
	 padding-bottom: 0px;
     
    
}
.card {
    /* float: left; */

	width: 200px;
	height: auto;
	border-radius: 15px;
	margin: 0 20px;
	padding: 40px 20px;
	box-shadow: 0 10px 15px rgba(0,0,0, .2);
	transition:all 0.25s;
	overflow: hidden;
    text-align: center;

}

/* .hit {
  position: relative;
  width: 150px;
  background: linear-gradient(-45deg, #C0392B, #F64747);
  font: bold 20px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0px rgba(255,255,255,0.7);
	padding: 5px 0;
	bottom: 90%;
	left: 60%;
	transform: rotate(45deg);
} */
.card:hover {
	transform: scale(1.1);
    /* transform: translateY(-15px); */
}
.separate {
	margin: 0 0 60px 0;
}
.box_card:nth-child(1) .card,
.box_card:nth-child(1) .card .title .fa {
	background: linear-gradient(-45deg, #7E5632, #BAA89B);
}
.box_card:nth-child(2) .card,
.box_card:nth-child(2) .card .title .fa {
	background: linear-gradient(-45deg, #C0C0C0, #00BFC9);
}
.box_card:nth-child(3) .card,
.box_card:nth-child(3) .card .title .fa {
	background: linear-gradient(-45deg, #FFD700, #FF6BFF);
}
/* .card:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: rgba(255,255,255,.1);
	z-index: 1;
	transform: skewY(-5deg) scale(1.5);
} */
.title .fa {
	color: #fff;
	font-size: 60px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	text-align: center;
	line-height: 100px;
	box-shadow: 0 10px 10px rgba(0,0,0, .1)
}
.title h2 {
	color: #fff;
	font-size: 28px;
	position: relative;
	margin: 20px 0 0;
	padding: 0;
	z-index: 2;
}
.price {
	position: relative;
	z-index: 2;
}
.price h4 {
	margin: 0;
	padding: 20px 0;
	color: #fff;
	font-size: 60px;
}
.option {
	position: relative;
	z-index: 2;
}
.option ul {
	margin: 0;
	padding: 0;
}
.option ul li {
	margin: 0 0 20px;
	padding: 0;
	color: #fff;
	font-size: 16px;
	list-style: none;
}
.card a { /*Botones comprar tarjetas*/
	font-size: 16px;
	position: relative;
	z-index: 2;
	background: #fff;
	color: #262626;
	color: #75480d;
	width: 150px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	display: block;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
	box-shadow: 0 5px 10px rgba(0,0,0, .2);
}
.card a:hover {
	cursor: pointer;
    color: #09790f;
	
}