/* Bloqueia o scroll do body enquanto o banner estiver ativo */
body.cookie-consent-active {
  overflow: hidden;
}

/* Overlay de consentimento — removendo o fundo escuro */
#cookie-consent {
  position: fixed;
  inset: 0;                     /* top:0; right:0; bottom:0; left:0 */
  /* background: rgba(0, 0, 0, 0.7); */ /* <- comentado para não escurecer */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: auto;         /* garante que clique “passe” no overlay */
}

/* Caixa branca interna */
#cookie-consent .consent-box {
  background: #fff;
  padding: 30px 20px;
  max-width: 500px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-family: sans-serif;
  pointer-events: auto;
}

/* Texto */
#cookie-consent .consent-box p {
  color: #333;
  margin-bottom: 20px;
}

/* Botão “Aceito” */
#cookie-consent #accept-cookies {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background: #28a745;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
}
