.cookie-banner-lgpd {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #fff;
  color: #333;
  padding: 1rem 1.5rem;
  border-top: 2px solid #25d366;
  display: none;
  animation: fadeIn 0.8s;
}
.cookie-banner-lgpd .cookie-banner-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner-lgpd .cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 600px) {
  .cookie-banner-lgpd .cookie-banner-content {
    flex-direction: row;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}