/* =========================================
NOVO MODAL LIMPO
========================================= */

#novoModal{

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,.75);

    display: none;

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

    padding: 20px;

    z-index: 999999999;
}

#novoModal.active{
    display: flex;
}

.novoModal-box{

    position: relative;

    width: 100%;
    max-width: 520px;

    background: #fff;

    border-radius: 24px;

    padding: 40px 25px;

    animation: modalFade .35s ease;
}

@keyframes modalFade{

    from{
        opacity: 0;
        transform: translateY(40px) scale(.95);
    }

    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#fecharNovoModal{

    position: absolute;

    top: 15px;
    right: 15px;

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 50%;

    background: #f1f1f1;

    cursor: pointer;

    font-size: 18px;
}

.novoModal-box h2{

    margin-bottom: 25px;

    font-size: 32px;
}

#novoForm{

    display: flex;
    flex-direction: column;
    gap: 15px;
}

#novoForm input,
#novoForm textarea{

    width: 100%;

    border: 1px solid #ddd;

    border-radius: 14px;

    padding: 16px;

    font-size: 15px;

    outline: none;
}

#novoForm textarea{
    height: 120px;
    resize: none;
}

#novoForm button{

    height: 55px;

    border: none;

    border-radius: 14px;

    background: #c1121f;

    color: #fff;

    font-size: 15px;

    font-weight: bold;

    cursor: pointer;
}