/**
 * Nexo Base — Banner de consentimento.
 */

.nexo-consent-banner,
.nexo-consent-banner *,
.nexo-consent-banner *::before,
.nexo-consent-banner *::after {
	box-sizing: border-box;
}

.nexo-consent-banner[hidden] {
	display: none !important;
}

.nexo-consent-banner {
	position: fixed;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 99999;
	color: #ffffff;
	pointer-events: none;
}

.nexo-consent-banner__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 22px 58px 22px 24px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 8px;
	background: #17202a;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
	pointer-events: auto;
}

.nexo-consent-banner__content {
	min-width: 0;
}

.nexo-consent-banner__title {
	margin: 0 0 7px;
	color: inherit;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.nexo-consent-banner__description {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 14px;
	line-height: 1.55;
}

.nexo-consent-banner__privacy-link {
	display: inline-block;
	margin-left: 5px;
	color: #ffffff;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nexo-consent-banner__privacy-link:hover,
.nexo-consent-banner__privacy-link:focus-visible {
	color: #ffb184;
}

.nexo-consent-banner__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.nexo-consent-banner__button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 4px;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
}

.nexo-consent-banner__button--accept {
    border-color: #c94a00;
	background: #c94a00;
	color: #ffffff;
}

.nexo-consent-banner__button--accept:hover,
.nexo-consent-banner__button--accept:focus-visible {
    border-color: #a93a00;
	background: #a93a00;
	color: #ffffff;
}

.nexo-consent-banner__button--reject {
	border-color: rgba(255, 255, 255, 0.48);
	background: transparent;
	color: #ffffff;
}

.nexo-consent-banner__button--reject:hover,
.nexo-consent-banner__button--reject:focus-visible {
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.nexo-consent-banner__button:focus-visible,
.nexo-consent-banner__close:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 3px;
}

.nexo-consent-banner__close {
	position: absolute;
	top: 10px;
	right: 12px;
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: rgba(255, 255, 255, 0.82);
	font: inherit;
	font-size: 27px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.nexo-consent-banner__close:hover,
.nexo-consent-banner__close:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

@media (max-width: 780px) {
	.nexo-consent-banner {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

	.nexo-consent-banner__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
		padding: 22px 48px 20px 20px;
	}

	.nexo-consent-banner__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 520px) {
	.nexo-consent-banner__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.nexo-consent-banner__button {
		width: 100%;
	}

	.nexo-consent-banner__description {
		font-size: 13px;
	}
}