/* Logo branco no header escuro */
.brand-identity img {
    /* Remover fundo branco */
    background: transparent !important;
    padding: 5px !important;
    /* Adicionar leve brilho para destacar */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.brand-identity:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) brightness(1.1);
    transform: scale(1.05);
}

/* Garantir que o texto também seja branco */
.brand-name,
.brand-tagline {
    color: white !important;
}
