.popuppago {
    display: none; /* Ocultar el popup inicialmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Fondo oscuro semitransparente */
    justify-content: center;
    align-items: center;
    z-index: 1102;
}

.popup-content2 {
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transform: scale(0); /* Escala inicial */
    animation: zoomIn 0.5s ease forwards; /* Animación */
}

.popup-content2 img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 16%;
    right: 23%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: transparent;
}

/* Animación de Zoom */
@keyframes zoomIn {
    from {
        transform: scale(0); /* Comienza desde escala 0 (invisible) */
        opacity: 0; /* Comienza transparente */
    }

    to {
        transform: scale(1); /* Termina en escala 1 (tamaño normal) */
        opacity: 1; /* Termina visible */
    }
}