/* ═══════════════════════════════════════════════════════════════════════════
   UNIVERSIDADES HOME - Version B: Lado a Lado
   Instituto Serca - Centro de Referencia EUNEIZ
   Colores corporativos: Verde #005348 / #2e544a | Naranja #FF8200
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   Banner Principal - Layout Lado a Lado
   ───────────────────────────────────────────────────────────────────────────── */
.universidad-banner-v2b {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	margin: 30px auto 15px;
	height: 200px;
}

.universidad-banner-v2b img.bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.universidad-banner-overlay-v2b {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 83, 72, 0.92) 0%, rgba(46, 84, 74, 0.88) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 50px;
	gap: 40px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Lado Serca (izquierda)
   ───────────────────────────────────────────────────────────────────────────── */
.lado-serca {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.logo-serca-v2b {
	height: 69px;
	width: auto;
	margin-bottom: 12px;
}

.badge-v2b {
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.badge-v2b i {
	font-size: 14px;
	color: #ffffff;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Separador Central
   ───────────────────────────────────────────────────────────────────────────── */
.separador-v2b {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
}

.separador-v2b .linea {
	width: 2px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	margin: 8px 0;
}

.separador-v2b span {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Lado EUNEIZ (derecha)
   ───────────────────────────────────────────────────────────────────────────── */
.lado-euneiz {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lado-euneiz > span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.logo-euneiz-v2b {
	height: 63px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-euneiz-v2b:hover {
	transform: scale(1.05);
	opacity: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Universidades Colaboradoras
   ───────────────────────────────────────────────────────────────────────────── */
.colaboradoras-v2b {
	background: rgba(0, 83, 72, 0.08);
	border: 1px solid rgba(0, 83, 72, 0.15);
	border-radius: 12px;
	padding: 25px 20px;
	margin-bottom: 40px;
}

.titulo-colaboradoras-v2b {
	font-size: 15px;
	font-weight: 500;
	color: #005348;
	text-align: center;
	margin-bottom: 20px;
}

.grid-logos-v2b {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	align-items: center;
	justify-content: center;
}

.grid-logos-v2b img {
	width: 140px;
	height: auto;
	max-height: 55px;
	object-fit: contain;
	opacity: 0.75;
	filter: grayscale(20%);
	transition: all 0.3s ease;
}

.grid-logos-v2b a:hover img {
	opacity: 1;
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive - Tablet (max-width: 992px)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
	.universidad-banner-v2b {
		height: 190px;
		margin: 25px auto 12px;
	}

	.universidad-banner-overlay-v2b {
		padding: 25px 35px;
		gap: 30px;
	}

	.logo-serca-v2b {
		height: 60px;
	}

	.logo-euneiz-v2b {
		height: 56px;
	}

	.badge-v2b {
		font-size: 10px;
		padding: 8px 16px;
	}

	.colaboradoras-v2b {
		padding: 22px 18px;
	}

	.grid-logos-v2b {
		gap: 20px;
	}

	.grid-logos-v2b img {
		width: 120px;
		max-height: 48px;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive - Mobile (max-width: 576px)
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 576px) {
	.universidad-banner-v2b {
		height: 280px;
		margin: 20px 10px 10px;
		border-radius: 10px;
	}

	.universidad-banner-overlay-v2b {
		flex-direction: column;
		gap: 20px;
		padding: 25px 20px;
	}

	.logo-serca-v2b {
		height: 56px;
	}

	.badge-v2b {
		font-size: 9px;
		padding: 8px 14px;
	}

	.separador-v2b {
		flex-direction: row;
	}

	.separador-v2b .linea {
		width: 40px;
		height: 2px;
		margin: 0 10px;
	}

	.logo-euneiz-v2b {
		height: 50px;
	}

	.colaboradoras-v2b {
		padding: 20px 15px;
		margin: 0 10px 30px;
		border-radius: 10px;
	}

	.titulo-colaboradoras-v2b {
		font-size: 14px;
		margin-bottom: 18px;
	}

	.grid-logos-v2b {
		gap: 18px;
	}

	.grid-logos-v2b img {
		width: 100px;
		max-height: 42px;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   Banner EUNEIZ - Centro de Referencia Acreditado (Azul)
   Mismos estilos que banner_masteres_oficiales pero en azul
   ───────────────────────────────────────────────────────────────────────────── */
.banner_cursos.banner_euneiz_acreditado {
	height: 200px !important;
	overflow: hidden !important;
}
.banner_cursos.banner_euneiz_acreditado > img:last-of-type {
	height: 200px !important;
	object-position: center 80%;
}
.banner_cursos.banner_euneiz_acreditado .contenido_banner_curso {
	height: 200px !important;
	background: linear-gradient(90deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 51, 102, 0.85) 50%, rgba(0, 51, 102, 0.7) 100%);
}
/* Logo EUNEIZ en banner */
.logo-euneiz-banner {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.logo-euneiz-banner img {
	height: 80px !important;
	width: auto !important;
	filter: brightness(0) invert(1);
	opacity: 0.95;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-euneiz-banner:hover img {
	opacity: 1;
	transform: scale(1.05);
}

/* Botón EUNEIZ */
.cont_menu_vereuneiz a {
	border-top-right-radius: 50px !important;
}

@media (max-width: 992px) {
	.logo-euneiz-banner {
		right: 20px;
	}
	.logo-euneiz-banner img {
		height: 60px !important;
	}
}
@media (max-width: 768px) {
	.banner_cursos.banner_euneiz_acreditado {
		height: auto !important;
		min-height: 380px;
	}
	.banner_cursos.banner_euneiz_acreditado > img:last-of-type {
		min-height: 400px;
	}
	.banner_cursos.banner_euneiz_acreditado .contenido_banner_curso {
		height: auto !important;
		min-height: 380px;
	}
}
@media (max-width: 576px) {
	.logo-euneiz-banner {
		display: none;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   Banner Másteres Oficiales - Logo Unimarconi
   ───────────────────────────────────────────────────────────────────────────── */
.logo-unimarconi-banner {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.logo-unimarconi-banner img {
	height: 72px !important;
	width: auto !important;
	opacity: 0.95;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-unimarconi-banner:hover img {
	opacity: 1;
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.logo-unimarconi-banner {
		right: 20px;
	}
	.logo-unimarconi-banner img {
		height: 54px !important;
	}
}
@media (max-width: 576px) {
	.logo-unimarconi-banner {
		display: none;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   V3 - Banner EUNEIZ con hover (texto + botones)
   ───────────────────────────────────────────────────────────────────────────── */
.banner-v3-hover {
	position: relative;
	height: 200px;
	overflow: hidden;
	border-radius: 0;
	margin: 30px 0 15px;
}
.banner-v3-hover > img.bg-v3 {
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: center 80%;
}
.banner-v3-hover .contenido-v3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 51, 102, 0.85) 50%, rgba(0, 51, 102, 0.7) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: opacity 0.4s ease;
}
.banner-v3-hover .contenido-v3 h3 {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.6px;
	margin-bottom: 5px;
}
.banner-v3-hover .contenido-v3 .subtitulo-v3 {
	font-size: 22px;
	font-weight: 300;
	margin-bottom: 15px;
}
.banner-v3-hover .contenido-hover-v3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 51, 102, 0.95) 0%, rgba(0, 51, 102, 0.95) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s ease;
	padding: 20px 80px;
	text-align: center;
}
.banner-v3-hover .contenido-hover-v3 p {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	max-width: 800px;
	margin: 0;
}
.banner-v3-hover .contenido-hover-v3 .botones-v3 {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}
.banner-v3-hover .btn-v3 {
	padding: 5px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.banner-v3-hover .btn-primary-v3 {
	background: #FF8200;
	color: #fff;
	border: 2px solid #FF8200;
}
.banner-v3-hover .btn-primary-v3:hover {
	background: #fff;
	color: #FF8200;
}
.banner-v3-hover .btn-secondary-v3 {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.6);
}
.banner-v3-hover .btn-secondary-v3:hover {
	background: #fff;
	color: #003366;
	border-color: #fff;
}
.banner-v3-hover:hover .contenido-v3 {
	opacity: 0;
}
.banner-v3-hover:hover .contenido-hover-v3 {
	opacity: 1;
}
.banner-v3-hover .logo-euneiz-v3 {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	height: 80px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
	transition: opacity 0.4s ease;
}
.banner-v3-hover:hover .logo-euneiz-v3 {
	opacity: 0;
}
/* Logo Serca V3 */
.banner-v3-hover .logo-serca-v3 {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	height: 69px;
	opacity: 0.95;
	transition: opacity 0.4s ease;
}
.banner-v3-hover:hover .logo-serca-v3 {
	opacity: 0;
}

/* V3 Responsive - Tablet */
@media (max-width: 992px) {
	.banner-v3-hover {
		height: 190px;
	}
	.banner-v3-hover > img.bg-v3 {
		height: 190px;
	}
	.banner-v3-hover .contenido-v3 h3 {
		font-size: 26px;
	}
	.banner-v3-hover .contenido-v3 .subtitulo-v3 {
		font-size: 18px;
	}
	.banner-v3-hover .contenido-hover-v3 {
		padding: 20px 40px;
	}
	.banner-v3-hover .contenido-hover-v3 p {
		font-size: 14px;
	}
	.banner-v3-hover .logo-euneiz-v3 {
		height: 60px;
		right: 20px;
	}
	.banner-v3-hover .logo-serca-v3 {
		height: 55px;
		left: 20px;
	}
}

/* V3 Responsive - Mobile */
@media (max-width: 576px) {
	.banner-v3-hover {
		height: 280px;
		margin: 20px 0 10px;
	}
	.banner-v3-hover > img.bg-v3 {
		height: 280px;
	}
	.banner-v3-hover .contenido-v3 h3 {
		font-size: 20px;
		text-align: center;
		padding: 0 15px;
	}
	.banner-v3-hover .contenido-v3 .subtitulo-v3 {
		font-size: 15px;
		text-align: center;
		padding: 0 15px;
	}
	.banner-v3-hover .contenido-hover-v3 {
		padding: 15px 20px;
	}
	.banner-v3-hover .contenido-hover-v3 p {
		font-size: 13px;
		line-height: 1.5;
	}
	.banner-v3-hover .contenido-hover-v3 .botones-v3 {
		flex-direction: column;
		gap: 8px;
	}
	.banner-v3-hover .btn-v3 {
		font-size: 11px;
		padding: 8px 15px;
	}
	.banner-v3-hover .logo-euneiz-v3 {
		display: none;
	}
	.banner-v3-hover .logo-serca-v3 {
		display: none;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   V3 - Banner UNIMARCONI (verde) con hover
   ───────────────────────────────────────────────────────────────────────────── */
.banner-v3-hover.banner-unimarconi .contenido-v3 {
	background: linear-gradient(90deg, rgba(0, 83, 72, 0.92) 0%, rgba(0, 83, 72, 0.85) 50%, rgba(0, 83, 72, 0.7) 100%);
}
.banner-v3-hover.banner-unimarconi .contenido-hover-v3 {
	background: linear-gradient(90deg, rgba(0, 83, 72, 0.95) 0%, rgba(0, 83, 72, 0.95) 100%);
}
.banner-v3-hover.banner-unimarconi .btn-secondary-v3:hover {
	color: #005348;
}
.banner-v3-hover .logo-unimarconi-v3 {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	height: 72px;
	opacity: 0.95;
	transition: opacity 0.4s ease;
}
.banner-v3-hover:hover .logo-unimarconi-v3 {
	opacity: 0;
}

@media (max-width: 992px) {
	.banner-v3-hover .logo-unimarconi-v3 {
		height: 54px;
		right: 20px;
	}
}
@media (max-width: 576px) {
	.banner-v3-hover .logo-unimarconi-v3 {
		display: none;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   Titulaciones - Grid de Cards
   ───────────────────────────────────────────────────────────────────────────── */
.titulaciones-section {
	margin-bottom: 50px;
}
.titulaciones-intro {
	text-align: center;
	font-size: 17px;
	color: #555;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.7;
}
.titulaciones-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
	margin-bottom: 40px;
}
.titulacion-card {
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	border: 1px solid rgba(0, 51, 102, 0.12);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}
.titulacion-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003366 0%, #004a99 100%);
}
.titulacion-card:hover {
	border-color: rgba(0, 51, 102, 0.25);
	box-shadow: 0 8px 25px rgba(0, 51, 102, 0.12);
	transform: translateY(-3px);
}
.titulacion-card.card-verde {
	border-color: rgba(0, 83, 72, 0.12);
}
.titulacion-card.card-verde::before {
	background: linear-gradient(90deg, #005348 0%, #007a6a 100%);
}
.titulacion-card.card-verde:hover {
	border-color: rgba(0, 83, 72, 0.25);
	box-shadow: 0 8px 25px rgba(0, 83, 72, 0.12);
}
.titulacion-card h4 {
	font-size: 19px;
	font-weight: 700;
	color: #003366;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.titulacion-card.card-verde h4 {
	color: #005348;
}
.titulacion-card-content {
	font-size: 17px;
	color: #555;
	line-height: 1.6;
	flex-grow: 1;
}
.titulacion-card-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.titulacion-card-content li {
	padding-left: 20px;
	position: relative;
	margin-bottom: 8px;
}
.titulacion-card-content li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #003366;
	font-weight: 700;
}
.titulacion-card.card-verde .titulacion-card-content li::before {
	color: #005348;
}
.titulacion-card-btn {
	margin-top: 20px;
}
.titulacion-card-btn a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FF8200;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.titulacion-card-btn a:hover {
	color: #003366;
}
.titulacion-card.card-verde .titulacion-card-btn a:hover {
	color: #005348;
}

/* Sección única (para Unimarconi) */
.titulacion-single {
	background: #fff;
	border-radius: 12px;
	padding: 35px;
	border: 2px solid rgba(0, 83, 72, 0.15);
	margin-top: 30px;
	margin-bottom: 40px;
}
.titulacion-single h4 {
	font-size: 20px;
	font-weight: 700;
	color: #005348;
	margin-bottom: 20px;
}
.titulacion-single-content {
	font-size: 17px;
	color: #555;
	line-height: 1.7;
}
.titulacion-single-content ul {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}
.titulacion-single-content li {
	padding-left: 25px;
	position: relative;
	margin-bottom: 10px;
}
.titulacion-single-content li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #005348;
	font-weight: 700;
	font-size: 16px;
}
.titulacion-single-buttons {
	display: flex;
	gap: 15px;
	margin-top: 25px;
	flex-wrap: wrap;
	justify-content: center;
}
.titulacion-single-buttons .btn-ejemplo {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 9px 30px;
	border: 2px solid #005348;
	background: #fff;
	color: #005348;
	border-radius: 6px;
	font-weight: 600;
	font-size: 19px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 83, 72, 0.15);
}
.titulacion-single-buttons .btn-ejemplo .icon-certificado {
	height: 43px;
	width: auto;
}
.titulacion-single-buttons .btn-ejemplo:hover .icon-certificado {
	content: url('https://institutoserca.com/img/institucion/certificado_over.png');
}
.titulacion-single-buttons .btn-link-programa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FF8200;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.titulacion-single-buttons .btn-link-programa:hover {
	color: #005348;
}
.titulacion-link-programa {
	margin-top: 20px;
}
.titulacion-link-programa .btn-link-programa {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FF8200;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.titulacion-link-programa .btn-link-programa:hover {
	color: #005348;
}
.titulacion-single-buttons .btn-ejemplo:hover {
	background: #005348;
	border-color: #005348;
	color: #fff;
	box-shadow: 0 6px 16px rgba(0, 83, 72, 0.3);
}
.titulacion-single-buttons .btn-ejemplo .icon-certificado {
	transition: filter 0.3s ease;
}
.titulacion-single-buttons .btn-ejemplo:hover .icon-certificado {
	filter: brightness(0) invert(1);
}
.titulacion-single-buttons .btn-oferta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: #FF8200;
	color: #fff;
	border: 2px solid #FF8200;
	border-radius: 50px;
	font-weight: 600;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s ease;
}
.titulacion-single-buttons .btn-oferta:hover {
	background: #fff;
	color: #FF8200;
}

/* Botones para cards EUNEIZ */
.titulacion-ejemplo-btn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	margin-bottom: 30px;
}
.titulacion-ejemplo-btn a {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	padding: 9px 30px;
	border: 2px solid #003366;
	background: #fff;
	color: #003366;
	border-radius: 6px;
	font-weight: 600;
	font-size: 19px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
}
.titulacion-ejemplo-btn a:hover {
	background: #003366;
	border-color: #003366;
	color: #fff;
	box-shadow: 0 6px 16px rgba(0, 51, 102, 0.3);
}
.titulacion-ejemplo-btn .icon-certificado {
	height: 43px;
	width: auto;
	transition: filter 0.3s ease;
}
.titulacion-ejemplo-btn a:hover .icon-certificado {
	filter: brightness(0) invert(1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Bloque Legal - Card con icono
   ───────────────────────────────────────────────────────────────────────────── */
.bloque-legal-card {
	display: flex;
	gap: 25px;
	background: #fff;
	border: 1px solid rgba(0, 51, 102, 0.12);
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}
.bloque-legal-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #003366 0%, #005348 100%);
}
.bloque-legal-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 83, 72, 0.08) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.bloque-legal-icon i {
	font-size: 22px;
	color: #003366;
}
.bloque-legal-content {
	flex: 1;
}
.bloque-legal-content p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 12px;
}
.bloque-legal-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 576px) {
	.bloque-legal-card {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
	}
	.bloque-legal-icon {
		width: 40px;
		height: 40px;
	}
	.bloque-legal-icon i {
		font-size: 18px;
	}
	.bloque-legal-content p {
		font-size: 13px;
	}
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ Acordeón - Card con icono
   ───────────────────────────────────────────────────────────────────────────── */
.faq-card-accordion {
	background: #fff;
	border: 1px solid rgba(0, 51, 102, 0.12);
	border-radius: 12px;
	margin-bottom: 50px;
	overflow: hidden;
	position: relative;
}
.faq-card-accordion::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #003366 0%, #005348 100%);
}
.faq-card-header {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 25px 20px 30px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.faq-card-header:hover {
	background: rgba(0, 51, 102, 0.03);
}
.faq-card-icon {
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 83, 72, 0.08) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-card-icon i {
	font-size: 22px;
	color: #003366;
}
.faq-card-title {
	flex: 1;
	font-size: 18px;
	font-weight: 600;
	color: #003366;
}
.faq-card-arrow {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}
.faq-card-arrow i {
	font-size: 14px;
	color: #003366;
}
.faq-card-header[aria-expanded="true"] .faq-card-arrow,
.faq-card-header:not(.collapsed) .faq-card-arrow {
	transform: rotate(180deg);
}
.faq-card-body {
	padding: 0 30px 30px 100px;
	background: rgba(0, 51, 102, 0.02);
	border-top: 1px solid rgba(0, 51, 102, 0.08);
}
.faq-card-body p {
	font-size: 15px;
	color: #555;
	line-height: 1.7;
	margin: 15px 0;
}
.faq-card-body p:first-child {
	margin-top: 20px;
}
.faq-subtitulo {
	font-size: 16px;
	font-weight: 700;
	color: #003366;
	margin: 25px 0 10px;
	padding-left: 15px;
	border-left: 3px solid #FF8200;
}

@media (max-width: 768px) {
	.faq-card-header {
		padding: 15px 20px 15px 25px;
		gap: 15px;
	}
	.faq-card-icon {
		width: 38px;
		height: 38px;
	}
	.faq-card-icon i {
		font-size: 15px;
	}
	.faq-card-title {
		font-size: 16px;
	}
	.faq-card-body {
		padding: 0 20px 25px 25px;
	}
	.faq-card-body p {
		font-size: 14px;
	}
	.faq-subtitulo {
		font-size: 15px;
	}
}

/* Responsive Grid */
@media (max-width: 992px) {
	.titulaciones-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 576px) {
	.titulaciones-grid {
		grid-template-columns: 1fr;
	}
	.titulacion-card {
		padding: 20px;
	}
	.titulacion-single {
		padding: 25px;
	}
	.titulacion-single-buttons {
		flex-direction: column;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   V6 - Banner Unimarconi centrado con logo inline
   ═══════════════════════════════════════════════════════════════════════════ */
.banner-unimarconi-v6 {
	position: relative;
	height: 260px;
	overflow: hidden;
	margin-bottom: 40px;
}
.banner-unimarconi-v6 .bg-unimarconi-v6 {
	width: 100%;
	height: 260px;
	object-fit: cover;
}
.banner-unimarconi-v6 .contenido-unimarconi-v6 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 83, 72, 0.20);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	padding: 20px 40px;
}
.banner-unimarconi-v6 h3 {
	font-size: 28px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin: 0 0 12px 0;
}
.banner-unimarconi-v6 .subtitulo-unimarconi-v6 {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 18px;
}
.banner-unimarconi-v6 .subtitulo-unimarconi-v6 span {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.4;
}
.banner-unimarconi-v6 .subtitulo-unimarconi-v6 img {
	height: 65px;
	width: auto;
}
.banner-unimarconi-v6 .botones-v3 {
	display: flex;
	gap: 15px;
}
.banner-unimarconi-v6 .btn-v3 {
	padding: 6px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.banner-unimarconi-v6 .btn-primary-v3 {
	background: #FF8200;
	color: #fff;
	border: 2px solid #FF8200;
}
.banner-unimarconi-v6 .btn-primary-v3:hover {
	background: #fff;
	color: #FF8200;
}
.banner-unimarconi-v6 .btn-secondary-v3 {
	background: #fff;
	color: #FF8200;
	border: 2px solid #FF8200;
}
.banner-unimarconi-v6 .btn-secondary-v3:hover {
	background: #FF8200;
	color: #fff;
}

/* V6 Unimarconi - Responsive Tablet */
@media (max-width: 992px) {
	.banner-unimarconi-v6 {
		height: 280px;
	}
	.banner-unimarconi-v6 .bg-unimarconi-v6 {
		height: 280px;
	}
	.banner-unimarconi-v6 h3 {
		font-size: 24px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 {
		gap: 20px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 span {
		font-size: 15px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 img {
		height: 55px;
	}
}

/* V6 Unimarconi - Responsive Mobile */
@media (max-width: 576px) {
	.banner-unimarconi-v6 {
		height: auto;
		min-height: 340px;
	}
	.banner-unimarconi-v6 .bg-unimarconi-v6 {
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.banner-unimarconi-v6 .contenido-unimarconi-v6 {
		position: relative;
		padding: 30px 20px;
	}
	.banner-unimarconi-v6 h3 {
		font-size: 20px;
		letter-spacing: 1px;
		margin-bottom: 15px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 20px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 span {
		font-size: 14px;
	}
	.banner-unimarconi-v6 .subtitulo-unimarconi-v6 img {
		height: 50px;
	}
	.banner-unimarconi-v6 .botones-v3 {
		flex-direction: column;
		gap: 10px;
	}
	.banner-unimarconi-v6 .btn-v3 {
		padding: 10px 20px;
		font-size: 13px;
		justify-content: center;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   V6 - EUNEIZ Mobile Layout
   ═══════════════════════════════════════════════════════════════════════════ */

/* Ocultar elementos mobile en desktop */
.logos-mobile-v6,
.texto-mobile-v6 {
	display: none;
}

/* V6 EUNEIZ - Actualización opacidad hover */
.banner-euneiz-v6 .contenido-hover-v3 {
	background: rgba(0, 51, 102, 0.82);
}
.banner-euneiz-v6 .contenido-hover-v3 p {
	font-weight: 300;
}

/* V6 EUNEIZ Mobile - Estilo como Unimarconi */
@media (max-width: 576px) {
	.banner-euneiz-v6 {
		height: auto;
		min-height: 380px;
		display: flex;
		flex-direction: column;
		background: rgba(0, 51, 102, 0.72);
	}
	.banner-euneiz-v6 > img.bg-v3 {
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.banner-euneiz-v6 .contenido-v3 {
		position: relative;
		height: auto;
		padding: 25px 20px 10px;
		opacity: 1;
		order: 1;
		background: transparent;
	}
	.banner-euneiz-v6 .contenido-v3 h3 {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.banner-euneiz-v6 .contenido-v3 .subtitulo-v3 {
		display: none;
	}
	.banner-euneiz-v6 .contenido-hover-v3 {
		opacity: 1;
		position: relative;
		height: auto;
		padding: 0 20px 25px;
		order: 4;
		background: transparent;
	}
	.banner-euneiz-v6 .contenido-hover-v3 p {
		display: none;
	}
	/* Texto mobile */
	.banner-euneiz-v6 .texto-mobile-v6 {
		display: block;
		padding: 0 20px;
		order: 2;
		text-align: center;
	}
	.banner-euneiz-v6 .texto-mobile-v6 p {
		font-size: 14px;
		color: #fff;
		margin: 0;
		line-height: 1.5;
		font-weight: 300;
	}
	.banner-euneiz-v6 .texto-mobile-v6 p strong {
		font-weight: 500;
	}
	.banner-euneiz-v6 .contenido-hover-v3 .botones-v3 {
		flex-direction: column;
		gap: 10px;
		margin-top: 0;
	}
	.banner-euneiz-v6 .btn-v3 {
		padding: 10px 20px;
		font-size: 13px;
		justify-content: center;
	}
	.banner-euneiz-v6:hover .contenido-v3 {
		opacity: 1;
	}
	/* Ocultar logos laterales en mobile */
	.banner-euneiz-v6 .logo-serca-v3,
	.banner-euneiz-v6 .logo-euneiz-v3 {
		display: none;
	}
	/* Logos en línea - mobile */
	.banner-euneiz-v6 .logos-mobile-v6 {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 30px;
		padding: 20px;
		order: 3;
		z-index: 5;
	}
	.banner-euneiz-v6 .logos-mobile-v6 img:first-child {
		height: 55px;
		width: auto;
	}
	.banner-euneiz-v6 .logos-mobile-v6 img:last-child {
		height: 55px;
		width: auto;
		filter: brightness(0) invert(1);
	}
}
