/* -------------- */
/* --- BOTÕES --- */
/* -------------- */
.cookie-btn {
	cursor: pointer;
	border: none;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500 !important;
}

.cookie-btn-primary {
	background: #ab0000;
	color: white;
}

.cookie-btn-secondary {
	background: #f1f1f1;
	color: #222;
}

.cookie-btn-outline {
	background: transparent;
	border: 1px solid white;
	color: white;
}



/* ------------- */
/* --- TOAST --- */
/* ------------- */
.cookie-toast {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 125, 148, 0.95);
	color: white;	
}

.cookie-toast.show {
	display: block;
}

.cookie-toast-content {
	max-width: 1200px;
	margin: auto;
	padding: 30px 40px 40px 40px;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
}

.cookie-toast-content h2 {
	margin-top: 0;
	margin-bottom: .25rem !important;
	line-height: 1.68 !important;
	font-weight: 600 !important;
	font-size: 1.35rem !important;
	letter-spacing: -.044rem;
}

.cookie-toast-content p {
	margin: 0 !important;
	font-size:14px !important;
	font-weight:400 !important;
}

.cookie-toast-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cookie-toast-buttons .cookie-btn {
	white-space: nowrap;
}

@media (max-width: 992px) {
	.cookie-toast-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.cookie-toast-buttons {
		width: 100%;
		flex-direction: column;
	}

	.cookie-toast-buttons button {
		width: 100%;
		white-space: initial;
	}
}



/* ------------- */
/* --- MODAL --- */
/* ------------- */
.cookie-modal-overlay {
	display: none;
	position: fixed;
	z-index: 10000;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;	
}

.cookie-modal-overlay.show {
	display: flex;
}

.cookie-modal {
	background: white;
	width: 90%;
	max-width: 800px;
	border-radius: 8px;
	overflow: hidden;
}

.cookie-modal-header {
	padding: 16px 20px;
	border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-close {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 0 4px;
    color: #666;
}

.cookie-modal-close:hover {
    color: #000;
}

.cookie-modal-body {
	padding: 16px 20px;
}

.cookie-modal-body p {
	margin: 0 !important;
	margin-bottom: 1rem !important;
	font-size:16px !important;
	font-weight:400 !important;
}

.cookie-modal-footer {
	border-top: 1px solid #ddd;
	text-align: center;
	padding: 20px;
}

.cookie-modal-header h2 {
	margin-top: 0;
	margin-bottom: 0 !important;
	line-height: 1.68 !important;
	font-weight: 600 !important;
	font-size: 28px !important;
	letter-spacing: -.044rem;
}

.cookie-current-consent {
	margin-top: 20px;
	padding: 12px;
	background: #f5f5f5;
	border-radius: 4px;
}