@charset "utf-8";
/* Estilos antiguos del aviso (compat) - sin uso con el nuevo banner, se mantienen por seguridad */
.container-fluid-politicacookis { display:none; }

/* Banner de cookies moderno */
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2147483645; /* por encima de casi todo */
	padding: 12px;
}
.cookie-consent.is-hidden { opacity: 0; transition: opacity .2s ease; }

.cookie-consent__inner {
	max-width: 980px;
	margin: 0 auto;
	background: #ffffff;
	color: #0a2230;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08);
	display: flex;
	gap: 16px;
	align-items: center;
	padding: 14px 16px;
}

.cookie-consent__text {
	font-family: 'Nunito', sans-serif;
	line-height: 1.45;
	font-size: 14px;
}
.cookie-consent__text a { color: #095668; text-decoration: underline; }
.cookie-consent__text a:hover { color: #23C5EC; }

.cookie-consent__actions {
	margin-left: auto;
	display: flex;
	gap: 8px;
}

.cookie-consent .btn {
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 14px;
}
.cookie-consent .btn-primary { background-color: #0000cc; border-color: #0000cc; color: #fff; }
.cookie-consent .btn-default { background-color: #f1f5f9; border-color: #e2e8f0; color: #0a2230; }
.cookie-consent .btn-primary:hover { background-color: #0a0aa8; border-color: #0a0aa8; }
.cookie-consent .btn-default:hover { background-color: #e2e8f0; }

@media (max-width: 575px) {
	.cookie-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.cookie-consent__actions { margin-left: 0; justify-content: stretch; }
	.cookie-consent .btn { width: 100%; }
}