/* Cookie consent banner — Interlavage Consultora */

.cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1em;
	background: #1c1c1c;
	color: #f2f2f2;
	padding: 1em 1.5em;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
	font-size: 0.95em;
	line-height: 1.5;
}

.cookie-consent-banner p {
	margin: 0;
	max-width: 60em;
	flex: 1 1 20em;
}

.cookie-consent-banner a {
	color: #ffffff;
	text-decoration: underline;
}

.cookie-consent-banner a:hover {
	text-decoration: none;
}

.cookie-consent-accept {
	flex: 0 0 auto;
	background: #ffffff;
	color: #1c1c1c;
	border: 0;
	border-radius: 4px;
	padding: 0.65em 1.5em;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
}

.cookie-consent-accept:hover {
	background: #e0e0e0;
}

@media screen and (max-width: 736px) {

	.cookie-consent-banner {
		justify-content: flex-start;
		padding: 1em;
	}

	.cookie-consent-accept {
		width: 100%;
	}

}
