/* ===========================
   LGPD Cookie Consent Bar
   =========================== */
@keyframes lgpd_slideUp {
	from {
		transform: translateX(-50%) translateY(24px);
		opacity: 0;
	}
	to {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}
}

.lgpd_bar {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	max-width: 1120px;
	background: #1a1a2e;
	color: #dde1e7;
	padding: 16px 28px;
	display: flex;
	align-items: center;
	gap: 18px;
	z-index: 9999;
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
	animation: lgpd_slideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
	flex-wrap: wrap;
}

.lgpd_bar__icon {
	font-size: 1.7rem;
	flex-shrink: 0;
	line-height: 1;
}

.lgpd_bar__text {
	flex: 1;
	min-width: 200px;
	font-size: 0.84rem;
	line-height: 1.6;
}

.lgpd_bar__text strong {
	color: var(--white);
	font-weight: 700;
}

.lgpd_bar__text a {
	color: #7eb3ff;
	text-decoration: underline;
	text-underline-position: under;
	transition: color 150ms ease;
}

.lgpd_bar__text a:hover {
	color: #aecfff;
}

.lgpd_bar__actions {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
	align-items: center;
}

.lgpd_btn {
	padding: 9px 22px;
	border-radius: 7px;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	letter-spacing: 0.3px;
	transition: all 180ms ease;
	border: 2px solid transparent;
	line-height: 1;
}

.lgpd_btn--accept {
	background: var(--greenLight);
	color: var(--white);
	border-color: var(--greenLight);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 10px rgba(10, 191, 48, 0.35);
}

.lgpd_btn--accept:hover {
	background: var(--greenLight2);
	border-color: var(--greenLight2);
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(10, 191, 48, 0.45);
}

.lgpd_btn--decline {
	background: transparent;
	color: #9aa3b0;
	border-color: #3e4555;
}

.lgpd_btn--decline:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #d0d6e0;
	border-color: #66738a;
}

.lgpd_btn--manage {
	background: transparent;
	color: #b0bac8;
	border-color: #4a5570;
}

.lgpd_btn--manage:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #dde1e7;
	border-color: #7a88a0;
}

@media (max-width: 576px) {
	.lgpd_bar {
		padding: 14px 16px;
		gap: 12px;
		bottom: 16px;
		width: calc(100% - 24px);
		border-radius: 10px;
	}
	.lgpd_bar__actions {
		width: 100%;
		justify-content: flex-end;
	}
}

/* ===========================
   LGPD Floating Button
   =========================== */
#lgpdFloatBtn {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #1a1a2e;
	border: 2px solid #3e4555;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9998;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
	padding: 0;
	line-height: 1;
}

#lgpdFloatBtn:hover {
	transform: scale(1.1);
	border-color: #7eb3ff;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}

/* ===========================
   LGPD Preferences Modal
   =========================== */
@keyframes lgpd_modalIn {
	from {
		transform: translateY(30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.lgpd_overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.lgpd_modal {
	background: #fff;
	border-radius: 16px;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	animation: lgpd_modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
	overflow: hidden;
}

.lgpd_modal__header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 20px 14px;
	border-bottom: 1px solid #eee;
	flex-shrink: 0;
}

.lgpd_modal__icon {
	font-size: 1.4rem;
	line-height: 1;
	flex-shrink: 0;
}

.lgpd_modal__title {
	flex: 1;
	font-size: 1rem;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
}

.lgpd_modal__close {
	background: none;
	border: none;
	font-size: 1.3rem;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 4px 6px;
	border-radius: 6px;
	transition:
		background 150ms ease,
		color 150ms ease;
	flex-shrink: 0;
}

.lgpd_modal__close:hover {
	background: #f0f0f0;
	color: #333;
}

.lgpd_modal__body {
	padding: 18px 20px;
	overflow-y: auto;
	flex: 1;
}

.lgpd_modal__intro {
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 18px;
	line-height: 1.6;
}

.lgpd_modal__intro a {
	color: var(--blueLight);
	text-decoration: underline;
}

/* Category rows */
.lgpd_cat {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
}

.lgpd_cat:last-child {
	border-bottom: none;
}

.lgpd_cat__info {
	flex: 1;
}

.lgpd_cat__info strong {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	color: #222;
	margin-bottom: 4px;
}

.lgpd_cat__info p {
	font-size: 0.8rem;
	color: #666;
	margin: 0;
	line-height: 1.55;
}

.lgpd_cat__ctrl--always {
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--green2);
	background: #edfaf2;
	border: 1px solid #b7e8cc;
	border-radius: 20px;
	padding: 4px 10px;
	margin-top: 2px;
	white-space: nowrap;
}

/* Toggle switch */
.lgpd_toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	cursor: pointer;
	user-select: none;
	margin-top: 2px;
}

.lgpd_toggle input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.lgpd_toggle__track {
	position: relative;
	width: 44px;
	height: 24px;
	background: #cdd2dc;
	border-radius: 12px;
	transition: background 200ms ease;
}

.lgpd_toggle input:checked ~ .lgpd_toggle__track {
	background: var(--greenLight);
}

.lgpd_toggle__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	transition: transform 200ms ease;
}

.lgpd_toggle input:checked ~ .lgpd_toggle__track .lgpd_toggle__thumb {
	transform: translateX(20px);
}

.lgpd_toggle__label {
	font-size: 0.72rem;
	font-weight: 600;
	color: #888;
}

.lgpd_toggle input:checked ~ .lgpd_toggle__label,
.lgpd_toggle input:checked + .lgpd_toggle__track + .lgpd_toggle__label {
	color: var(--green2);
}

/* Modal footer */
.lgpd_modal__footer {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	padding: 14px 20px;
	border-top: 1px solid #eee;
	flex-shrink: 0;
	background: #fafafa;
}

/* Override btn colors inside light modal */
.lgpd_modal__footer .lgpd_btn--decline {
	color: #555;
	border-color: #ccc;
}

.lgpd_modal__footer .lgpd_btn--decline:hover {
	background: #f0f0f0;
	color: #222;
	border-color: #aaa;
}

@media (max-width: 480px) {
	.lgpd_modal__footer {
		flex-direction: column-reverse;
	}
	.lgpd_modal__footer .lgpd_btn {
		width: 100%;
		text-align: center;
	}
}

/*
** Notice Modal
*/
#noticeFadeModal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 20000;
}
.notice_container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 400px;
	pointer-events: all;
	z-index: 30000;
	text-align: center;
}
.notice_container .imgJustice {
	margin-bottom: 20px;
}
.notice_container .notice_content {
	min-height: 50px;
	padding: 15px 20px;
	background-color: red;
	border: 1px solid red;
	border-radius: 10px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.4);
	overflow: hidden;
	z-index: 10;
}
.notice_container p {
	font-size: 0.9rem;
	font-weight: 500;
	color: #fff;
	margin: 10px 0;
	z-index: 20;
}
.notice_container .notice_container__in_one,
.notice_container .notice_container__in_two {
	width: 100%;
	z-index: 20;
}
.notice_container .notice_container__in_one {
	text-align: left;
}
.notice_container .notice_container__in_two {
	text-align: right;
}
.notice_container .btn_notice {
	outline: none;
	background-color: #bd0505;
	border: 1px solid #bd0505;
	font-size: 0.8rem;
	color: var(--white);
	padding: 5px 25px;
	pointer-events: all;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.3px;
	cursor: pointer;
	border-radius: 7px;
	transition:
		background-color 250ms ease-in-out,
		transform 250ms ease-in-out;
	margin-top: 10px;
	margin-bottom: 5px;
}
.notice_container .btn_notice:hover {
	background-color: #a80606;
	transform: scale(0.95);
}

@media screen and (min-width: 768px) {
}
@media screen and (min-width: 900px) {
}
