/**
 * Public CSS for ZG LGPD Cookie Consent
 * Colors based on zavagnagralha.com.br
 */

.zg-lgpd-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #1b1b1b;
	color: #ffffff;
	z-index: 999999;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	border-top: 3px solid #FFD700;
	display: none; /* Hidden by default, shown via JS if no cookie */
}

.zg-lgpd-banner.zg-lgpd-show {
	display: block;
	animation: zgLgpdSlideUp 0.5s ease-out;
}

.zg-lgpd-banner-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.zg-lgpd-banner-content {
	flex: 1 1 60%;
	margin-right: 20px;
}

.zg-lgpd-banner-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #e0e0e0;
}

.zg-lgpd-privacy-link {
	color: #FFD700;
	text-decoration: underline;
	font-weight: bold;
	margin-left: 5px;
	transition: color 0.3s ease;
}

.zg-lgpd-privacy-link:hover {
	color: #ffffff;
}

.zg-lgpd-banner-actions {
	flex: 1 1 auto;
	display: flex;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 10px;
}

.zg-lgpd-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.zg-lgpd-btn-accept {
	background-color: #FFD700;
	color: #1b1b1b;
}

.zg-lgpd-btn-accept:hover {
	background-color: #e6c200;
	transform: translateY(-2px);
}

.zg-lgpd-btn-reject {
	background-color: transparent;
	color: #FFD700;
	border: 1px solid #FFD700;
}

.zg-lgpd-btn-reject:hover {
	background-color: rgba(255, 215, 0, 0.1);
}

@keyframes zgLgpdSlideUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.zg-lgpd-banner-container {
		flex-direction: column;
		text-align: center;
	}
	
	.zg-lgpd-banner-content {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	.zg-lgpd-banner-actions {
		width: 100%;
		justify-content: center;
		flex-direction: column;
	}
	
	.zg-lgpd-btn {
		width: 100%;
	}
}
