.lgpd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lgpd-popup {
  background: #fff;
  max-width: 520px;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  animation: lgpdIn .4s ease;
}

.lgpd-popup h2 {
  color: #1a73e8;
  margin-bottom: 15px;
}

.lgpd-popup p {
  color: #444;
  font-size: 15px;
  margin-bottom: 20px;
}

.lgpd-popup button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.lgpd-popup button:hover {
  background: #0f5bd4;
}

@keyframes lgpdIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
