/* Estilos de la página Insights — ruta fija para despliegue por SFTP */

.enfoque-seccion {
	margin: 0;
}

.enfoque-tarjeta {
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.enfoque-tarjeta:hover {
	box-shadow: 0 8px 28px rgba(229, 57, 53, 0.12);
	border-color: rgba(229, 57, 53, 0.2);
}

.enfoque-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--brand-accent-color), var(--hover-color));
	color: white;
	padding: 8px 18px;
	border-radius: 25px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.enfoque-badge-podcast {
	background: linear-gradient(135deg, #1db954, #1ed760);
	box-shadow: 0 4px 12px rgba(29, 185, 84, 0.35);
}

.enfoque-seccion-titulo {
	color: var(--text-color);
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-align: left;
}

.enfoque-titulo-deco {
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--brand-accent-color), var(--hover-color));
	border-radius: 2px;
	margin-bottom: 1.5rem;
	position: relative;
}

.enfoque-titulo-deco::after {
	content: "";
	position: absolute;
	left: 90px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: var(--brand-accent-color);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(229, 57, 53, 0.4);
}

/* Webinar */
.enfoque-tarjeta-webinar {
	padding-top: 28px;
	padding-bottom: 28px;
}

.enfoque-webinar-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.enfoque-tarjeta-webinar .enfoque-badge {
	margin-bottom: 0;
	padding: 6px 14px;
	font-size: 0.72rem;
}

.enfoque-eyebrow {
	color: var(--secondary-text-color);
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.enfoque-webinar-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	margin-top: 1.25rem;
}

.enfoque-webinar-copy {
	flex: 1 1 280px;
	min-width: 0;
}

.enfoque-webinar-nombre {
	color: var(--text-color);
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 700;
	line-height: 1.35;
	margin: 0;
	text-align: left;
}

.enfoque-webinar-desc {
	color: var(--secondary-text-color);
	line-height: 1.55;
	margin: 0.65rem 0 0;
	font-size: 0.98rem;
}

.enfoque-enlaces {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	flex: 0 0 auto;
}

.enfoque-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.1rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.enfoque-btn-primary {
	background: linear-gradient(135deg, var(--brand-accent-color), var(--hover-color));
	color: #fff;
	box-shadow: 0 4px 14px rgba(229, 57, 53, 0.28);
}

.enfoque-btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
	color: #fff;
}

.enfoque-btn-secondary {
	background: rgba(229, 57, 53, 0.06);
	color: var(--brand-accent-color);
	border: 1px solid rgba(229, 57, 53, 0.18);
}

.enfoque-btn-secondary:hover {
	background: rgba(229, 57, 53, 0.1);
	transform: translateY(-1px);
	color: var(--brand-accent-color);
}

.enfoque-enlace {
	display: inline-block;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--brand-accent-color);
	transition: color 0.2s ease, transform 0.2s ease;
}

.enfoque-enlace:hover {
	color: var(--hover-color);
	text-decoration: underline;
	transform: translateX(4px);
}

.enfoque-embed-wrapper {
	position: relative;
	width: 100%;
	border-radius: 25px;
	overflow: hidden;
	background: #111;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.enfoque-embed-video {
	aspect-ratio: 16 / 9;
}

.enfoque-embed-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.enfoque-embed-podcast {
	min-height: 352px;
}

.enfoque-embed-podcast iframe {
	display: block;
	width: 100%;
	height: 352px;
	border: 0;
}

@media (max-width: 768px) {
	.enfoque-seccion-titulo {
		font-size: 1.5rem;
	}

	.enfoque-tarjeta-webinar {
		padding-top: 22px;
		padding-bottom: 22px;
	}

	.enfoque-webinar-footer {
		flex-direction: column;
		align-items: stretch;
	}

	.enfoque-enlaces {
		flex-direction: column;
		width: 100%;
	}

	.enfoque-btn {
		width: 100%;
	}

	.enfoque-embed-wrapper {
		border-radius: 16px;
	}
}
