body {
    margin: 0;
    padding: 0;
    background-color: #e4e4e4;
    font-family: Arial;
}
header {
    display: flex;
    justify-content: center;
    height: 50px;
    background-color: #FFFFFF;
    color: #333333;
    box-shadow: 2px 2px 2px rgba(179, 178, 178, 0.5);
    /* PROPRIEDADES PARA MANTER O HEADER NO TOPO E NA FRENTE */
    position: fixed; /* Fixa o header no topo da viewport */
    top: 0;          /* Alinha ao topo */
    left: 0;         /* Alinha à esquerda */
    width: 100%;     /* Garante que ocupe a largura total da tela */
    z-index: 1000; 
}
.menu_fixo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer {
    font-size: 18px;
    padding-bottom: 50px;
    text-align: center;
}