/* Estilo para o botão */
#privacy-policy-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/* Estilo para o pop-up */
.privacy-policy-popup {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

/* Estilo para o conteúdo do pop-up */
.privacy-policy-popup-content {
  position: absolute;
  background-color: #f1f1f1;
  width: 80%;
  max-width: 1000px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #888;
}

/* Estilo para o botão "X" */
.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}