#wc-termos-popup {
  display: none;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}
#wc-termos-popup .content {
  background: #fff;
  max-width: 600px;
  max-height: 90%;          /* Limite de altura do popup */
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  overflow-y: auto;         /* Adiciona barra de rolagem vertical */
}
#wc-termos-popup .close {
  position: absolute;
  top: 10px; right: 10px;
  cursor: pointer;
  font-weight: bold;
  font-size:20px;
}
