/* Tattoo/Off — LGPD consent UI */
#lgpd-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: #0a0a0a;
  color: #f5f5f5;
  border-top: 1px solid #1f1f1f;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .35);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
.lgpd-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .lgpd-banner__inner { flex-direction: row; align-items: center; gap: 24px; }
  .lgpd-banner__text { flex: 1; }
}
.lgpd-banner__text a { color: #ffffff; text-decoration: underline; }
.lgpd-banner__text a:hover { color: #d4d4d4; }
.lgpd-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.lgpd-btn {
  appearance: none;
  border: 1px solid #2a2a2a;
  background: transparent;
  color: #f5f5f5;
  padding: 10px 16px;
  font: inherit;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.lgpd-btn:hover { background: #1a1a1a; }
.lgpd-btn:focus-visible { outline: 2px solid #ffffff; outline-offset: 2px; }
.lgpd-btn--ghost { background: transparent; }
.lgpd-btn--solid { background: #ffffff; color: #0a0a0a; border-color: #ffffff; }
.lgpd-btn--solid:hover { background: #e5e5e5; border-color: #e5e5e5; }

#lgpd-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.lgpd-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .6);
}
.lgpd-modal__panel {
  position: relative;
  background: #ffffff;
  color: #0a0a0a;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.lgpd-modal__panel h2 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
}
.lgpd-modal__lead { margin: 0 0 16px; font-size: 14px; color: #404040; }
.lgpd-cat {
  border-top: 1px solid #e5e5e5;
  padding: 14px 0;
}
.lgpd-cat:first-of-type { border-top: 0; }
.lgpd-cat__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.lgpd-cat__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  cursor: pointer;
}
.lgpd-cat__label strong { font-size: 15px; }
.lgpd-cat__label span { color: #525252; font-weight: 400; }
.lgpd-cat__locked {
  font-size: 12px; color: #737373;
  background: #f5f5f5; padding: 4px 10px; border-radius: 999px;
  align-self: center; white-space: nowrap;
}
#lgpd-modal input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 4px; cursor: pointer; accent-color: #0a0a0a;
}
.lgpd-modal__actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: flex-end;
  margin-top: 20px;
}
.lgpd-modal__actions .lgpd-btn {
  color: #0a0a0a; border-color: #d4d4d4; background: #ffffff;
}
.lgpd-modal__actions .lgpd-btn:hover { background: #f5f5f5; }
.lgpd-modal__actions .lgpd-btn--solid {
  background: #0a0a0a; color: #ffffff; border-color: #0a0a0a;
}
.lgpd-modal__actions .lgpd-btn--solid:hover { background: #1a1a1a; border-color: #1a1a1a; }
.lgpd-modal__legal {
  margin-top: 16px; font-size: 12px; color: #737373; line-height: 1.5;
}
.lgpd-modal__legal a { color: #0a0a0a; text-decoration: underline; }
