/* 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: 120px;
}

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

/* Botão de WhatsApp igual para todos */
.btn-whatsapp {
    display: block;
    background-color: #25D366;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    position: fixed;
    bottom: 20px;
    left: 4%;
    right: 4%;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 999;
}

.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);
}
