/* Beehome Cookie Banner — LGPD */
#beehome-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483600;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: #111827;
  color: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
#beehome-cookie-banner.bh-cb-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#beehome-cookie-banner .bh-cb-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
#beehome-cookie-banner .bh-cb-text {
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.45;
}
#beehome-cookie-banner .bh-cb-text a {
  color: #fde047;
  text-decoration: underline;
}
#beehome-cookie-banner .bh-cb-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
#beehome-cookie-banner .bh-cb-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: filter .15s ease;
}
#beehome-cookie-banner .bh-cb-btn:hover {
  filter: brightness(1.08);
}
#beehome-cookie-banner .bh-cb-btn-primary {
  background: #fde047;
  color: #111827;
}
#beehome-cookie-banner .bh-cb-btn-secondary {
  background: transparent;
  color: #f9fafb;
  border: 1px solid rgba(255,255,255,.25);
}

@media (max-width: 560px) {
  #beehome-cookie-banner .bh-cb-inner { flex-direction: column; align-items: stretch; }
  #beehome-cookie-banner .bh-cb-actions { justify-content: stretch; }
  #beehome-cookie-banner .bh-cb-btn { flex: 1; }
}
