    /* CSS da nova modal com prefixo 'custom-' */
    .custom-modal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      position: fixed;
      z-index: 111111;
      background-color: var(--modal-back-color);
    }

    .custom-modal-content {
      margin: 0;
      padding: 0;
      width: 99.99%;
      background-color: var(--modal-content-back-color);
    }

    .custom-fechar {
      float: right;
      font-size: var(--font-size);
      font-weight: bold;
      padding: 5px;
    }

    .custom-fechar:hover,
    .custom-fechar:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }
