/* RESET E ESTRUTURA GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    padding-bottom: 100px;
}

.container {
    width: 92%;
    max-width: 600px;
    margin: 0 auto;
}

/* Botão WhatsApp - No final do conteúdo, centralizado e sem sobreposição */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    
    /* Tamanho e Margem */
    padding: 15px 35px;
    border-radius: 30px;
    margin: 40px auto; /* O 'auto' nas laterais centraliza, e o 40px dá espaço do último lanche */
    width: fit-content; /* Faz o botão ter a largura apenas do texto interno */
    
    /* Estética */
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.2s, transform 0.2s;
}

/* Efeito sutil ao clicar */
.btn-whatsapp:active {
    transform: scale(0.98);
    background-color: #1eb954;
}

/* Ícone discreto */
.btn-whatsapp::before {
    content: '📱';
    margin-right: 10px;
}


.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.logo-img {
    width: 120px; /* Tamanho fixo para o logo */
    height: 120px;
    object-fit: contain; /* Garante que a imagem não distorça */
    margin-bottom: 10px;
}

.restaurant-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-align: center;
}

/* Estrutura do Accordion */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    user-select: none;
    margin-top: 15px;
}

.category-content {
    display: none; /* Escondido por padrão */
    padding: 10px 5px;
}

/* Quando a seção estiver ativa, mostra o conteúdo */
.menu-section.active .category-content {
    display: block;
}

/* Rotação da setinha */
.icon-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.menu-section.active .icon-arrow {
    transform: rotate(180deg);
}
