.btn-container{
    display: flex;
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
}
.btn-container button{
    width: calc(50% - 4px);
    height: 100px;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
}
.btn-container button:active {
    transform: scale(0.9);
    box-shadow: inset 1px 1px 100px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.btn-container .btn{
    flex: 1;
}

.btn{
    background-color: var(--cor-a1);
    color: var(--cor-b1);
    font-weight: bold;
    font-family: var(--f-family-1);
    font-size: var(--f-size-m);
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:active {
    transform: scale(0.9);
    box-shadow: inset 1px 1px 100px rgba(0, 0, 0, 0.2);
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

.btn img{
    width: 45px;
    height: 45px;
}

.btn-100{
    width: 100%;
    height: 50px;
    border-radius: 14px;
    padding: 14px 18px;
}

.btn-50{
    width: 50%;
    height: 50px;
    border-radius: 14px;
    padding: 14px 18px;
}

.btn-fit{
    width: fit-content;
    height: 50px;
    border-radius: 14px;
    padding: 14px 18px;
}


.desativado{
    background-color: var(--cor-c3);
    color: var(--cor-b1);
}

.btn-branco{
    background-color: var(--cor-b1);
    color: var(--cor-p1);
    font-weight: bold;
    font-family: var(--f-family-1);
    font-size: var(--f-size-m);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-concluido{
    background-color: var(--cor-a1);
    color: var(--cor-b1);
}