/* Painel de consentimento de cookies (assets/js/consentimento.js). Fixo no rodape,
   escuro e discreto como o resto das paginas; nao cobre o conteudo essencial. */
.consentimento {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9995;
  max-width: 640px; margin: 0 auto; padding: 16px 18px;
  background: rgba(10, 9, 7, .96); color: #F4EFE6;
  border: 1px solid rgba(255, 227, 163, .28); border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
  font: 500 14px/1.5 "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
.consentimento p { margin: 0 0 12px; }
.consentimento a { color: #FFE3A3; }
.consentimento-acoes { display: flex; flex-wrap: wrap; gap: 10px; }
.consentimento button {
  cursor: pointer; padding: 10px 18px; border-radius: 8px; border: 1px solid #E3B25A;
  background: #E3B25A; color: #0A0907; font: inherit; font-weight: 700;
}
.consentimento button.consentimento-recusar { background: transparent; color: #FFE3A3; }
.consentimento button:hover { filter: brightness(1.08); }
@media (min-width: 700px) { .consentimento { left: auto; right: 24px; bottom: 24px; } }
