.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal.hidden {
  display: none;
}
.modal-body{
    background: none;
    height: 500px;
}
.modal-body>h2,
.modal-body>p{
  background: none;
}
.modal-body>p>strong{
  background: none;
}

.modal-content {
    padding: 20px;
    /* max-width: 70%; */
    width: 96%;
    border-radius: 8px;
    position: relative;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  background: white;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.janelaIframe{
  width: 100%;
  height: 100%;
  border-radius: 8px 12px 8px 8px;
  background: none;
}
@media screen and (min-width: 800px){
    .modal-content {
      /* background: #f5f5f526; */
      padding: 20px;
      max-width: 70%;
      width: 90%;
      border-radius: 8px;
      position: relative;
    }
}