/* ================= APP PAGE ================= */

.app-page{

    padding:70px 0;

    background:linear-gradient(
        180deg,
        #ffffff,
        #f0fdf4
    );

}


.app-box{

    max-width:850px;

    margin:auto;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:25px;

    padding:40px;

    display:flex;

    align-items:center;

    gap:35px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.app-box img{

    width:150px;

    height:150px;

    border-radius:30px;

    object-fit:cover;

}


.app-info h1{

    font-size:38px;

    color:#111827;

    margin-bottom:15px;

}


#app-version{

    display:inline-block;

    background:#dcfce7;

    color:#16a34a;

    padding:7px 15px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}


.app-info p{

    color:#6b7280;

    font-size:16px;

    line-height:1.7;

    margin-bottom:30px;

}



/* BOTÃO DOWNLOAD */

.download-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#22c55e;

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    font-size:16px;

    padding:15px 40px;

    border-radius:14px;

    transition:.25s;

    box-shadow:0 10px 25px rgba(34,197,94,.35);

}


.download-btn:hover{

    background:#16a34a;

    transform:translateY(-3px);

}



/* MOBILE */

@media(max-width:768px){


    .app-box{

        flex-direction:column;

        text-align:center;

        padding:30px 20px;

    }


    .app-box img{

        width:120px;

        height:120px;

    }


    .app-info h1{

        font-size:30px;

    }


    .download-btn{

        width:100%;

    }

}