body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    text-align: center; /* Centraliza todo o texto */
}

/* Centraliza também listas, tabelas e conteúdos */
h1, h2, h3, p, li, table, footer, header nav a {
    text-align: center;
}

header {
    background: #016259;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Centraliza logo + título no cabeçalho */
header .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header .logo img {
    width: 60px;
    margin-right: 15px;
}

header nav {
    display: flex;
    gap: 10px;
}

header nav a {
    text-decoration: none;
    font-weight: bold;
    color: #016259;
}

header nav a:hover {
    text-decoration: underline;
}

.banner {
    background: url('imagens/banner.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 120px 20px;
    font-size: 2rem;
    background-attachment: fixed;
}

.secao {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.lista-comidas {
    display: flex;       /* coloca tudo em uma única linha */
    gap: 20px;           /* espaço entre cada item */
    list-style: none;    /* remove bolinhas */
    padding: 0;
}

.lista-comidas li {
    display: flex;         /* texto + imagem lado a lado */
    flex-direction: column; /* Se quiser texto em cima e imagem abaixo, remova esta linha */
    align-items: center;  
    font-size: 18px;
    font-weight: bold;
}

table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #016259;
    padding: 10px;
    text-align: center;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.galeria img {
    width: 100%;
    border-radius: 8px;
}

footer {
    background: #016259;
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.disk-entrega {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #016259;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s;
}

.disk-entrega:hover {
    background-color: #028f7f;
}
