/* ===== SERVICE CARD STYLES (restaurados) ===== */
.service-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all var(--transition-normal);
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-top: 4px solid var(--primary);
}
.service-card:nth-child(1) { border-top-color: var(--primary-dark); }
.service-card:nth-child(2) { border-top-color: var(--primary); }
.service-card:nth-child(3) { border-top-color: var(--accent); }
.service-card:nth-child(4) { border-top-color: var(--success); }
.service-card:nth-child(5) { border-top-color: var(--accent-dark); }
.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(122, 191, 43, 0.05), transparent);
	pointer-events: none;
	opacity: 0;
	transition: opacity var(--transition-normal);
}
.service-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-12px);
}
.service-card:hover::before {
	opacity: 1;
}
.service-content {
	padding: var(--spacing-xl);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.service-card h3 {
	color: var(--primary-dark);
	font-size: 22px;
	margin-bottom: var(--spacing-md);
	font-weight: 700;
	line-height: 1.4;
}
.service-card .service-number {
	display: inline-block;
	font-size: 12px;
	color: var(--accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--spacing-sm);
}
.service-card p {
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: var(--spacing-md);
	flex-grow: 1;
}
.service-card .button {
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 20px;
	font-size: 12px;
}
/* Service Features */
.service-features {
	list-style: none;
	margin: var(--spacing-md) 0;
	padding: 0;
}
.service-features li {
	padding: 8px 0;
	padding-left: 24px;
	position: relative;
	font-size: 13px;
	color: var(--text-light);
}
.service-features li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: bold;
	font-size: 16px;
}
/* Archivo renombrado desde program-style.css */

/* ===== SERVICES PAGE PROFESSIONAL STYLES ===== */

/* Services Header */
.services-header {
	background: var(--hero-overlay), url('../Multimedia/services_image.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: var(--white);
	padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
	min-height: var(--hero-min-height);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: var(--spacing-2xl);
	position: relative;
	overflow: hidden;
}

.services-header .container {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-md);
}

.services-header h1 {
	color: var(--white);
	margin-bottom: var(--spacing-md);
	font-size: 48px;
}

.services-header p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
}

/* CTA buttons (hero) aligned with Escuela */
.services-header .cta-inline {
	display: flex;
	gap: var(--spacing-md);
	justify-content: center;
	flex-wrap: wrap;
}

.services-header .button {
	background: var(--white);
	color: var(--primary);
	border: 2px solid var(--white);
	font-weight: 700;
	padding: 16px 40px;
}
