.navbar {
  font-family: "Creepster", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2em;
}

.navbar-external-icon {
    height: 4rem; /* Altura fixa aumentada */
    width: auto; /* Largura proporcional */
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-left: 0.5rem; /* Espaçamento opcional */
}

/* Ajuste para o container do ícone */
.navbar-item {
    display: flex;
    align-items: center;
    height: 100%; /* Herda a altura total da navbar */
    padding: 0 1rem; /* Aumenta o padding horizontal se necessário */
}

/* Estilização do container do hamburger menu */
.navbar-burger-container {
    display: flex !important;
    align-items: center;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.navbar-burger-text {
    color: #363636 !important;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 0.5rem;
    letter-spacing: 1px;
    font-family: "Roboto Slab", serif;
    text-transform: uppercase;
    line-height: 1;
}

/* Mostrar apenas em telas menores que desktop */
@media screen and (min-width: 1024px) {
    .navbar-burger-container {
        display: none !important;
    }
}

/* Para telas muito pequenas, manter o texto */
@media screen and (max-width: 768px) {
    .navbar-burger-container {
        display: flex !important;
    }
    
    .navbar-burger-text {
        font-size: 0.75rem;
        margin-right: 0.3rem;
    }
}

/* Ajustes específicos para o Bulma navbar-burger */
.navbar-brand .navbar-burger {
    display: block;
    height: 3.25rem;
    position: relative;
    width: 3.25rem;
    margin-left: 0;
}

/* Forçar visibilidade do container em mobile */
@media screen and (max-width: 1023px) {
    .navbar-brand .navbar-burger-container {
        display: flex !important;
        align-items: center;
    }
    
    .navbar-brand .navbar-burger {
        display: block !important;
    }
}

/* Estilo para item de menu ativo */
.navbar-item.is-active {
    background-color: #f5f5f5 !important;
    color: #363636 !important;
    font-weight: bold;
    border-bottom: 3px solid #666666;
    position: relative;
}

/* Hover effect para itens não ativos */
.navbar-item:not(.is-active):hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

/* Garantir que o item ativo se destaque em mobile também */
@media screen and (max-width: 1023px) {
    .navbar-item.is-active {
        background-color: #cccccc !important;
        color: #363636 !important;
        border-left: 4px solid #363636;
        border-bottom: none;
    }
}