
/*SERVICIOS*/
/* SECTION */
.hero-section{
	padding: 60px 0;
	background: #f7f9fc;
}

/* TOP BADGE */
.hero-badge{
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 700;

    letter-spacing: 1px;
	text-align: center;
}

/* TITLE */
.hero-title{
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;    
    margin-bottom: 20px;
}

/* CARDS CONTAINER */
.cards-flex{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

/* CARD */
.minimal-card{
    background: #ffffff;
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(15,23,42,0.06);
    transition: all .3s ease;
    border: 1px solid #e2e8f0;
	height: 385px;
	place-content:flex-end;
}

/* HOVER */
.minimal-card:hover{
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.card-image{
	height: 70px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 15px;
}

.card-image img{
	width: 58px;
	height: auto;
}

/* TITLE CARD */
.card-title{
	font-size: 17px;
	font-weight: 700;

	color: var(--color-heading);

	margin-bottom: 15px;

	min-height: 55px;

	display: flex;
	align-items: center;
	justify-content: center;
}

/* TEXT */
.card-text_servicios{
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-text);
    text-align:justify;
}

/* BUTTON */
.card-btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 11px 24px;

	background: linear-gradient(135deg,var(--color-primary),#1d4ed8);
    
	color: #fff;

	border-radius: 10px;

	font-size: 14px;
	font-weight: 600;

	text-decoration: none;

	margin-top: auto;

	transition: .3s ease;
    font: -webkit-small-control;
   box-shadow: 0 4px 12px rgba(0, 134, 201, 0.25);

	transition: all .3s ease;
	display: flex;
    
}

.card-btn:hover{
	background: linear-gradient(135deg,var(--color-primary),#5e89ff);

	color: #fff;

	transform: translateY(-2px);

	text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:991px){

	.hero-title{
		font-size: 34px;
	}

	.cards-flex{
		gap: 20px;
	}

	.minimal-card{
		margin-bottom: 20px;
	}
}

@media(max-width:768px){

	.hero-badge{
		font-size: 20px;
		padding: 10px 18px;
	}

	.hero-title{
		font-size: 20px;
	}

	.minimal-card{
		padding: 24px 20px;
		height: 450px;
	}
	.card-text_servicios
	{
		font-size: 20px;
	}
}
