.home {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.main-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    
}
.btn {
    background-color:var(--cor-card);
    color:var(--cor-texto);
    border: none;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 300px;
}

.btn:hover {
    background-color: #e55b00;
}

@media (min-width: 600px) {
    .btn {
        font-size: 1.5em;
        padding: 20px 40px;
    }
}
footer{
    position: fixed;
    left:0;
    right:0;
    height: 35px;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    margin:0;
    padding:0;
    color:#fff;
    text-align:center;
    
}
.logojsa{
    width:80px;
    height:auto;
    margin:0 auto;
    
}
.modal_novo_pedido{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center; 
}
.modal_novo_pedido .option {
    display: flex;
    align-items: center;
    justify-content:center;
    width:auto;
    min-width:150px;
    color:black;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #f5f5f5;
}

.icon {
    height: 24px;
    margin-right: 10px;
}
.s-ion-icon{
    height: 35px;
    padding: 5px;
}