.lgpd-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 1001;
  width: min(80vw, 1200px);
  min-height: auto;
  padding: 1.1rem 1.35rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.lgpd-banner.is-hidden {
  display: none;
}

.lgpd-banner__content {
  flex: 1 1 auto;
  min-width: 0;
}

.lgpd-banner__content strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.lgpd-banner__content p {
  margin: 0;
  color: var(--muted-fg);
  font-size: 0.92rem;
  line-height: 1.65;
}

.lgpd-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  margin-left: auto;
}

.lgpd-banner__link {
  text-align: center;
  white-space: nowrap;
}

.lgpd-banner__accept {
  min-width: 110px;
  margin-left: 0.15rem;
}

@media (max-width: 767px) {
  .lgpd-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    transform: none;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .lgpd-banner__actions {
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .lgpd-banner__actions .btn,
  .lgpd-banner__actions .dash-btn {
    width: 100%;
  }
}
