/**
 * Banner de consentimento de cookies — cara da Baly.
 * Vars do tema com fallback hardcoded: o consentimento não pode depender do tema.
 */
.baly-consent {
	position: fixed;
	left: 50%;
	bottom: 16px;
	transform: translateX(-50%) translateY(12px);
	z-index: 99990;
	width: min(680px, calc(100vw - 24px));
	background: var(--baly-preto, #000);
	color: var(--baly-branco, #fff);
	border-radius: var(--raio-lg, 16px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .32);
	opacity: 0;
	transition: opacity .28s ease, transform .28s cubic-bezier(.4, 0, .2, 1);
	font-family: var(--fonte, 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif);
}
.baly-consent[hidden] { display: none; }
.baly-consent.is-visivel { opacity: 1; transform: translateX(-50%) translateY(0); }

.baly-consent__inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 20px 22px;
}
@media (min-width: 640px) {
	.baly-consent__inner { flex-direction: row; align-items: center; gap: 20px; }
}

.baly-consent__txt {
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .78);
}
.baly-consent__txt strong {
	display: block;
	margin-bottom: 3px;
	font-size: 14px;
	font-weight: 800;
	color: var(--baly-branco, #fff);
}
.baly-consent__txt a {
	color: var(--baly-amarelo, #FFD400);
	text-decoration: underline;
	text-underline-offset: 2px;
	white-space: nowrap;
}

/* Ações: "recusar" e "aceitar" com o MESMO peso — ANPD exige que recusar seja tão
   fácil quanto aceitar. O amarelo dá só uma leve ênfase à ação positiva. */
.baly-consent__acoes {
	display: flex;
	gap: 10px;
	flex: none;
}
@media (max-width: 639px) {
	.baly-consent__acoes { width: 100%; }
	.baly-consent__acoes .baly-consent__btn { flex: 1; }
}

.baly-consent__btn {
	appearance: none;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: var(--raio-sm, 8px);
	padding: 12px 22px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	white-space: nowrap;
	transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.baly-consent__btn--ok {
	background: var(--baly-amarelo, #FFD400);
	color: var(--baly-preto, #000);
}
.baly-consent__btn--ok:hover { background: #ffdd33; }
.baly-consent__btn--rec {
	background: transparent;
	color: rgba(255, 255, 255, .82);
	border-color: rgba(255, 255, 255, .3);
}
.baly-consent__btn--rec:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.baly-consent__btn:focus-visible {
	outline: 2px solid var(--baly-amarelo, #FFD400);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.baly-consent { transition: opacity .01s; }
}
