body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.fondo-oscuro {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 77%); /* Fondo semi-transparente oscuro */
    z-index: 900; /* Asegura que esté por debajo del pop-up y por encima del contenido principal */
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
    z-index: 1000;
}

.popup img {
  max-width: 800px!important;
  height: 590px!important;
  width: auto;
  
}

#cerrarPopup {
    background: #014d55;
    color: #fff;
    border: none;
    padding: 5px 15px;
    position: absolute;
    top: 0vw;
    right: 0!important;
    cursor: pointer;
}


@media screen and (max-width: 768px) {
    #miPopup img{
        max-width: 300px !important;
        height: auto !important;
        width: auto !important;
    }
}