   /* Estilo del popup */
    #imagePopup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8); /* Fondo oscuro semi-transparente */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 100000;
      visibility: hidden; /* Oculto por defecto */
      opacity: 0;
      transition: visibility 0s, opacity 0.3s ease-in-out;
    }

    #imagePopup .content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 60%;
    }

    #imagePopup img {
      max-width: 60%; /* Tamaño predeterminado */
      max-height: 60%;
      border-radius: 10px; /* Bordes redondeados opcionales */
    }

    #imagePopup a {
      margin-top: 20px;
      padding: 10px 20px;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
    }

    #imagePopup .btn-book-now:hover {
      background-color: #e04d2b;
    }

    #imagePopup.visible {
      visibility: visible; /* Mostrar popup */
      opacity: 1;
    }

    #imagePopup .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
    }

    /* Ajustes para móviles */
    @media (max-width: 768px) {
      #imagePopup img {
        max-width: 100%; /* Imagen más grande en ancho */
        max-height: 70%; /* Ajustar altura para dejar espacio al botón */
        border-radius: 0; /* Quitar bordes redondeados */
      }
    }