/* =========================================================
   CARD DESTACADA
   Diseño reutilizable
   Desktop / Tablet / Móvil
   ========================================================= */

.card-destacada {
	position: relative;
	background:
		linear-gradient(
			135deg,
			#012f52 0%,
			#013762 55%,
			#024b72 100%
		);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow:
		0 .5rem 1.5rem rgba(0, 0, 0, .12),
		0 1rem 3rem rgba(0, 0, 0, .08);
	transition:
		transform .3s ease,
		box-shadow .3s ease;
}


/* =========================================================
   DETALLE LATERAL
   Tonos azules en línea con el fondo
   ========================================================= */

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#4da3d9 0%,
		#2f80b7 50%,
		#17628f 100%
	);
	z-index: 3;
}*/

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#9aaab4 0%,
		#607985 50%,
		#83949e 100%
	);
	box-shadow: 1px 0 0 rgba(255, 255, 255, .12);
	z-index: 3;
}*/

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#198754 0%,
		#ffffff 45%,
		#d8f3e5 55%,
		#198754 100%
	);
	z-index: 3;
}*/

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#001827 0%,
		#002b40 32%,
		#dce5e9 50%,
		#002b40 68%,
		#001827 100%
	);
	z-index: 3;
}*/

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#ffffff 0%,
		#dce8ee 18%,
		#52778b 35%,
		#00243a 50%,
		#52778b 65%,
		#dce8ee 82%,
		#ffffff 100%
	);
	z-index: 3;
}*/

/*.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#00243a 0%,
		#31566b 12%,
		#ffffff 25%,
		#ffffff 35%,
		#31566b 48%,
		#00243a 55%,
		#31566b 62%,
		#ffffff 75%,
		#ffffff 85%,
		#31566b 94%,
		#00243a 100%
	);
	z-index: 3;
}*/

.card-destacada::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: linear-gradient(
		180deg,
		#001c2e 0%,
		#294b5f 12%,
		#9eabb2 22%,
		#d8e0e4 30%,
		#9eabb2 38%,
		#294b5f 48%,
		#001c2e 55%,
		#294b5f 62%,
		#9eabb2 72%,
		#d8e0e4 80%,
		#9eabb2 88%,
		#294b5f 96%,
		#001c2e 100%
	);
	z-index: 3;
}


/* =========================================================
   HOVER
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

	.card-destacada:hover {
		transform: translateY(-6px);
		box-shadow:
			0 1rem 2rem rgba(0, 0, 0, .16),
			0 1.5rem 4rem rgba(0, 0, 0, .10);
	}

	.card-destacada:hover .card-destacada-icono {
		transform: translateX(5px);
		background-color: #20a365;
	}

	.card-destacada:hover .card-destacada-icono-fondo {
		transform: rotate(-5deg) scale(1.05);
		color: rgba(91, 216, 154, .14);
	}

}


/* =========================================================
   ICONO AMBIENTAL DE FONDO
   ========================================================= */

.card-destacada-icono-fondo {
	position: absolute;
	right: -5px;
	bottom: -25px;
	z-index: 1;
	color: rgba(91, 216, 154, .10);
	font-size: 12rem;
	line-height: 1;
	pointer-events: none;
	transform: rotate(-10deg);
	transition:
		transform .4s ease,
		color .4s ease;
}


/* =========================================================
   CONTENIDO GENERAL
   ========================================================= */

.card-destacada .card-body {
	position: relative;
	z-index: 2;
	padding: 2.25rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 390px;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.card-destacada-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 3rem;
}


/* Indicador */

.card-destacada-indicador {
	color: rgba(255, 255, 255, .80);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
}


/* Badge */

.card-destacada-top .badge {
	background-color: #198754;
	color: #ffffff;
	padding: .5rem .85rem;
	border-radius: 50rem;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .02em;
}


/* =========================================================
   CATEGORÍA
   ========================================================= */

.card-destacada-categoria {
	margin-bottom: .75rem;
	color: #8fd0ef;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.card-destacada-titulo {
	max-width: 650px;
	margin-bottom: 1.25rem;
	color: #ffffff;
	font-size: clamp(2.2rem, 4vw, 3.4rem);
	font-weight: 650;
	line-height: .98;
	letter-spacing: -.03em;
}

.card-destacada-titulo span {
	display: block;
	color: #8fd0b5;
}


/* =========================================================
   TEXTO
   ========================================================= */

.card-destacada-texto {
	max-width: 620px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, .88);
	font-size: 1rem;
	line-height: 1.7;
}


/* =========================================================
   PIE DE CARTA
   ========================================================= */

.card-destacada-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, .28);
}


/* Enlace */

.card-destacada-enlace {
	color: #ffffff;
	font-size: .85rem;
	font-weight: 600;
}


/* =========================================================
   ICONO DE ACCIÓN
   ========================================================= */

.card-destacada-icono {
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #198754;
	color: #ffffff;
	transition:
		transform .3s ease,
		background-color .3s ease;
}


/* =========================================================
   TABLET
   768px - 991.98px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

	.card-destacada .card-body {
		padding: 1.75rem;
		min-height: 360px;
	}

	.card-destacada-top {
		margin-bottom: 2.25rem;
	}

	.card-destacada-indicador {
		font-size: .75rem;
	}

	.card-destacada-titulo {
		font-size: 2.5rem;
	}

	.card-destacada-texto {
		font-size: .95rem;
		line-height: 1.6;
	}

	.card-destacada-icono-fondo {
		right: -5px;
		bottom: -25px;
		font-size: 9rem;
	}

	.card-destacada-footer {
		margin-top: 2rem;
	}

	.card-destacada-icono {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

}


/* =========================================================
   MÓVIL
   Hasta 767.98px
   ========================================================= */

@media (max-width: 767.98px) {

	.card-destacada {
		border-radius: 1rem;
	}

	.card-destacada .card-body {
		padding: 1.5rem;
		min-height: 340px;
	}

	.card-destacada-top {
		margin-bottom: 2rem;
	}

	.card-destacada-indicador {
		font-size: .75rem;
	}

	.card-destacada-titulo {
		font-size: 2.25rem;
		line-height: 1;
	}

	.card-destacada-texto {
		font-size: .95rem;
		line-height: 1.6;
	}

	.card-destacada-footer {
		margin-top: 2rem;
		padding-top: 1rem;
	}

	.card-destacada-icono {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.card-destacada-icono-fondo {
		right: -5px;
		bottom: -25px;
		font-size: 8rem;
	}

}


/* =========================================================
   MÓVIL PEQUEÑO
   Hasta 575.98px
   ========================================================= */

@media (max-width: 575.98px) {

	.card-destacada .card-body {
		padding: 1.35rem;
		min-height: 320px;
	}

	.card-destacada-top {
		margin-bottom: 1.75rem;
	}

	.card-destacada-indicador {
		font-size: .7rem;
	}

	.card-destacada-titulo {
		font-size: 2rem;
	}

	.card-destacada-texto {
		font-size: .9rem;
		line-height: 1.6;
	}

	.card-destacada-icono-fondo {
		right: -5px;
		bottom: -25px;
		font-size: 7rem;
	}

	.card-destacada::before {
		width: 4px;
	}

	.card-destacada-icono {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

}