/* A la Cucha Intelligence — banner de consentimiento (paleta de marca). */
.ac-consent {
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	z-index: 99999;
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	gap: 14px;
	align-items: center;
	flex-wrap: wrap;
	background: #fff;
	border: 2px solid #066248;
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: 0 8px 30px rgba( 0, 0, 0, 0.18 );
	font-family: 'Figtree', sans-serif;
}

.ac-consent[hidden] {
	display: none;
}

.ac-consent__txt {
	flex: 1;
	min-width: 220px;
	color: #066248;
	font-size: 0.95rem;
	line-height: 1.35;
}

.ac-consent__btns {
	display: flex;
	gap: 8px;
}

.ac-consent__btn {
	border: 0;
	border-radius: 999px;
	padding: 9px 18px;
	font-weight: 700;
	cursor: pointer;
	font-family: 'Figtree', sans-serif;
}

.ac-consent__accept {
	background: #f4c542;
	color: #066248;
}

.ac-consent__reject {
	background: #e7eee9;
	color: #066248;
}

@media ( max-width: 600px ) {
	.ac-consent {
		flex-direction: column;
		align-items: stretch;
	}
	.ac-consent__btns {
		justify-content: flex-end;
	}
}
