.header{
    height: 100px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;

    /* === ADICIONADO PARA FIXAR O HEADER === */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; /* Garante que o header fique por cima do conteúdo da página */
    box-sizing: border-box;
}

.logo{
    height: 80px;
}

.menu-btn{
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}