body.modal-aberto {
  overflow: hidden;
}

.modal-execucao {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;

  z-index: 9999;
}

.modal-execucao.ativo {
  opacity: 1;
  visibility: visible;
}


.modal-box {
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;

  border-radius: var(--radius);
  padding: 30px;

  overflow-y: auto;
  position: relative;

  transform: scale(0.95);
  opacity: 0;
  transition: 0.35s ease;
}

.modal-execucao.ativo .modal-box {
  transform: scale(1);
  opacity: 1;
}

.modal-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: transform 0.5s;
}

.modal-box img:hover {
  transform: scale(1.05);
}

.modal-box p {
  text-align: justify;
  margin-bottom: 20px;
}

.fechar-modal {
  position: absolute;
  top: 15px;
  right: 30px;
  width: 30px;
  height: 30px;

  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.fechar-modal:hover{
    background:none;
}

@media (max-width: 768px) {

  .modal-box {
    width: 95%;
    padding: 20px;
  }

}


