@font-face {
    font-family: "Cinzel";
    src: url('../fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Botão hamburguer */
#hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1002;
    color: #1C1E59;
    transition: color 0.3s ease;
}

/* Hambúrguer branco quando o menu está ativo */
#hamburger.active {
    color: #ffffff;
}

/* Menu lateral cobrindo toda a tela */
#menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 30, 89, 0.95);
    transition: left 0.4s ease;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* bloqueia cliques quando fechado */
}

/* Menu ativo: aparece e aceita cliques */
#menu.active {
    left: 0;
    pointer-events: auto;
}

/* Estrutura da lista do menu */
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Itens da lista */
#menu ul li {
    margin: 20px 0;
}

/* Links do menu – cobrimos todos os estados */
#menu ul li a:link,
#menu ul li a:visited {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: "Cinzel";
    font-size: 5vh;
    color: #ffffff;
    transition: color 0.3s ease, opacity 0.3s ease;
}

#menu ul li a:hover,
#menu ul li a:focus {
    color: #B1B3F0;
    opacity: 0.9;
}

#menu ul li a:active {
    color: #B1B3F0;
}

#brasao {
    margin-top: 100px;
    display: flex;
    margin-bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;,
    height: auto;
}

#brasao p{
    margin-top: 0;
    font-size: 4vh;
    font-family: "Cinzel";
    font-weight: 500;
}