/* Banner LGPD — cores Pitiredação (mesma estrutura do fancontrol) */
.lgpd-consent-banner {
  position: fixed;
  left: 15px;
  right: 15px;
  bottom: 15px;
  z-index: 999999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lgpd-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lgpd-consent-banner__content {
  align-items: center;
  background: #ee6772;
  border-radius: 5px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
  color: #ffffff;
  display: flex;
  font-family: var(--font_text, Montserrat, sans-serif);
  font-size: 14px;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 1080px;
  padding: 15px;
}

.lgpd-consent-banner__text {
  margin: 0;
}

.lgpd-consent-banner__link {
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: underline;
}

.lgpd-consent-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.lgpd-consent-banner__btn {
  border: 0;
  border-radius: 5px;
  box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-family: var(--font_text, Montserrat, sans-serif);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  transition: filter 0.3s;
}

.lgpd-consent-banner__btn:hover {
  filter: brightness(110%);
}

.lgpd-consent-banner__btn--primary {
  background: #dc043c;
  color: #ffffff;
}

.lgpd-consent-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@media (max-width: 567px) {
  .lgpd-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .lgpd-consent-banner__content {
    flex-direction: column;
    font-size: 12px;
    text-align: center;
  }

  .lgpd-consent-banner__actions {
    width: 100%;
  }

  .lgpd-consent-banner__btn {
    flex: 1;
  }
}
