/*
 RcardenasEdu
 Estilos base para la página Edu.php siguiendo el patrón de des.php
*/

/* start all section */
#hero-educacion,
#hero-educacion .fp-slide,
#hero-educacion .fp-tableCell,

#sec1,
#sec1 .fp-slide,
#sec1 .fp-tableCell,

#sec2,
#sec2 .fp-slide,
#sec2 .fp-tableCell,

/*stlBody*/
body {
	background: #000000;
	font-family: 'Raleway', sans-serif;
	font-size: 19px;
	font-weight: 400;
	height: auto !important;
}
/* /stlBody */

/* stlA : style <a href>*/
#stlA {
	background-color: rgba(0, 0, 0, 0);
	color: #4f339c;
	border-color: white;
}
/* /stlA */

#stlA:hover {
	background: #4f339c;
	color: white;
}

/* /allsection */

/* allheading */
h1,
h2,
h3,
h4,
h5 {
	color: #ffffff;
	font-weight: bold;
}

/* /allheading */

/* allsection */
#sec1,
#sec2 {
	padding-top: 100px;
	padding-bottom: 120px;
}

/* /allsection */


/* hero educación */
#hero-educacion {
	position: relative;
	overflow: hidden;
	padding-top: 120px;
	padding-bottom: 140px;
	text-align: center;
}

#hero-educacion::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../images/Background/educacion/bg-edu.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	filter: blur(8px);
	transform: scale(1.05);
	z-index: 0;
}

#hero-educacion::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

#hero-educacion .container {
	position: relative;
	z-index: 2;
}

#hero-educacion h1 {
	border: 2px solid #4f339c;
	color: #4f339c;
	display: inline-block;
	letter-spacing: 6px;
	padding: 25px 5px;
	margin: 30px 0;
}

#hero-educacion h2 {
	padding-bottom: 10px;
	color: #000000;
}

#hero-educacion h3 {
	padding-bottom: 10px;
	color: #000000;
}

#hero-educacion p {
	padding-bottom: 10px;
	color: #000000;
}

#hero-educacion .btn {
	background: transparent;
	border: 2px solid #000000;
	color: #000000;
	font-size: 16px;
	font-weight: bold;
	width: 180px;
	height: 60px;
	margin-top: 40px;
	margin-right: 10px;
	padding-top: 18px;
	transition: all 0.4s ease-in-out;
}

#hero-educacion .btn:hover {
	background: #4f339c;
	border-color: transparent;
	color: #ffffff;
}

/* /hero educación */

/* rutas educación */

#rutas.rutas-section {
	position: relative;
	padding-top: 80px;
	padding-bottom: 100px;
	background: #000000;
}

.rutas-title {
	margin-bottom: 40px;
	font-size: 32px;
}

.rutas-grid {
	margin-top: 10px;
}

.ruta-card {
	margin-bottom: 30px;
}

.ruta-card-title {
	font-size: 22px;
	margin-bottom: 12px;
}

.ruta-card-text {
	font-size: 17px;
	color: #f0f0f0;
	margin-bottom: 22px;
}

.ruta-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ruta-btn-primary {
	border-radius: 999px;
	border-color: #4f339c;
	color: #ffffff;
	background: transparent;
	font-weight: 600;
	padding: 10px 24px;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.ruta-btn-primary:hover,
.ruta-btn-primary:focus {
	background: #4f339c;
	border-color: #4f339c;
	color: #ffffff;
}

.ruta-card:hover {
}

@media (max-width: 767px) {
	#rutas.rutas-section {
		padding-top: 60px;
		padding-bottom: 80px;
	}

	.ruta-card {
		margin-bottom: 24px;
	}
}

/* /rutas educación */

/* layout tarjetas tipo Novedades (reutilizado en Edu) */

.novedades-card {
	display: flex;
	flex-direction: row;
	background: rgba(0, 0, 0, 0.85);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	min-height: 300px;
}

.novedades-media {
	position: relative;
	flex: 0 0 45%;
	min-height: 220px;
	overflow: hidden;
}

.novedades-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.novedades-tag {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: rgba(0, 0, 0, 0.65);
	color: #00eaff;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.novedades-content {
	flex: 1;
	padding: 20px 24px;
}

.novedades-heading {
	font-size: 22px;
	margin-top: 0;
	margin-bottom: 10px;
}

.novedades-summary {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.85);
}

.novedades-cta {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.novedades-btn {
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	background: transparent;
	color: #ffffff;
	font-size: 14px;
	padding: 8px 18px;
	line-height: 1.4;
	text-transform: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.novedades-btn:hover,
.novedades-btn:focus {
	background: #00eaff;
	border-color: #00eaff;
	color: #000000;
	text-decoration: none;
}

@media (max-width: 991px) {
	.novedades-card {
		flex-direction: column;
	}

	.novedades-media {
		flex-basis: auto;
		min-height: 160px;
	}
}

@media (max-width: 576px) {
	.novedades-card {
		flex-direction: column;
		min-height: auto;
	}

	.novedades-media {
		flex: 0 0 auto;
		width: 100%;
		min-height: 200px;
		max-height: 240px;
	}

	.novedades-image {
		height: 100%;
		object-fit: cover;
	}

	.novedades-content {
		padding: 16px 16px 20px;
	}

	.novedades-heading {
		font-size: 20px;
	}

	.novedades-summary {
		font-size: 15px;
	}
}

/* /layout tarjetas tipo Novedades */
