﻿
/* Estilo do banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #3262ac; /* Marrom escuro */;
	color: #fff;
	padding: 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	font-family: 'Poppins', sans-serif;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.cookie-banner p {
	margin: 0;
	font-size: 14px;
	max-width: 60%;
}
.cookie-banner a {
	color: #FFC107; /* Amarelo suave */;
	text-decoration: none;
}
.cookie-banner a:hover {
	text-decoration: underline;
}
.cookie-buttons {
	display: flex;
	gap: 10px;
}
.cookie-buttons button {
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}
.btn-accept {
	background-color: #FFC107; /* Amarelo */;
	color: #4A2C2A; /* Marrom escuro */
}
.btn-reject {
	background-color: #fff;
	color: #4A2C2A; /* Marrom escuro */
}
.btn-accept:hover {
	background-color: #e0a800; /* Amarelo mais escuro */
}
.btn-reject:hover {
	background-color: #e0e0e0;
}
/* Esconde o banner quando aceito ou rejeitado */
.hidden {
	display: none;
}

