/* Fondo semitransparente del pop-up */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  /* Desenfoque en el contenido de fondo */
  .blurred-content {
    filter: blur(1px);
    transition: filter 0.3s ease;
  }

  /* Diseño del pop-up */
  .popup {
    background-color: #ffffff;
    padding: 30px;
    max-width: 80%;
    width: 450px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    text-align: center;
    z-index: 1000;
  }

  /* Botón de cierre "X" */
  .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    font-weight: bold;
  }

  /* Estilo de los textos */
  .popup h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
  }

  .popup p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
  }

  /* Responsividad */
  @media (max-width: 600px) {
    .popup {
      width: 80%;
      padding: 20px;
    }

    .popup h1 {
      font-size: 1.6em;
    }

    .popup p {
      font-size: 1em;
    }
  }