/* Estilos para el overlay del pop-up */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Estilos para el contenido del pop-up */
/*.popup-contenido {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 5px;
    position: relative;
    text-align: center;
}*/

/* Estilos para el botón de cerrar */
.popup-cerrar {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
}

.popup-contenido
{
    background-color: transparent;
    padding: 0px;
    position: relative;
    text-align: center;
}
.popup-contenido img{
    height:auto;
    width:100%;
    max-width:600px;   
}