/* ===== MENU LATERAL ===== */
.menu-lateral {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 1000;
}

a {
    text-decoration: none;
    color: black;
}

.menu-lateral.open {
    transform: translateX(0);
}

/* ===== LINHA SUPERIOR ===== */
.menu-top {
    position: fixed;
    top: 16px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: left 0.3s ease;
    z-index: 1100;
    background-color: transparent;
    border: none;
}

.menu-top:hover {
    border: none;
}

.menu-top.open {
    left: 350px;
    background-color: transparent;
    border: none;
}

/* Botão hamburguer */
.menu-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 0;
    background-color: transparent;
}

.menu-toggle:focus {
    /*desativa borda off-line do navegador que fica rpeta ao clicar*/
    outline: none;
}

.menu-toggle:active {
    /*desativa borda off-line do navegador que fica rpeta ao clicar*/
    outline: none;
}

.menu-toggle:hover {
    background-color: rgba(148, 252, 162, 0.5);
    /* verde com 50% de transparência */
    border-radius: 5px;
}


.hamburger-icon {
    width: 22px;
    height: 22px;
    display: block;
    border: none;
    background-color: transparent;


}


/* WhatsApp bloco */
.menu-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.zap-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.menu-whatsapp:hover .zap-icon {
    transform: scale(1.1);
}

.zap-number {
    font-weight: normal;
    color: #000;
    background-color: rgba(255, 255, 255, 0);
    /* transparente */
    padding: 8px 10px;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.9s ease, background-color 0.5s ease, font-weight 0.3s ease;
}

.menu-whatsapp:hover .zap-number {
    opacity: 1;
    /* aparece devagar */
    background-color: rgba(255, 255, 255, 1);
    /* fundo branco sólido */
    font-weight: bold;
}

/* ===== LINKS DO MENU ===== */
.menu-links {
    margin-top: 15vh;
    /* mantém em vh para descer os botões */
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 8px;
    /* menos margem lateral */
}

.botoes-links {
    width: 150px;
    /* largura fixa e igual para todos */
    height: 48px;
    /* altura fixa */
    margin: 0 auto 0 0;
    /* alinhados à esquerda */
    background-color: rgba(255, 255, 255, 0.4);
    /* mais opacidade */
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 48px;
    /* centraliza verticalmente */
    text-align: center;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    /* sombra */
    transition: all 0.3s ease;
}

.botoes-links:hover {
    font-weight: bold;
    background-color: #fff;
    /* fundo sólido */
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: 3px 3px 8px rgba(33, 33, 33, 0.35);
}

.botoes-links:focus,
.menu-toggle:focus,
.menu-whatsapp:focus {
    outline: none;
    /* remove a borda preta padrão */
}


/* Linhas */
.menu-row {
    display: flex;
    justify-content: flex-start;
    /* alinhados à esquerda */
    /*gap: 10px;*/
}

/* Responsivo para celular */