/* Estilos para el Widget Reinpe Tarjetas de Contenido */

.reinpe-content-cards-wrapper {
	display: grid;
	gap: 24px;
	width: 100%;
	box-sizing: border-box;
}

.reinpe-content-card {
	background-color: #0C1830;
	border-radius: 20px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.reinpe-content-card:hover {
	transform: translateY(-4px);
}

/* Círculos decorativos de fondo */
.reinpe-content-card::before {
	content: '';
	position: absolute;
	bottom: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	pointer-events: none;
	transition: background 0.3s ease;
}

.reinpe-content-card::after {
	content: '';
	position: absolute;
	bottom: -80px;
	right: -20px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	pointer-events: none;
	transition: background 0.3s ease;
}

.reinpe-content-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: all 0.3s ease;
	flex-shrink: 0;
	color: #ffffff;
}

.reinpe-content-card-icon svg {
	width: 24px;
	height: 24px;
	max-width: 100%;
	max-height: 100%;
	stroke: #ffffff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.reinpe-content-card-icon i {
	font-size: 24px;
	color: #ffffff;
}

.reinpe-content-card-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 12px;
}

.reinpe-content-card-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.3;
}

.reinpe-content-card-title span {
	color: #32BABE;
	transition: color 0.3s ease;
}

.reinpe-content-card-divider {
	width: 40px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.2);
	margin-bottom: 20px;
	border-radius: 2px;
	transition: background-color 0.3s ease;
}

.reinpe-content-card-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.75;
}

.reinpe-content-card-text p {
	margin-bottom: 12px;
}

.reinpe-content-card-text p:last-child {
	margin-bottom: 0;
}
