@charset "utf-8";

.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    z-index:9999;
}

.popup-box{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    box-sizing:border-box;
}

.popup-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:100%;
    max-height:100%;
}

.popup-contenido{
    display:block;
    width:min(600px, 90vw);
    height:auto;
    max-width:100%;
    max-height:85vh;
    object-fit:contain;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.cerrar-popup{
    position:absolute;
    top:10px;
    right:10px;

    width:42px;
    height:42px;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,.75);
    color:#fff;

    font-size:26px;
    font-weight:bold;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:10000;
}

@media (max-width:768px){

    .popup-contenido{
        width:95vw;
        max-height:80vh;
    }

    .cerrar-popup{
        width:48px;
        height:48px;
        font-size:30px;
    }

}