<style>
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Paleta de cores */
:root {
    --cinza: #f5f5f5;
    --turquesa: #00bfa6;
    --salmao: #ff7e6b;
    --texto: #333;
    --fundo: #ffffff;
}

/* Corpo */
body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--cinza);
    color: var(--texto);
}

/* Cabeçalho */
header {
    background-color: var(--fundo);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

header .logo h1 {
    font-size: 1.5rem;
    color: var(--turquesa);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--texto);
    font-weight: 500;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: var(--salmao);
}

/* Seções */
section {
    padding: 30px 5%;
}

.sobre h2,
.cardapio h2,
.carrinho h2 {
    margin-bottom: 20px;
    color: var(--turquesa);
}

/* Categorias */
.categoria {
    margin-bottom: 40px;
}

.categoria h3 {
    margin-bottom: 15px;
    color: var(--salmao);
}

/* Itens do Cardápio */
.itens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.item {
    background-color: var(--fundo);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.item:hover {
    transform: scale(1.03);
}

.item img {
    width: 50%;
    border-radius: 10px;
}

.item h4 {
    margin: 10px 0 5px;
}

.item p {
    font-size: 0.9rem;
    color: #666;
}

.item span {
    display: block;
    margin: 10px 0;
    font-weight: bold;
    color: var(--texto);
}

.item button {
    background-color: var(--turquesa);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.item button:hover {
    background-color: var(--salmao);
}

/* Carrinho */
.carrinho {
    background-color: var(--fundo);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#itensCarrinho {
    margin-bottom: 20px;
}

.carrinho-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cinza);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.carrinho-item span {
    flex: 1;
}

.carrinho-item button {
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: background-color 0.3s;
}

.carrinho-item button:hover {
    background-color: darkred;
}

/* Dados do Cliente */
.dados-cliente {
    margin-bottom: 20px;
}

.dados-cliente input,
.dados-cliente select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Total e botões */
.total {
    margin-bottom: 15px;
}

.botoes-carrinho {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.botoes-carrinho button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botoes-carrinho .limpar {
    background-color: red;
    color: white;
}

.botoes-carrinho .limpar:hover {
    background-color: darkred;
}

.botoes-carrinho .whatsapp {
    background-color: var(--turquesa);
    color: white;
}

.botoes-carrinho .whatsapp:hover {
    background-color: var(--salmao);
}

/* Responsivo */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

}


/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--fundo);
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 15px;
    color: var(--turquesa);
}

.botoes-modal {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.botoes-modal button {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: var(--turquesa);
    color: white;
    transition: background-color 0.3s;
}

.botoes-modal button:hover {
    background-color: var(--salmao);
}

</style>