/* ESTILO DO MODAL */

.modal-container{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000088;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.modal-app{
    width: 39%;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    animation: animate-modal 0.5s ease-in-out;
    position: relative;
}

.modal-app img{
    width: 100%;
    border-radius: 10px;
}

.btn-baixar{
    position: absolute;
    bottom: 15%;
    left: 65px;
    width: 120px;
}

.btn-baixar img{
    width: 100%;
}

.fechar{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #ff0000;
    color: #fff;
    font-weight: 700;
    font-size: 14pt;
    cursor: pointer;
}


@keyframes animate-modal {
    from{
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.modal-container.mostrar{
    display: flex;
}

.mostrar .modal-submenu{
    animation: animate-modal .3s;
}

@media screen and (max-width: 900px) {
    .modal-app{
        width: 80%;
    }
}   