.emy-about-section {
	position: relative;
	padding: 120px 0;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
		radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.06), transparent 30%),
		linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
	overflow: hidden;
}

.emy-about-bg-image {
	position: absolute;
	inset: 0;
	background-image: url('../img/logo_emy_fondo.png');
	background-size: auto;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.04);
	z-index: 0;
	opacity: 0.42;
	filter: saturate(1.2) contrast(1.08);
}

[data-theme="dark"] .emy-about-bg-image {
	opacity: 0.58;
	filter:
		brightness(1.38)
		saturate(1.65)
		contrast(1.22)
		drop-shadow(0 0 38px rgba(34, 211, 238, 0.22));
}

.emy-about-bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.14), transparent 34%),
		radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.10), transparent 34%),
		linear-gradient(180deg, rgba(248, 250, 252, 0.72) 0%, rgba(226, 232, 240, 0.80) 100%);
}

[data-theme="dark"] .emy-about-bg-overlay {
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.10), transparent 36%),
		radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.08), transparent 36%),
		linear-gradient(180deg, rgba(7, 20, 39, 0.34) 0%, rgba(15, 28, 53, 0.48) 100%);
}

[data-theme="dark"] .emy-about-bg-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at center, rgba(34, 211, 238, 0.18), transparent 42%);
	pointer-events: none;
}

[data-theme="dark"] .emy-about-section {
	background:
		radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 32%),
		radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.14), transparent 32%),
		linear-gradient(180deg, #071427 0%, #0f1c35 55%, #132238 100%);
}

.emy-about-grid-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image:
		linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

[data-theme="dark"] .emy-about-grid-bg {
	background-image:
		linear-gradient(rgba(59, 130, 246, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(59, 130, 246, 0.018) 1px, transparent 1px);
}

[data-theme="dark"] .emy-about-section::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(circle at center, rgba(59, 130, 246, 0.16), transparent 30%),
		radial-gradient(circle at center, rgba(34, 211, 238, 0.10), transparent 48%);
	pointer-events: none;
}

.emy-about-container {
	position: relative;
	z-index: 3;
}

.emy-about-header {
	margin-bottom: 80px;
}

.emy-about-badge {
	display: inline-block;
	color: #0284c7;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 18px;
}

[data-theme="dark"] .emy-about-badge {
	color: #22d3ee;
}

.emy-about-title {
	font-size: clamp(2.2rem, 4vw, 4.5rem);
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 18px;
}

[data-theme="dark"] .emy-about-title {
	color: #ffffff;
}

.emy-about-title span {
	background: var(--emy-gradient-brand);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.emy-about-divider {
	width: 90px;
	height: 4px;
	margin: 0 auto;
	border-radius: 999px;
	background: var(--emy-gradient-line);
}

.emy-about-main {
	margin-bottom: 90px;
}

.emy-about-subtitle {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 24px;
	line-height: 1.3;
}

[data-theme="dark"] .emy-about-subtitle {
	color: #ffffff;
}

.emy-about-text {
	color: rgba(15, 23, 42, 0.78);
	font-size: 1.05rem;
	line-height: 1.9;
	margin-bottom: 20px;
}

[data-theme="dark"] .emy-about-text {
	color: rgba(226, 232, 240, 0.82);
}

.emy-about-text strong {
	color: #0f172a;
}

[data-theme="dark"] .emy-about-text strong {
	color: #ffffff;
}

.emy-stat-card {
	height: 100%;
	padding: 32px 18px;
	border-radius: 24px;
	text-align: center;
	backdrop-filter: blur(14px);
	border: 1px solid rgba(15, 23, 42, 0.08);
	transition: all 0.3s ease;
}

[data-theme="dark"] .emy-stat-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.emy-stat-card.primary {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(34, 211, 238, 0.09));
}

.emy-stat-card.secondary {
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.11), rgba(37, 99, 235, 0.09));
}

.emy-stat-card.accent {
	background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(37, 99, 235, 0.09));
}

.emy-stat-card.primary-soft {
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(139, 92, 246, 0.09));
}

[data-theme="dark"] .emy-stat-card.primary {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 211, 238, 0.12));
}

[data-theme="dark"] .emy-stat-card.secondary {
	background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(37, 99, 235, 0.12));
}

[data-theme="dark"] .emy-stat-card.accent {
	background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(37, 99, 235, 0.12));
}

[data-theme="dark"] .emy-stat-card.primary-soft {
	background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(168, 85, 247, 0.12));
}

.emy-stat-value {
	font-size: 1.45rem;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
	margin-bottom: 10px;
}

[data-theme="dark"] .emy-stat-value {
	color: #ffffff;
}

.emy-stat-label {
	font-size: 0.95rem;
	color: rgba(15, 23, 42, 0.72);
}

[data-theme="dark"] .emy-stat-label {
	color: rgba(226, 232, 240, 0.78);
}

.emy-value-card {
	padding: 34px 28px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(148, 163, 184, 0.12);
	backdrop-filter: blur(16px);
	transition: all 0.3s ease;
}

[data-theme="dark"] .emy-value-card {
	background: rgba(30, 41, 59, 0.58);
}

.emy-stat-icon,
.emy-value-icon {
	width: 72px;
	height: 72px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #ffffff;
	background: var(--emy-gradient-dropdown-active);
	box-shadow: 0 18px 35px var(--emy-glow-blue);
	margin-bottom: 24px;
}

.emy-value-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 14px;
}

[data-theme="dark"] .emy-value-title {
	color: #ffffff;
}

.emy-value-text {
	color: rgba(15, 23, 42, 0.75);
	line-height: 1.8;
	font-size: 0.98rem;
	margin: 0;
}

[data-theme="dark"] .emy-value-text {
	color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 991px) {
	.emy-about-section {
		padding: 90px 0;
	}

	.emy-about-header {
		margin-bottom: 60px;
	}

	.emy-about-main {
		margin-bottom: 60px;
	}

	.emy-about-subtitle {
		font-size: 1.7rem;
	}
}

@media (max-width: 767px) {
	.emy-about-title {
		font-size: 2.3rem;
	}

	.emy-about-subtitle {
		font-size: 1.45rem;
	}

	.emy-stat-value {
		font-size: 1.25rem;
	}

	.emy-value-card {
		padding: 28px 22px;
	}
}

.emy-about-slogan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 22px;
	padding: 10px 22px;
	border-radius: 999px;
	color: #0284c7;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: rgba(37, 99, 235, 0.08);
	border: 1px solid rgba(37, 99, 235, 0.14);
	box-shadow: 0 14px 32px rgba(37, 99, 235, 0.10);
}

[data-theme="dark"] .emy-about-slogan {
	color: #22d3ee;
	background: rgba(34, 211, 238, 0.08);
	border: 1px solid rgba(34, 211, 238, 0.16);
	box-shadow: 0 14px 32px rgba(34, 211, 238, 0.10);
}

/* ========= CINEMATIC TEXT FLOW ========= */
.emy-cinematic-text {
	opacity: 0;
	transform: translateY(42px) scale(0.985);
	filter: blur(14px);
	letter-spacing: 0.08em;
	text-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.emy-reveal-item {
	opacity: 0;
	transform: translateY(38px);
	filter: blur(12px);
	transition:
		opacity 1.4s cubic-bezier(0.19, 1, 0.22, 1),
		transform 1.6s cubic-bezier(0.19, 1, 0.22, 1),
		filter 1.6s cubic-bezier(0.19, 1, 0.22, 1),
		letter-spacing 1.4s ease;
	transition-delay: var(--emy-delay, 0s);
	will-change: opacity, transform, filter;
}

.emy-reveal-group.emy-reveal-active .emy-reveal-item {
	opacity: 1;
	transform: translateY(0) scale(1);
	filter: blur(0);
	letter-spacing: normal;
}

/* Fondo ligeramente vivo */
.emy-about-section::before {
	content: '';
	position: absolute;
	inset: -10%;
	z-index: 1;
	background:
		radial-gradient(circle at center, rgba(37, 99, 235, 0.08), transparent 60%);
	opacity: 0;
	transform: scale(1.25);
	transition:
		opacity 2.8s ease,
		transform 3.8s ease;
	pointer-events: none;
}

.emy-about-section.emy-section-visible::before {
	opacity: 1;
	transform: scale(1);
}

/* Tarjetas más teatrales */
.emy-value-card,
.emy-stat-card {
	transform: translateY(50px) scale(0.96);
}

.emy-reveal-group.emy-reveal-active .emy-value-card,
.emy-reveal-group.emy-reveal-active .emy-stat-card {
	transform: translateY(0) scale(1);
}

html:not([data-theme="dark"]) .emy-reveal-group.emy-reveal-active .emy-stat-card:hover {
	transform: translateY(-8px) scale(1.01);
	border-color: rgba(37, 99, 235, 0.58);
	box-shadow:
		0 22px 48px rgba(37, 99, 235, 0.16),
		0 0 0 4px rgba(6, 182, 212, 0.18);
}

html:not([data-theme="dark"]) .emy-reveal-group.emy-reveal-active .emy-value-card:hover {
	transform: translateY(-10px) scale(1.01);
	border-color: rgba(37, 99, 235, 0.58);
	box-shadow:
		0 24px 52px rgba(37, 99, 235, 0.16),
		0 0 0 4px rgba(6, 182, 212, 0.18);
	background: rgba(255, 255, 255, 0.86);
}

[data-theme="dark"] .emy-reveal-group.emy-reveal-active .emy-stat-card:hover {
	transform: translateY(-8px) scale(1.01);
	border-color: rgba(34, 211, 238, 0.30);
	box-shadow:
		0 22px 48px rgba(0, 0, 0, 0.22),
		0 0 0 3px rgba(34, 211, 238, 0.12);
}

[data-theme="dark"] .emy-reveal-group.emy-reveal-active .emy-value-card:hover {
	transform: translateY(-10px) scale(1.01);
	border-color: rgba(34, 211, 238, 0.30);
	background: rgba(30, 41, 59, 0.78);
	box-shadow:
		0 24px 52px rgba(0, 0, 0, 0.24),
		0 0 0 3px rgba(34, 211, 238, 0.12);
}