#simOver {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    inset: 0 0 0 0;
    font-family: 'Inter', sans-serif;
    z-index: 999;
    background: #0000007a;
}

#simOver .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80%;
    height: 60vh;
    padding: 50px 150px;
    border: 3px solid #575757;
    border-radius: 30px;
    background: #fff;
}

#simOver .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* border: 1px solid red; */
}

#simOver h2 {
    font-size: 1.5vw;
    font-weight: 600;
    text-align: center;
    color: #575757;
    /* border: 1px solid blue; */
}

#simOver .cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    color: #575757;
    /* border: 1px solid blue; */
}

#simOver .card {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: #F6F6F6;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 3px 6px #00000029;
    /* border: 1px solid red; */
}

#simOver .card .img {
    width: 100px;
    height: 130px;
    min-width: 100px;
    /* border: 1px solid red; */
}

#simOver .card img {
    width: 100%;
    height: 100%;
}

#simOver .card span {
    margin-left: 20px;
    /* border: 1px solid red; */
}

#simOver .buttons {
    display: flex;
    justify-content: space-between;
    min-height: 120px;
    padding: 60px 30px 0;
    /* border: 1px solid blue; */
}

#simOver .buttons button {
    width: 210px;
    height: 50px;
    background: orangered;
    color: #fff;
    border: 1px solid orangered;
    border-radius: 20px;
    -webkit-box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
}

#simOver .buttons button:disabled {
    opacity: .3;
}



/* CONTATO */
#simOver .contact {
    display: none;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #575757;
    /* border: 1px solid red; */
}

#simOver .contact>div {
    display: flex;
    flex-direction: column;
    width: 800px;
    margin-top: 30px;
    padding: 30px 50px;
    border: 1px solid #777777;
    border-radius: 20px;
}

#simOver .contact>div div:not(:first-child) {
    margin-top: 20px;
}

#simOver .buttons .sendContact {
    display: none;
}


#simOver .finish {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20%;
    border: 2px solid #777;
    border-radius: 30px;
}

#simOver .finish h3 {
    font-size: 30px;
    text-align: center;
    color: #777777;
}

#simOver .finish h4 {
    margin-top: 10%;
    text-align: center;
    color: #777777;
}

#simOver .finish .btn.backSite {
    width: 210px;
    height: 50px;
    margin-top: 10%;
    background: orangered;
    color: #fff;
    border: 1px solid orangered;
    border-radius: 20px;
    -webkit-box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 25px -11px rgba(0, 0, 0, 0.75);
}

#simOver .exit {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 30px;
    cursor: pointer;
    color: orangered;
}



@media (max-width: 1600px) {
    #simOver .container {
        height: 80vh;
        max-height: 100vh;
    }
}

@media (max-width: 768px) {
    #simOver {
        background: #fff;
    }

    #simOver .container {
        width: 100%;
        height: 95vh;
        max-height: 95vh;
        padding: 30px 10px 20px;
        border: 0;
        border-radius: 0;
    }

    #simOver .content {
        width: 100%;
        height: 100%;
        margin-top: 10px;
    }

    #simOver h2 {
        font-size: 5vw;
        font-weight: 600;
        text-align: center;
    }

    #simOver .cards {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    #simOver .card {
        padding: 5px;
    }

    #simOver .buttons {
        flex-direction: column;
        align-items: center;
        justify-content: end !important;
        min-height: 150px;
        padding: 30px 0 0;
    }

    #simOver .buttons button {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    #simOver .buttons .btn1 {
        order: 2;
        margin-top: 10px;
    }

    #simOver .buttons .sendContact {
        margin: auto 0;
    }

    #simOver .contact>div {
        width: 800px;
        margin-top: 30px;
        padding: 30px 10px;
        border: 1px solid #777777;
        border-radius: 20px;
    }

    #simOver .finish {
        padding: 0 10px;
    }

    #simOver .exit {
        top: 20px;
        right: 25px;
        font-size: 25px;
    }
}

@media (max-width: 350px) {
    #simOver .finish {
        padding: 0 10px;
    }

    #simOver .finish h3 {
        font-size: 25px;
    }

    #simOver .finish h4 {
        font-size: 20px;
    }
}