/* Banner de consentimento de cookies (RGPD). Fixo no fundo, fora do fluxo normal do
   documento (position:fixed) - nao empurra o conteudo da pagina, logo nao contribui para CLS. */
#cookie-consent {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: #222;
	color: #fff;
	padding: 16px 20px;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: 0 -2px 10px rgba(0,0,0,.25);
}
#cookie-consent .cookie-consent__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}
#cookie-consent .cookie-consent__text {
	flex: 1 1 320px;
	margin: 0;
}
#cookie-consent .cookie-consent__text a {
	color: #A46310;
	text-decoration: underline;
}
#cookie-consent .cookie-consent__actions {
	flex: 0 0 auto;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
#cookie-consent button {
	cursor: pointer;
	border: none;
	border-radius: 4px;
	padding: 10px 18px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
#cookie-consent .cookie-consent__accept {
	background: #A46310;
	color: #fff;
}
#cookie-consent .cookie-consent__reject {
	background: transparent;
	color: #fff;
	border: 1px solid #999;
}
@media (max-width: 600px) {
	#cookie-consent .cookie-consent__actions { width: 100%; }
	#cookie-consent .cookie-consent__actions button { flex: 1 1 auto; }
}
