  #popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.7); /* Azul escuro semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
  }

  .popup-content {
    background-color: #e6f0ff; /* Azul claro */
    color: #003366;
    padding: 30px 25px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    font-size: 18px;
    text-align: center;
  }

  .popup-content h2 {
    margin-top: 0;
    color: #001f4d;
    font-size: 24px;
  }

  .popup-content p {
    margin: 15px 0;
    line-height: 1.6;
  }

  .popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    font-weight: bold;
    color: #001f4d;
    cursor: pointer;
  }

  .popup-close:hover {
    color: #ff3333;
  }

  @media (max-width: 600px) {
    .popup-content {
      font-size: 16px;
      padding: 25px 20px;
    }

    .popup-content h2 {
      font-size: 20px;
    }

    .popup-close {
      font-size: 24px;
      top: 10px;
      right: 14px;
    }
  }
