html {
	scroll-behavior: smooth;
}

.body-content-container {
	width: 100%;
	flex: 1;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 80px);
}

.body-content {
	width: 100%;
}

.fundo-body {
	background:
		radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 30%),
		radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.08), transparent 26%),
		linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
	min-height: 100vh;
}

.body-content-container,
.menu-topo,
.site-footer {
	position: relative;
	z-index: 1;
}

.site-footer {
	width: 100%;
	padding: 34px 0 26px;
	background: #0f172a;
	color: #ffffff;
	box-shadow: 0 -14px 44px rgba(15, 23, 42, 0.20);
}

.site-footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer-brand a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer-logo {
	display: block;
	height: 54px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
}

.site-footer-nav,
.site-footer-legal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.site-footer-nav a,
.site-footer-legal a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.site-footer-nav a:hover,
.site-footer-legal a:hover {
	color: #ffffff;
	text-decoration: none;
}

.site-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
	padding-top: 20px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 13px;
	font-weight: 600;
}

.site-footer-legal {
	gap: 10px;
}

.site-footer-legal span {
	opacity: 0.42;
}

.cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: none;
	animation: fadeCookie 0.35s ease;
}

.cookie-consent-content {
	max-width: 980px;
	margin: auto;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 28px;
	padding: 22px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
	border: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	align-items: center;
	gap: 18px;
	backdrop-filter: blur(16px);
}

.cookie-consent-icon {
	width: 72px;
	height: 72px;
	border-radius: 24px;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	flex-shrink: 0;
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.cookie-consent-text {
	flex: 1;
}

.cookie-consent-text h3 {
	font-size: 20px;
	font-weight: 900;
	color: #0f172a;
	margin-bottom: 8px;
}

.cookie-consent-text p {
	font-size: 14px;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 0;
}

.cookie-policy-link {
	color: #2563eb;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
	margin-left: 4px;
	transition: all 0.2s ease;
}

.cookie-policy-link:hover {
	text-decoration: underline;
	color: #1d4ed8;
}

.cookie-consent-actions {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cookie-btn-accept {
	border: none;
	background: linear-gradient(135deg, #2563eb, #06b6d4);
	color: #ffffff;
	padding: 14px 24px;
	border-radius: 16px;
	font-size: 15px;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.25s ease;
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
	white-space: nowrap;
}

.cookie-btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(37, 99, 235, 0.28);
	color: #ffffff;
}

@keyframes fadeCookie {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 28px 0 22px;
	}

	.site-footer-main,
	.site-footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.site-footer-logo {
		height: 46px;
		max-width: 240px;
	}

	.site-footer-nav,
	.site-footer-legal {
		gap: 12px;
	}

	.site-footer-nav a,
	.site-footer-legal a {
		font-size: 13px;
	}

	.cookie-consent {
		left: 12px;
		right: 12px;
		bottom: 12px;
	}

	.cookie-consent-content {
		flex-direction: column;
		text-align: center;
		padding: 22px 18px;
		border-radius: 24px;
	}

	.cookie-consent-icon {
		width: 64px;
		height: 64px;
		font-size: 26px;
		border-radius: 22px;
	}

	.cookie-consent-text h3 {
		font-size: 18px;
	}

	.cookie-btn-accept {
		width: 100%;
		justify-content: center;
	}
}
