/* ASCENKA — banner consentimiento privacidad/cookies */
.asc-consent-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	background: rgba(40, 43, 62, 0.98);
	color: #fff;
	border-top: 1px solid rgba(255,255,255,.14);
	box-shadow: 0 -12px 40px rgba(0,0,0,.28);
	padding: 1.05rem 1rem;
}
.asc-consent-banner[hidden],
.asc-consent-rejected[hidden] {
	display: none !important;
}
.asc-consent-inner {
	width: min(100%, 980px);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}
.asc-consent-text {
	flex: 1 1 300px;
}
.asc-consent-title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}
.asc-consent-text p {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: rgba(255,255,255,.92);
}
.asc-consent-text a {
	color: #fff;
	font-weight: 800;
	text-decoration: underline;
}
.asc-consent-actions {
	display: flex;
	gap: 0.55rem;
	flex: 0 0 auto;
}
.asc-btn {
	appearance: none;
	border: 1.5px solid transparent;
	border-radius: 999px;
	padding: 0.65rem 1.15rem;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 800;
	cursor: pointer;
}
.asc-btn-primary {
	background: #022c8d;
	color: #fff;
}
.asc-btn-primary:hover { filter: brightness(1.08); }
.asc-btn-ghost {
	background: transparent;
	border-color: rgba(255,255,255,.4);
	color: #fff;
}
.asc-btn-ghost:hover { background: rgba(255,255,255,.08); }
.asc-consent-rejected {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 9999;
	max-width: 560px;
	margin: 0 auto;
	background: #FEF3C7;
	color: #78350F;
	border: 1px solid #F6DE8A;
	border-radius: 14px;
	padding: 0.95rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.45;
	box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.asc-linkish {
	margin-left: 0.35rem;
	font: inherit;
	font-weight: 800;
	border: 0;
	background: transparent;
	color: #022c8d;
	cursor: pointer;
	text-decoration: underline;
}
body.asc-consent-pending .asc-consent-lock,
body.asc-consent-rejected .asc-consent-lock {
	opacity: 0.55;
	pointer-events: none;
	filter: grayscale(0.15);
}
body.asc-consent-pending .asc-consent-gate-msg,
body.asc-consent-rejected .asc-consent-gate-msg {
	display: block;
}
.asc-consent-gate-msg {
	display: none;
	margin: 0 0 1rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	background: #FEF3C7;
	border: 1px solid #F6DE8A;
	color: #78350F;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.45;
}
@media (max-width: 640px) {
	.asc-consent-actions { width: 100%; }
	.asc-btn { flex: 1; text-align: center; }
}
