.lgpd-consent {
  position: relative;
  z-index: 999999;
  font-family: 'Roboto', sans-serif !important;
}

/* Banner */
.lgpd-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  max-width: 1080px;
  margin: 0 auto;
}

.lgpd-banner__text h3 {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 18px;
}

.lgpd-banner__text p {
  margin: 0;
  line-height: 1.45;
  font-size: 14px
}

.lgpd-banner__text a,
.lgpd-link {
  color: #ef7d00;
  font-weight: 700;
  text-decoration: none;
}

.lgpd-banner__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .lgpd-banner {
    grid-template-columns: 1fr;
  }

  .lgpd-banner__actions {
    justify-content: flex-start;
  }
}

/* Modal */
.lgpd-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999999;
}

.lgpd-modal__dialog {
  width: min(720px, 96vw);
  background: #fff;
  color: #111;
  border-radius: 12px;
  margin: 6vh auto;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

.lgpd-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lgpd-cat {
  border-top: 1px solid #eee;
  padding: 14px 0;
}

.lgpd-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lgpd-cat__note {
  font-size: 12px;
  color: #666;
}

/* Switch */
.lgpd-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}

.lgpd-switch input {
  display: none;
}

.lgpd-switch span {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: .2s;
}

.lgpd-switch span:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.lgpd-switch input:checked+span {
  background: #ef7d00;
}

.lgpd-switch input:checked+span:after {
  transform: translateX(20px);
}

/* Buttons */
.lgpd-btn {
  appearance: none;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.lgpd-btn--primary {
  background: #ef7d00;
  border-color: #ef7d00;
  color: #1c1c1c;
}

.lgpd-btn--outline {
  border-color: #ef7d00;
  color: #ef7d00;
  background: #fff;
}

.lgpd-btn--ghost {
  background: #fff;
  color: #111;
  border-color: #ddd;
}

.lgpd-modal__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}